cmake/Source/CTest/cmCTestP4.h

77 lines
1.6 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. */
2014-08-03 19:52:23 +02:00
#ifndef cmCTestP4_h
#define cmCTestP4_h
2016-10-30 18:24:19 +01:00
#include <cmConfigure.h>
2014-08-03 19:52:23 +02:00
#include "cmCTestGlobalVC.h"
2016-07-09 11:21:54 +02:00
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
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);
2016-10-30 18:24:19 +01:00
~cmCTestP4() CM_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
User()
: UserName()
, Name()
, EMail()
, AccessTime()
{
}
};
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);
2016-07-09 11:21:54 +02:00
void SetP4Options(std::vector<char const*>& options);
2014-08-03 19:52:23 +02:00
std::string GetWorkingRevision();
2016-10-30 18:24:19 +01:00
void NoteOldRevision() CM_OVERRIDE;
void NoteNewRevision() CM_OVERRIDE;
bool UpdateImpl() CM_OVERRIDE;
2014-08-03 19:52:23 +02:00
bool UpdateCustom(const std::string& custom);
2016-10-30 18:24:19 +01:00
void LoadRevisions() CM_OVERRIDE;
void LoadModifications() CM_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;
};
#endif