
Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`, now with "east const" enforcement. Use `clang-format` version 18. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Issue: #26123
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <iosfwd>
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmCTestGlobalVC.h"
|
|
|
|
class cmCTest;
|
|
class cmMakefile;
|
|
|
|
/** \class cmCTestP4
|
|
* \brief Interaction with the Perforce command-line tool
|
|
*
|
|
*/
|
|
class cmCTestP4 : public cmCTestGlobalVC
|
|
{
|
|
public:
|
|
/** Construct with a CTest instance and update log stream. */
|
|
cmCTestP4(cmCTest* ctest, cmMakefile* mf, std::ostream& log);
|
|
|
|
~cmCTestP4() override;
|
|
|
|
private:
|
|
std::vector<std::string> ChangeLists;
|
|
|
|
struct User
|
|
{
|
|
std::string UserName;
|
|
std::string Name;
|
|
std::string EMail;
|
|
std::string AccessTime;
|
|
};
|
|
std::map<std::string, User> Users;
|
|
std::vector<std::string> P4Options;
|
|
|
|
User GetUserData(std::string const& username);
|
|
void SetP4Options(std::vector<std::string>& options);
|
|
|
|
std::string GetWorkingRevision();
|
|
bool NoteOldRevision() override;
|
|
bool NoteNewRevision() override;
|
|
bool UpdateImpl() override;
|
|
bool UpdateCustom(std::string const& custom);
|
|
|
|
bool LoadRevisions() override;
|
|
bool LoadModifications() override;
|
|
|
|
class ChangesParser;
|
|
class DescribeParser;
|
|
class DiffParser;
|
|
// Parsing helper classes.
|
|
class IdentifyParser;
|
|
class UserParser;
|
|
|
|
friend class IdentifyParser;
|
|
friend class ChangesParser;
|
|
friend class UserParser;
|
|
friend class DescribeParser;
|
|
friend class DiffParser;
|
|
};
|