2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2013-10-22 22:11:22 +00:00
|
|
|
#ifndef cmCTestP4_h
|
|
|
|
#define cmCTestP4_h
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-08-24 20:01:40 +00:00
|
|
|
|
2013-10-22 22:11:22 +00:00
|
|
|
#include "cmCTestGlobalVC.h"
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2016-08-24 20:01:40 +00:00
|
|
|
#include <iosfwd>
|
2013-10-22 22:11:22 +00:00
|
|
|
#include <map>
|
2016-08-24 20:01:40 +00:00
|
|
|
#include <string>
|
2016-04-29 14:53:13 +00:00
|
|
|
#include <vector>
|
2013-10-22 22:11:22 +00:00
|
|
|
|
2016-08-24 20:01:40 +00:00
|
|
|
class cmCTest;
|
|
|
|
|
2013-10-22 22:11:22 +00:00
|
|
|
/** \class cmCTestP4
|
|
|
|
* \brief Interaction with the Perforce command-line tool
|
|
|
|
*
|
|
|
|
*/
|
2016-05-16 14:34:04 +00:00
|
|
|
class cmCTestP4 : public cmCTestGlobalVC
|
2013-10-22 22:11:22 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Construct with a CTest instance and update log stream. */
|
|
|
|
cmCTestP4(cmCTest* ctest, std::ostream& log);
|
|
|
|
|
2017-09-15 13:56:26 +00:00
|
|
|
~cmCTestP4() override;
|
2013-10-22 22:11:22 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<std::string> ChangeLists;
|
|
|
|
|
|
|
|
struct User
|
2016-05-16 14:34:04 +00:00
|
|
|
{
|
2013-10-22 22:11:22 +00:00
|
|
|
std::string UserName;
|
|
|
|
std::string Name;
|
|
|
|
std::string EMail;
|
|
|
|
std::string AccessTime;
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
User()
|
|
|
|
: UserName()
|
|
|
|
, Name()
|
|
|
|
, EMail()
|
|
|
|
, AccessTime()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
2013-10-22 22:11:22 +00:00
|
|
|
std::map<std::string, User> Users;
|
|
|
|
std::vector<std::string> P4Options;
|
|
|
|
|
|
|
|
User GetUserData(const std::string& username);
|
2016-05-16 14:34:04 +00:00
|
|
|
void SetP4Options(std::vector<char const*>& options);
|
2013-10-22 22:11:22 +00:00
|
|
|
|
|
|
|
std::string GetWorkingRevision();
|
2017-09-15 13:56:26 +00:00
|
|
|
bool NoteOldRevision() override;
|
|
|
|
bool NoteNewRevision() override;
|
|
|
|
bool UpdateImpl() override;
|
2013-10-22 22:11:22 +00:00
|
|
|
bool UpdateCustom(const std::string& custom);
|
|
|
|
|
2017-09-15 13:56:26 +00:00
|
|
|
bool LoadRevisions() override;
|
|
|
|
bool LoadModifications() override;
|
2013-10-22 22:11:22 +00:00
|
|
|
|
|
|
|
class ChangesParser;
|
|
|
|
class DescribeParser;
|
|
|
|
class DiffParser;
|
2016-08-24 20:01:40 +00:00
|
|
|
// Parsing helper classes.
|
|
|
|
class IdentifyParser;
|
|
|
|
class UserParser;
|
|
|
|
|
2013-10-22 22:11:22 +00:00
|
|
|
friend class IdentifyParser;
|
|
|
|
friend class ChangesParser;
|
|
|
|
friend class UserParser;
|
|
|
|
friend class DescribeParser;
|
|
|
|
friend class DiffParser;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|