CMake/Source/CTest/cmCTestMultiProcessHandler.h

142 lines
3.8 KiB
C
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2008-07-03 17:31:33 +04:00
#ifndef cmCTestMultiProcessHandler_h
#define cmCTestMultiProcessHandler_h
#include <cmConfigure.h> // IWYU pragma: keep
2008-07-03 17:31:33 +04:00
#include <cmCTestTestHandler.h>
#include <map>
#include <set>
#include <stddef.h>
#include <string>
#include <vector>
class cmCTest;
class cmCTestRunTest;
2008-07-03 17:31:33 +04:00
/** \class cmCTestMultiProcessHandler
* \brief run parallel ctest
*
* cmCTestMultiProcessHandler
2008-07-03 17:31:33 +04:00
*/
class cmCTestMultiProcessHandler
2008-07-03 17:31:33 +04:00
{
2010-07-01 22:10:49 +04:00
friend class TestComparator;
2008-07-03 17:31:33 +04:00
public:
struct TestSet : public std::set<int>
{
};
struct TestMap : public std::map<int, TestSet>
{
};
struct TestList : public std::vector<int>
{
};
struct PropertiesMap
: public std::map<int, cmCTestTestHandler::cmCTestTestProperties*>
{
};
2008-07-03 17:31:33 +04:00
cmCTestMultiProcessHandler();
virtual ~cmCTestMultiProcessHandler();
2008-07-03 17:31:33 +04:00
// Set the tests
void SetTests(TestMap& tests, PropertiesMap& properties);
2008-07-03 17:31:33 +04:00
// Set the max number of tests that can be run at the same time.
void SetParallelLevel(size_t);
void SetTestLoad(unsigned long load);
virtual void RunTests();
void PrintTestList();
void PrintLabels();
void SetPassFailVectors(std::vector<std::string>* passed,
std::vector<std::string>* failed)
{
this->Passed = passed;
this->Failed = failed;
}
2008-07-03 17:31:33 +04:00
void SetTestResults(std::vector<cmCTestTestHandler::cmCTestTestResult>* r)
{
this->TestResults = r;
}
void SetCTest(cmCTest* ctest) { this->CTest = ctest; }
void SetTestHandler(cmCTestTestHandler* handler)
{
this->TestHandler = handler;
}
cmCTestTestHandler* GetTestHandler() { return this->TestHandler; }
2015-02-17 22:23:56 +03:00
void SetQuiet(bool b) { this->Quiet = b; }
2010-03-02 23:34:37 +03:00
protected:
2008-07-03 17:31:33 +04:00
// Start the next test or tests as many as are allowed by
// ParallelLevel
void StartNextTests();
void StartTestProcess(int test);
bool StartTest(int test);
// Mark the checkpoint for the given test
void WriteCheckpoint(int index);
void UpdateCostData();
void ReadCostData();
// Return index of a test based on its name
int SearchByName(std::string const& name);
void CreateTestCostList();
void GetAllTestDependencies(int test, TestList& dependencies);
void CreateSerialTestCostList();
void CreateParallelTestCostList();
// Removes the checkpoint file
void MarkFinished();
void EraseTest(int index);
2008-07-03 17:31:33 +04:00
// Return true if there are still tests running
// check all running processes for output and exit case
bool CheckOutput();
void RemoveTest(int index);
// Check if we need to resume an interrupted test set
void CheckResume();
// Check if there are any circular dependencies
bool CheckCycles();
int FindMaxIndex();
inline size_t GetProcessorsUsed(int index);
std::string GetName(int index);
2010-03-02 23:34:37 +03:00
void LockResources(int index);
void UnlockResources(int index);
2008-07-03 17:31:33 +04:00
// map from test number to set of depend tests
TestMap Tests;
2010-07-01 22:10:49 +04:00
TestList SortedTests;
// Total number of tests we'll be running
size_t Total;
// Number of tests that are complete
size_t Completed;
size_t RunningCount;
2010-06-15 18:29:35 +04:00
bool StopTimePassed;
// list of test properties (indices concurrent to the test map)
PropertiesMap Properties;
2008-07-03 17:31:33 +04:00
std::map<int, bool> TestRunningMap;
std::map<int, bool> TestFinishMap;
std::map<int, std::string> TestOutput;
std::vector<std::string>* Passed;
std::vector<std::string>* Failed;
std::vector<std::string> LastTestsFailed;
2010-03-02 23:34:37 +03:00
std::set<std::string> LockedResources;
2008-07-03 17:31:33 +04:00
std::vector<cmCTestTestHandler::cmCTestTestResult>* TestResults;
size_t ParallelLevel; // max number of process that can be run at once
unsigned long TestLoad;
std::set<cmCTestRunTest*> RunningTests; // current running tests
cmCTestTestHandler* TestHandler;
cmCTest* CTest;
2013-10-19 11:28:18 +04:00
bool HasCycles;
2015-02-17 22:23:56 +03:00
bool Quiet;
bool SerialTestRunning;
2008-07-03 17:31:33 +04:00
};
#endif