cmake/Source/CTest/cmCTestP4.h

66 lines
1.5 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2014-08-03 19:52:23 +02:00
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <iosfwd>
2014-08-03 19:52:23 +02:00
#include <map>
2016-10-30 18:24:19 +01:00
#include <string>
2016-07-09 11:21:54 +02:00
#include <vector>
2014-08-03 19:52:23 +02:00
2020-02-01 23:06:01 +01:00
#include "cmCTestGlobalVC.h"
2016-10-30 18:24:19 +01:00
class cmCTest;
2014-08-03 19:52:23 +02:00
/** \class cmCTestP4
* \brief Interaction with the Perforce command-line tool
*
*/
2016-07-09 11:21:54 +02:00
class cmCTestP4 : public cmCTestGlobalVC
2014-08-03 19:52:23 +02:00
{
public:
/** Construct with a CTest instance and update log stream. */
cmCTestP4(cmCTest* ctest, std::ostream& log);
2018-01-26 17:06:56 +01:00
~cmCTestP4() override;
2014-08-03 19:52:23 +02:00
private:
std::vector<std::string> ChangeLists;
struct User
2016-07-09 11:21:54 +02:00
{
2014-08-03 19:52:23 +02:00
std::string UserName;
std::string Name;
std::string EMail;
std::string AccessTime;
2016-07-09 11:21:54 +02:00
};
2014-08-03 19:52:23 +02:00
std::map<std::string, User> Users;
std::vector<std::string> P4Options;
User GetUserData(const std::string& username);
2024-04-14 22:45:38 +02:00
void SetP4Options(std::vector<std::string>& options);
2014-08-03 19:52:23 +02:00
std::string GetWorkingRevision();
2018-01-26 17:06:56 +01:00
bool NoteOldRevision() override;
bool NoteNewRevision() override;
bool UpdateImpl() override;
2014-08-03 19:52:23 +02:00
bool UpdateCustom(const std::string& custom);
2018-01-26 17:06:56 +01:00
bool LoadRevisions() override;
bool LoadModifications() override;
2014-08-03 19:52:23 +02:00
class ChangesParser;
class DescribeParser;
class DiffParser;
2016-10-30 18:24:19 +01:00
// Parsing helper classes.
class IdentifyParser;
class UserParser;
2014-08-03 19:52:23 +02:00
friend class IdentifyParser;
friend class ChangesParser;
friend class UserParser;
friend class DescribeParser;
friend class DiffParser;
};