mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
970c82348b
Teach the ctest_update implementation to use the p4 command-line client to perform updates and extract the list of changes. Add a CTest.UpdateP4 test like those that exist already for the other version control tools. Make the test available when p4 and the p4d server are found. During the test launch p4d in the background to serve a repository from the test directory. Then direct the client toward this server for the duration of the test.
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2000-2013 Kitware, Inc.
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the License for more information.
|
|
============================================================================*/
|
|
#ifndef cmCTestP4_h
|
|
#define cmCTestP4_h
|
|
|
|
#include "cmCTestGlobalVC.h"
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
/** \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, std::ostream& log);
|
|
|
|
virtual ~cmCTestP4();
|
|
|
|
private:
|
|
std::vector<std::string> ChangeLists;
|
|
|
|
struct User
|
|
{
|
|
std::string UserName;
|
|
std::string Name;
|
|
std::string EMail;
|
|
std::string AccessTime;
|
|
|
|
User(): UserName(), Name(), EMail(), AccessTime() {}
|
|
};
|
|
std::map<std::string, User> Users;
|
|
std::vector<std::string> P4Options;
|
|
|
|
User GetUserData(const std::string& username);
|
|
void SetP4Options(std::vector<char const*> &options);
|
|
|
|
std::string GetWorkingRevision();
|
|
virtual void NoteOldRevision();
|
|
virtual void NoteNewRevision();
|
|
virtual bool UpdateImpl();
|
|
bool UpdateCustom(const std::string& custom);
|
|
|
|
void LoadRevisions();
|
|
void LoadModifications();
|
|
|
|
// Parsing helper classes.
|
|
class IdentifyParser;
|
|
class ChangesParser;
|
|
class UserParser;
|
|
class DescribeParser;
|
|
class DiffParser;
|
|
friend class IdentifyParser;
|
|
friend class ChangesParser;
|
|
friend class UserParser;
|
|
friend class DescribeParser;
|
|
friend class DiffParser;
|
|
};
|
|
|
|
#endif
|