| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386 | /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying   file Copyright.txt or https://cmake.org/licensing for details.  */#include "cmCTestMultiProcessHandler.h"#include <algorithm>#include <cassert>#include <chrono>#include <cmath>#include <cstddef>#include <cstdlib>#include <cstring>#include <iomanip>#include <iostream>#include <list>#include <memory>#include <sstream>#include <stack>#include <unordered_map>#include <utility>#include <vector>#include "cmsys/FStream.hxx"#include "cmsys/SystemInformation.hxx"#include "cm_jsoncpp_value.h"#include "cm_jsoncpp_writer.h"#include "cm_uv.h"#include "cmAffinity.h"#include "cmAlgorithms.h"#include "cmCTest.h"#include "cmCTestBinPacker.h"#include "cmCTestRunTest.h"#include "cmCTestTestHandler.h"#include "cmDuration.h"#include "cmListFileCache.h"#include "cmRange.h"#include "cmStringAlgorithms.h"#include "cmSystemTools.h"#include "cmUVSignalHackRAII.h" // IWYU pragma: keep#include "cmWorkingDirectory.h"namespace cmsys {class RegularExpression;}class TestComparator{public:  TestComparator(cmCTestMultiProcessHandler* handler)    : Handler(handler)  {  }  // Sorts tests in descending order of cost  bool operator()(int index1, int index2) const  {    return Handler->Properties[index1]->Cost >      Handler->Properties[index2]->Cost;  }private:  cmCTestMultiProcessHandler* Handler;};cmCTestMultiProcessHandler::cmCTestMultiProcessHandler(){  this->ParallelLevel = 1;  this->TestLoad = 0;  this->FakeLoadForTesting = 0;  this->Completed = 0;  this->RunningCount = 0;  this->ProcessorsAvailable = cmAffinity::GetProcessorsAvailable();  this->HaveAffinity = this->ProcessorsAvailable.size();  this->HasCycles = false;  this->SerialTestRunning = false;}cmCTestMultiProcessHandler::~cmCTestMultiProcessHandler() = default;// Set the testsvoid cmCTestMultiProcessHandler::SetTests(TestMap& tests,                                          PropertiesMap& properties){  this->Tests = tests;  this->Properties = properties;  this->Total = this->Tests.size();  // set test run map to false for all  for (auto const& t : this->Tests) {    this->TestRunningMap[t.first] = false;    this->TestFinishMap[t.first] = false;  }  if (!this->CTest->GetShowOnly()) {    this->ReadCostData();    this->HasCycles = !this->CheckCycles();    if (this->HasCycles) {      return;    }    this->CreateTestCostList();  }}// Set the max number of tests that can be run at the same time.void cmCTestMultiProcessHandler::SetParallelLevel(size_t level){  this->ParallelLevel = level < 1 ? 1 : level;}void cmCTestMultiProcessHandler::SetTestLoad(unsigned long load){  this->TestLoad = load;  std::string fake_load_value;  if (cmSystemTools::GetEnv("__CTEST_FAKE_LOAD_AVERAGE_FOR_TESTING",                            fake_load_value)) {    if (!cmStrToULong(fake_load_value, &this->FakeLoadForTesting)) {      cmSystemTools::Error("Failed to parse fake load value: " +                           fake_load_value);    }  }}void cmCTestMultiProcessHandler::RunTests(){  this->CheckResume();  if (this->HasCycles) {    return;  }#ifdef CMAKE_UV_SIGNAL_HACK  cmUVSignalHackRAII hackRAII;#endif  this->TestHandler->SetMaxIndex(this->FindMaxIndex());  uv_loop_init(&this->Loop);  this->StartNextTests();  uv_run(&this->Loop, UV_RUN_DEFAULT);  uv_loop_close(&this->Loop);  if (!this->StopTimePassed) {    assert(this->Completed == this->Total);    assert(this->Tests.empty());  }  assert(this->AllResourcesAvailable());  this->MarkFinished();  this->UpdateCostData();}bool cmCTestMultiProcessHandler::StartTestProcess(int test){  if (this->HaveAffinity && this->Properties[test]->WantAffinity) {    size_t needProcessors = this->GetProcessorsUsed(test);    if (needProcessors > this->ProcessorsAvailable.size()) {      return false;    }    std::vector<size_t> affinity;    affinity.reserve(needProcessors);    for (size_t i = 0; i < needProcessors; ++i) {      auto p = this->ProcessorsAvailable.begin();      affinity.push_back(*p);      this->ProcessorsAvailable.erase(p);    }    this->Properties[test]->Affinity = std::move(affinity);  }  cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,                     "test " << test << "\n", this->Quiet);  this->TestRunningMap[test] = true; // mark the test as running  // now remove the test itself  this->EraseTest(test);  this->RunningCount += GetProcessorsUsed(test);  cmCTestRunTest* testRun = new cmCTestRunTest(*this);  if (this->RepeatMode != cmCTest::Repeat::Never) {    testRun->SetRepeatMode(this->RepeatMode);    testRun->SetNumberOfRuns(this->RepeatCount);  }  testRun->SetIndex(test);  testRun->SetTestProperties(this->Properties[test]);  if (this->TestHandler->UseResourceSpec) {    testRun->SetUseAllocatedResources(true);    testRun->SetAllocatedResources(this->AllocatedResources[test]);  }  // Find any failed dependencies for this test. We assume the more common  // scenario has no failed tests, so make it the outer loop.  for (std::string const& f : *this->Failed) {    if (cmContains(this->Properties[test]->RequireSuccessDepends, f)) {      testRun->AddFailedDependency(f);    }  }  // Always lock the resources we'll be using, even if we fail to set the  // working directory because FinishTestProcess() will try to unlock them  this->LockResources(test);  if (!this->TestsHaveSufficientResources[test]) {    testRun->StartFailure("Insufficient resources");    this->FinishTestProcess(testRun, false);    return false;  }  cmWorkingDirectory workdir(this->Properties[test]->Directory);  if (workdir.Failed()) {    testRun->StartFailure("Failed to change working directory to " +                          this->Properties[test]->Directory + " : " +                          std::strerror(workdir.GetLastResult()));  } else {    if (testRun->StartTest(this->Completed, this->Total)) {      // Ownership of 'testRun' has moved to another structure.      // When the test finishes, FinishTestProcess will be called.      return true;    }  }  // Pass ownership of 'testRun'.  this->FinishTestProcess(testRun, false);  return false;}bool cmCTestMultiProcessHandler::AllocateResources(int index){  if (!this->TestHandler->UseResourceSpec) {    return true;  }  std::map<std::string, std::vector<cmCTestBinPackerAllocation>> allocations;  if (!this->TryAllocateResources(index, allocations)) {    return false;  }  auto& allocatedResources = this->AllocatedResources[index];  allocatedResources.resize(this->Properties[index]->ResourceGroups.size());  for (auto const& it : allocations) {    for (auto const& alloc : it.second) {      bool result = this->ResourceAllocator.AllocateResource(        it.first, alloc.Id, alloc.SlotsNeeded);      (void)result;      assert(result);      allocatedResources[alloc.ProcessIndex][it.first].push_back(        { alloc.Id, static_cast<unsigned int>(alloc.SlotsNeeded) });    }  }  return true;}bool cmCTestMultiProcessHandler::TryAllocateResources(  int index,  std::map<std::string, std::vector<cmCTestBinPackerAllocation>>& allocations){  allocations.clear();  std::size_t processIndex = 0;  for (auto const& process : this->Properties[index]->ResourceGroups) {    for (auto const& requirement : process) {      for (int i = 0; i < requirement.UnitsNeeded; ++i) {        allocations[requirement.ResourceType].push_back(          { processIndex, requirement.SlotsNeeded, "" });      }    }    ++processIndex;  }  auto const& availableResources = this->ResourceAllocator.GetResources();  for (auto& it : allocations) {    if (!availableResources.count(it.first)) {      return false;    }    if (!cmAllocateCTestResourcesRoundRobin(availableResources.at(it.first),                                            it.second)) {      return false;    }  }  return true;}void cmCTestMultiProcessHandler::DeallocateResources(int index){  if (!this->TestHandler->UseResourceSpec) {    return;  }  {    auto& allocatedResources = this->AllocatedResources[index];    for (auto const& processAlloc : allocatedResources) {      for (auto const& it : processAlloc) {        auto resourceType = it.first;        for (auto const& it2 : it.second) {          bool success = this->ResourceAllocator.DeallocateResource(            resourceType, it2.Id, it2.Slots);          (void)success;          assert(success);        }      }    }  }  this->AllocatedResources.erase(index);}bool cmCTestMultiProcessHandler::AllResourcesAvailable(){  for (auto const& it : this->ResourceAllocator.GetResources()) {    for (auto const& it2 : it.second) {      if (it2.second.Locked != 0) {        return false;      }    }  }  return true;}void cmCTestMultiProcessHandler::CheckResourcesAvailable(){  for (auto test : this->SortedTests) {    std::map<std::string, std::vector<cmCTestBinPackerAllocation>> allocations;    this->TestsHaveSufficientResources[test] =      !this->TestHandler->UseResourceSpec ||      this->TryAllocateResources(test, allocations);  }}bool cmCTestMultiProcessHandler::CheckStopTimePassed(){  if (!this->StopTimePassed) {    std::chrono::system_clock::time_point stop_time =      this->CTest->GetStopTime();    if (stop_time != std::chrono::system_clock::time_point() &&        stop_time <= std::chrono::system_clock::now()) {      this->SetStopTimePassed();    }  }  return this->StopTimePassed;}void cmCTestMultiProcessHandler::SetStopTimePassed(){  if (!this->StopTimePassed) {    cmCTestLog(this->CTest, ERROR_MESSAGE,               "The stop time has been passed. "               "Stopping all tests."                 << std::endl);    this->StopTimePassed = true;  }}void cmCTestMultiProcessHandler::LockResources(int index){  this->LockedResources.insert(    this->Properties[index]->LockedResources.begin(),    this->Properties[index]->LockedResources.end());  if (this->Properties[index]->RunSerial) {    this->SerialTestRunning = true;  }}void cmCTestMultiProcessHandler::UnlockResources(int index){  for (std::string const& i : this->Properties[index]->LockedResources) {    this->LockedResources.erase(i);  }  if (this->Properties[index]->RunSerial) {    this->SerialTestRunning = false;  }}void cmCTestMultiProcessHandler::EraseTest(int test){  this->Tests.erase(test);  this->SortedTests.erase(    std::find(this->SortedTests.begin(), this->SortedTests.end(), test));}inline size_t cmCTestMultiProcessHandler::GetProcessorsUsed(int test){  size_t processors = static_cast<int>(this->Properties[test]->Processors);  // If processors setting is set higher than the -j  // setting, we default to using all of the process slots.  if (processors > this->ParallelLevel) {    processors = this->ParallelLevel;  }  // Cap tests that want affinity to the maximum affinity available.  if (this->HaveAffinity && processors > this->HaveAffinity &&      this->Properties[test]->WantAffinity) {    processors = this->HaveAffinity;  }  return processors;}std::string cmCTestMultiProcessHandler::GetName(int test){  return this->Properties[test]->Name;}bool cmCTestMultiProcessHandler::StartTest(int test){  // Check for locked resources  for (std::string const& i : this->Properties[test]->LockedResources) {    if (cmContains(this->LockedResources, i)) {      return false;    }  }  // Allocate resources  if (this->TestsHaveSufficientResources[test] &&      !this->AllocateResources(test)) {    this->DeallocateResources(test);    return false;  }  // if there are no depends left then run this test  if (this->Tests[test].empty()) {    return this->StartTestProcess(test);  }  // This test was not able to start because it is waiting  // on depends to run  this->DeallocateResources(test);  return false;}void cmCTestMultiProcessHandler::StartNextTests(){  if (this->TestLoadRetryTimer.get() != nullptr) {    // This timer may be waiting to call StartNextTests again.    // Since we have been called it is no longer needed.    uv_timer_stop(this->TestLoadRetryTimer);  }  if (this->Tests.empty()) {    this->TestLoadRetryTimer.reset();    return;  }  if (this->CheckStopTimePassed()) {    return;  }  size_t numToStart = 0;  if (this->RunningCount < this->ParallelLevel) {    numToStart = this->ParallelLevel - this->RunningCount;  }  if (numToStart == 0) {    return;  }  // Don't start any new tests if one with the RUN_SERIAL property  // is already running.  if (this->SerialTestRunning) {    return;  }  bool allTestsFailedTestLoadCheck = false;  size_t minProcessorsRequired = this->ParallelLevel;  std::string testWithMinProcessors;  cmsys::SystemInformation info;  unsigned long systemLoad = 0;  size_t spareLoad = 0;  if (this->TestLoad > 0) {    // Activate possible wait.    allTestsFailedTestLoadCheck = true;    // Check for a fake load average value used in testing.    if (this->FakeLoadForTesting > 0) {      systemLoad = this->FakeLoadForTesting;      // Drop the fake load for the next iteration to a value low enough      // that the next iteration will start tests.      this->FakeLoadForTesting = 1;    }    // If it's not set, look up the true load average.    else {      systemLoad = static_cast<unsigned long>(ceil(info.GetLoadAverage()));    }    spareLoad =      (this->TestLoad > systemLoad ? this->TestLoad - systemLoad : 0);    // Don't start more tests than the spare load can support.    if (numToStart > spareLoad) {      numToStart = spareLoad;    }  }  TestList copy = this->SortedTests;  for (auto const& test : copy) {    // Take a nap if we're currently performing a RUN_SERIAL test.    if (this->SerialTestRunning) {      break;    }    // We can only start a RUN_SERIAL test if no other tests are also running.    if (this->Properties[test]->RunSerial && this->RunningCount > 0) {      continue;    }    size_t processors = GetProcessorsUsed(test);    bool testLoadOk = true;    if (this->TestLoad > 0) {      if (processors <= spareLoad) {        cmCTestLog(this->CTest, DEBUG,                   "OK to run " << GetName(test) << ", it requires "                                << processors << " procs & system load is: "                                << systemLoad << std::endl);        allTestsFailedTestLoadCheck = false;      } else {        testLoadOk = false;      }    }    if (processors <= minProcessorsRequired) {      minProcessorsRequired = processors;      testWithMinProcessors = GetName(test);    }    if (testLoadOk && processors <= numToStart && this->StartTest(test)) {      numToStart -= processors;    } else if (numToStart == 0) {      break;    }  }  if (allTestsFailedTestLoadCheck) {    // Find out whether there are any non RUN_SERIAL tests left, so that the    // correct warning may be displayed.    bool onlyRunSerialTestsLeft = true;    for (auto const& test : copy) {      if (!this->Properties[test]->RunSerial) {        onlyRunSerialTestsLeft = false;      }    }    cmCTestLog(this->CTest, HANDLER_OUTPUT, "***** WAITING, ");    if (this->SerialTestRunning) {      cmCTestLog(this->CTest, HANDLER_OUTPUT,                 "Waiting for RUN_SERIAL test to finish.");    } else if (onlyRunSerialTestsLeft) {      cmCTestLog(this->CTest, HANDLER_OUTPUT,                 "Only RUN_SERIAL tests remain, awaiting available slot.");    } else {      /* clang-format off */      cmCTestLog(this->CTest, HANDLER_OUTPUT,                 "System Load: " << systemLoad << ", "                 "Max Allowed Load: " << this->TestLoad << ", "                 "Smallest test " << testWithMinProcessors <<                 " requires " << minProcessorsRequired);      /* clang-format on */    }    cmCTestLog(this->CTest, HANDLER_OUTPUT, "*****" << std::endl);    // Wait between 1 and 5 seconds before trying again.    unsigned int milliseconds = (cmSystemTools::RandomSeed() % 5 + 1) * 1000;    if (this->FakeLoadForTesting) {      milliseconds = 10;    }    if (this->TestLoadRetryTimer.get() == nullptr) {      this->TestLoadRetryTimer.init(this->Loop, this);    }    this->TestLoadRetryTimer.start(      &cmCTestMultiProcessHandler::OnTestLoadRetryCB, milliseconds, 0);  }}void cmCTestMultiProcessHandler::OnTestLoadRetryCB(uv_timer_t* timer){  auto self = static_cast<cmCTestMultiProcessHandler*>(timer->data);  self->StartNextTests();}void cmCTestMultiProcessHandler::FinishTestProcess(cmCTestRunTest* runner,                                                   bool started){  this->Completed++;  int test = runner->GetIndex();  auto properties = runner->GetTestProperties();  bool testResult = runner->EndTest(this->Completed, this->Total, started);  if (runner->TimedOutForStopTime()) {    this->SetStopTimePassed();  }  if (started) {    if (!this->StopTimePassed && runner->StartAgain(this->Completed)) {      this->Completed--; // remove the completed test because run again      return;    }  }  if (testResult) {    this->Passed->push_back(properties->Name);  } else if (!properties->Disabled) {    this->Failed->push_back(properties->Name);  }  for (auto& t : this->Tests) {    t.second.erase(test);  }  this->TestFinishMap[test] = true;  this->TestRunningMap[test] = false;  this->WriteCheckpoint(test);  this->DeallocateResources(test);  this->UnlockResources(test);  this->RunningCount -= GetProcessorsUsed(test);  for (auto p : properties->Affinity) {    this->ProcessorsAvailable.insert(p);  }  properties->Affinity.clear();  delete runner;  if (started) {    this->StartNextTests();  }}void cmCTestMultiProcessHandler::UpdateCostData(){  std::string fname = this->CTest->GetCostDataFile();  std::string tmpout = fname + ".tmp";  cmsys::ofstream fout;  fout.open(tmpout.c_str());  PropertiesMap temp = this->Properties;  if (cmSystemTools::FileExists(fname)) {    cmsys::ifstream fin;    fin.open(fname.c_str());    std::string line;    while (std::getline(fin, line)) {      if (line == "---") {        break;      }      std::vector<std::string> parts = cmSystemTools::SplitString(line, ' ');      // Format: <name> <previous_runs> <avg_cost>      if (parts.size() < 3) {        break;      }      std::string name = parts[0];      int prev = atoi(parts[1].c_str());      float cost = static_cast<float>(atof(parts[2].c_str()));      int index = this->SearchByName(name);      if (index == -1) {        // This test is not in memory. We just rewrite the entry        fout << name << " " << prev << " " << cost << "\n";      } else {        // Update with our new average cost        fout << name << " " << this->Properties[index]->PreviousRuns << " "             << this->Properties[index]->Cost << "\n";        temp.erase(index);      }    }    fin.close();    cmSystemTools::RemoveFile(fname);  }  // Add all tests not previously listed in the file  for (auto const& i : temp) {    fout << i.second->Name << " " << i.second->PreviousRuns << " "         << i.second->Cost << "\n";  }  // Write list of failed tests  fout << "---\n";  for (std::string const& f : *this->Failed) {    fout << f << "\n";  }  fout.close();  cmSystemTools::RenameFile(tmpout, fname);}void cmCTestMultiProcessHandler::ReadCostData(){  std::string fname = this->CTest->GetCostDataFile();  if (cmSystemTools::FileExists(fname, true)) {    cmsys::ifstream fin;    fin.open(fname.c_str());    std::string line;    while (std::getline(fin, line)) {      if (line == "---") {        break;      }      std::vector<std::string> parts = cmSystemTools::SplitString(line, ' ');      // Probably an older version of the file, will be fixed next run      if (parts.size() < 3) {        fin.close();        return;      }      std::string name = parts[0];      int prev = atoi(parts[1].c_str());      float cost = static_cast<float>(atof(parts[2].c_str()));      int index = this->SearchByName(name);      if (index == -1) {        continue;      }      this->Properties[index]->PreviousRuns = prev;      // When not running in parallel mode, don't use cost data      if (this->ParallelLevel > 1 && this->Properties[index] &&          this->Properties[index]->Cost == 0) {        this->Properties[index]->Cost = cost;      }    }    // Next part of the file is the failed tests    while (std::getline(fin, line)) {      if (!line.empty()) {        this->LastTestsFailed.push_back(line);      }    }    fin.close();  }}int cmCTestMultiProcessHandler::SearchByName(std::string const& name){  int index = -1;  for (auto const& p : this->Properties) {    if (p.second->Name == name) {      index = p.first;    }  }  return index;}void cmCTestMultiProcessHandler::CreateTestCostList(){  if (this->ParallelLevel > 1) {    CreateParallelTestCostList();  } else {    CreateSerialTestCostList();  }}void cmCTestMultiProcessHandler::CreateParallelTestCostList(){  TestSet alreadySortedTests;  std::list<TestSet> priorityStack;  priorityStack.emplace_back();  TestSet& topLevel = priorityStack.back();  // In parallel test runs add previously failed tests to the front  // of the cost list and queue other tests for further sorting  for (auto const& t : this->Tests) {    if (cmContains(this->LastTestsFailed, this->Properties[t.first]->Name)) {      // If the test failed last time, it should be run first.      this->SortedTests.push_back(t.first);      alreadySortedTests.insert(t.first);    } else {      topLevel.insert(t.first);    }  }  // In parallel test runs repeatedly move dependencies of the tests on  // the current dependency level to the next level until no  // further dependencies exist.  while (!priorityStack.back().empty()) {    TestSet& previousSet = priorityStack.back();    priorityStack.emplace_back();    TestSet& currentSet = priorityStack.back();    for (auto const& i : previousSet) {      TestSet const& dependencies = this->Tests[i];      currentSet.insert(dependencies.begin(), dependencies.end());    }    for (auto const& i : currentSet) {      previousSet.erase(i);    }  }  // Remove the empty dependency level  priorityStack.pop_back();  // Reverse iterate over the different dependency levels (deepest first).  // Sort tests within each level by COST and append them to the cost list.  for (TestSet const& currentSet : cmReverseRange(priorityStack)) {    TestList sortedCopy;    cmAppend(sortedCopy, currentSet);    std::stable_sort(sortedCopy.begin(), sortedCopy.end(),                     TestComparator(this));    for (auto const& j : sortedCopy) {      if (!cmContains(alreadySortedTests, j)) {        this->SortedTests.push_back(j);        alreadySortedTests.insert(j);      }    }  }}void cmCTestMultiProcessHandler::GetAllTestDependencies(int test,                                                        TestList& dependencies){  TestSet const& dependencySet = this->Tests[test];  for (int i : dependencySet) {    GetAllTestDependencies(i, dependencies);    dependencies.push_back(i);  }}void cmCTestMultiProcessHandler::CreateSerialTestCostList(){  TestList presortedList;  for (auto const& i : this->Tests) {    presortedList.push_back(i.first);  }  std::stable_sort(presortedList.begin(), presortedList.end(),                   TestComparator(this));  TestSet alreadySortedTests;  for (int test : presortedList) {    if (cmContains(alreadySortedTests, test)) {      continue;    }    TestList dependencies;    GetAllTestDependencies(test, dependencies);    for (int testDependency : dependencies) {      if (!cmContains(alreadySortedTests, testDependency)) {        alreadySortedTests.insert(testDependency);        this->SortedTests.push_back(testDependency);      }    }    alreadySortedTests.insert(test);    this->SortedTests.push_back(test);  }}void cmCTestMultiProcessHandler::WriteCheckpoint(int index){  std::string fname =    this->CTest->GetBinaryDir() + "/Testing/Temporary/CTestCheckpoint.txt";  cmsys::ofstream fout;  fout.open(fname.c_str(), std::ios::app);  fout << index << "\n";  fout.close();}void cmCTestMultiProcessHandler::MarkFinished(){  std::string fname =    this->CTest->GetBinaryDir() + "/Testing/Temporary/CTestCheckpoint.txt";  cmSystemTools::RemoveFile(fname);}static Json::Value DumpToJsonArray(const std::set<std::string>& values){  Json::Value jsonArray = Json::arrayValue;  for (auto& it : values) {    jsonArray.append(it);  }  return jsonArray;}static Json::Value DumpToJsonArray(const std::vector<std::string>& values){  Json::Value jsonArray = Json::arrayValue;  for (auto& it : values) {    jsonArray.append(it);  }  return jsonArray;}static Json::Value DumpRegExToJsonArray(  const std::vector<std::pair<cmsys::RegularExpression, std::string>>& values){  Json::Value jsonArray = Json::arrayValue;  for (auto& it : values) {    jsonArray.append(it.second);  }  return jsonArray;}static Json::Value DumpMeasurementToJsonArray(  const std::map<std::string, std::string>& values){  Json::Value jsonArray = Json::arrayValue;  for (auto& it : values) {    Json::Value measurement = Json::objectValue;    measurement["measurement"] = it.first;    measurement["value"] = it.second;    jsonArray.append(measurement);  }  return jsonArray;}static Json::Value DumpTimeoutAfterMatch(  cmCTestTestHandler::cmCTestTestProperties& testProperties){  Json::Value timeoutAfterMatch = Json::objectValue;  timeoutAfterMatch["timeout"] = testProperties.AlternateTimeout.count();  timeoutAfterMatch["regex"] =    DumpRegExToJsonArray(testProperties.TimeoutRegularExpressions);  return timeoutAfterMatch;}static Json::Value DumpResourceGroupsToJsonArray(  const std::vector<    std::vector<cmCTestTestHandler::cmCTestTestResourceRequirement>>&    resourceGroups){  Json::Value jsonResourceGroups = Json::arrayValue;  for (auto const& it : resourceGroups) {    Json::Value jsonResourceGroup = Json::objectValue;    Json::Value requirements = Json::arrayValue;    for (auto const& it2 : it) {      Json::Value res = Json::objectValue;      res[".type"] = it2.ResourceType;      // res[".units"] = it2.UnitsNeeded; // Intentionally commented out      res["slots"] = it2.SlotsNeeded;      requirements.append(res);    }    jsonResourceGroup["requirements"] = requirements;    jsonResourceGroups.append(jsonResourceGroup);  }  return jsonResourceGroups;}static Json::Value DumpCTestProperty(std::string const& name,                                     Json::Value value){  Json::Value property = Json::objectValue;  property["name"] = name;  property["value"] = std::move(value);  return property;}static Json::Value DumpCTestProperties(  cmCTestTestHandler::cmCTestTestProperties& testProperties){  Json::Value properties = Json::arrayValue;  if (!testProperties.AttachOnFail.empty()) {    properties.append(DumpCTestProperty(      "ATTACHED_FILES_ON_FAIL", DumpToJsonArray(testProperties.AttachOnFail)));  }  if (!testProperties.AttachedFiles.empty()) {    properties.append(DumpCTestProperty(      "ATTACHED_FILES", DumpToJsonArray(testProperties.AttachedFiles)));  }  if (testProperties.Cost != 0.0f) {    properties.append(      DumpCTestProperty("COST", static_cast<double>(testProperties.Cost)));  }  if (!testProperties.Depends.empty()) {    properties.append(      DumpCTestProperty("DEPENDS", DumpToJsonArray(testProperties.Depends)));  }  if (testProperties.Disabled) {    properties.append(DumpCTestProperty("DISABLED", testProperties.Disabled));  }  if (!testProperties.Environment.empty()) {    properties.append(DumpCTestProperty(      "ENVIRONMENT", DumpToJsonArray(testProperties.Environment)));  }  if (!testProperties.ErrorRegularExpressions.empty()) {    properties.append(DumpCTestProperty(      "FAIL_REGULAR_EXPRESSION",      DumpRegExToJsonArray(testProperties.ErrorRegularExpressions)));  }  if (!testProperties.SkipRegularExpressions.empty()) {    properties.append(DumpCTestProperty(      "SKIP_REGULAR_EXPRESSION",      DumpRegExToJsonArray(testProperties.SkipRegularExpressions)));  }  if (!testProperties.FixturesCleanup.empty()) {    properties.append(DumpCTestProperty(      "FIXTURES_CLEANUP", DumpToJsonArray(testProperties.FixturesCleanup)));  }  if (!testProperties.FixturesRequired.empty()) {    properties.append(DumpCTestProperty(      "FIXTURES_REQUIRED", DumpToJsonArray(testProperties.FixturesRequired)));  }  if (!testProperties.FixturesSetup.empty()) {    properties.append(DumpCTestProperty(      "FIXTURES_SETUP", DumpToJsonArray(testProperties.FixturesSetup)));  }  if (!testProperties.Labels.empty()) {    properties.append(      DumpCTestProperty("LABELS", DumpToJsonArray(testProperties.Labels)));  }  if (!testProperties.Measurements.empty()) {    properties.append(DumpCTestProperty(      "MEASUREMENT", DumpMeasurementToJsonArray(testProperties.Measurements)));  }  if (!testProperties.RequiredRegularExpressions.empty()) {    properties.append(DumpCTestProperty(      "PASS_REGULAR_EXPRESSION",      DumpRegExToJsonArray(testProperties.RequiredRegularExpressions)));  }  if (!testProperties.ResourceGroups.empty()) {    properties.append(DumpCTestProperty(      "RESOURCE_GROUPS",      DumpResourceGroupsToJsonArray(testProperties.ResourceGroups)));  }  if (testProperties.WantAffinity) {    properties.append(      DumpCTestProperty("PROCESSOR_AFFINITY", testProperties.WantAffinity));  }  if (testProperties.Processors != 1) {    properties.append(      DumpCTestProperty("PROCESSORS", testProperties.Processors));  }  if (!testProperties.RequiredFiles.empty()) {    properties.append(DumpCTestProperty(      "REQUIRED_FILES", DumpToJsonArray(testProperties.RequiredFiles)));  }  if (!testProperties.LockedResources.empty()) {    properties.append(DumpCTestProperty(      "RESOURCE_LOCK", DumpToJsonArray(testProperties.LockedResources)));  }  if (testProperties.RunSerial) {    properties.append(      DumpCTestProperty("RUN_SERIAL", testProperties.RunSerial));  }  if (testProperties.SkipReturnCode != -1) {    properties.append(      DumpCTestProperty("SKIP_RETURN_CODE", testProperties.SkipReturnCode));  }  if (testProperties.ExplicitTimeout) {    properties.append(      DumpCTestProperty("TIMEOUT", testProperties.Timeout.count()));  }  if (!testProperties.TimeoutRegularExpressions.empty()) {    properties.append(DumpCTestProperty(      "TIMEOUT_AFTER_MATCH", DumpTimeoutAfterMatch(testProperties)));  }  if (testProperties.WillFail) {    properties.append(DumpCTestProperty("WILL_FAIL", testProperties.WillFail));  }  if (!testProperties.Directory.empty()) {    properties.append(      DumpCTestProperty("WORKING_DIRECTORY", testProperties.Directory));  }  return properties;}class BacktraceData{  std::unordered_map<std::string, Json::ArrayIndex> CommandMap;  std::unordered_map<std::string, Json::ArrayIndex> FileMap;  std::unordered_map<cmListFileContext const*, Json::ArrayIndex> NodeMap;  Json::Value Commands = Json::arrayValue;  Json::Value Files = Json::arrayValue;  Json::Value Nodes = Json::arrayValue;  Json::ArrayIndex AddCommand(std::string const& command)  {    auto i = this->CommandMap.find(command);    if (i == this->CommandMap.end()) {      i = this->CommandMap.emplace(command, this->Commands.size()).first;      this->Commands.append(command);    }    return i->second;  }  Json::ArrayIndex AddFile(std::string const& file)  {    auto i = this->FileMap.find(file);    if (i == this->FileMap.end()) {      i = this->FileMap.emplace(file, this->Files.size()).first;      this->Files.append(file);    }    return i->second;  }public:  bool Add(cmListFileBacktrace const& bt, Json::ArrayIndex& index);  Json::Value Dump();};bool BacktraceData::Add(cmListFileBacktrace const& bt, Json::ArrayIndex& index){  if (bt.Empty()) {    return false;  }  cmListFileContext const* top = &bt.Top();  auto found = this->NodeMap.find(top);  if (found != this->NodeMap.end()) {    index = found->second;    return true;  }  Json::Value entry = Json::objectValue;  entry["file"] = this->AddFile(top->FilePath);  if (top->Line) {    entry["line"] = static_cast<int>(top->Line);  }  if (!top->Name.empty()) {    entry["command"] = this->AddCommand(top->Name);  }  Json::ArrayIndex parent;  if (this->Add(bt.Pop(), parent)) {    entry["parent"] = parent;  }  index = this->NodeMap[top] = this->Nodes.size();  this->Nodes.append(std::move(entry)); // NOLINT(*)  return true;}Json::Value BacktraceData::Dump(){  Json::Value backtraceGraph;  this->CommandMap.clear();  this->FileMap.clear();  this->NodeMap.clear();  backtraceGraph["commands"] = std::move(this->Commands);  backtraceGraph["files"] = std::move(this->Files);  backtraceGraph["nodes"] = std::move(this->Nodes);  return backtraceGraph;}static void AddBacktrace(BacktraceData& backtraceGraph, Json::Value& object,                         cmListFileBacktrace const& bt){  Json::ArrayIndex backtrace;  if (backtraceGraph.Add(bt, backtrace)) {    object["backtrace"] = backtrace;  }}static Json::Value DumpCTestInfo(  cmCTestRunTest& testRun,  cmCTestTestHandler::cmCTestTestProperties& testProperties,  BacktraceData& backtraceGraph){  Json::Value testInfo = Json::objectValue;  // test name should always be present  testInfo["name"] = testProperties.Name;  std::string const& config = testRun.GetCTest()->GetConfigType();  if (!config.empty()) {    testInfo["config"] = config;  }  std::string const& command = testRun.GetActualCommand();  if (!command.empty()) {    std::vector<std::string> commandAndArgs;    commandAndArgs.push_back(command);    const std::vector<std::string>& args = testRun.GetArguments();    if (!args.empty()) {      commandAndArgs.reserve(args.size() + 1);      cmAppend(commandAndArgs, args);    }    testInfo["command"] = DumpToJsonArray(commandAndArgs);  }  Json::Value properties = DumpCTestProperties(testProperties);  if (!properties.empty()) {    testInfo["properties"] = properties;  }  if (!testProperties.Backtrace.Empty()) {    AddBacktrace(backtraceGraph, testInfo, testProperties.Backtrace);  }  return testInfo;}static Json::Value DumpVersion(int major, int minor){  Json::Value version = Json::objectValue;  version["major"] = major;  version["minor"] = minor;  return version;}void cmCTestMultiProcessHandler::PrintOutputAsJson(){  this->TestHandler->SetMaxIndex(this->FindMaxIndex());  Json::Value result = Json::objectValue;  result["kind"] = "ctestInfo";  result["version"] = DumpVersion(1, 0);  BacktraceData backtraceGraph;  Json::Value tests = Json::arrayValue;  for (auto& it : this->Properties) {    cmCTestTestHandler::cmCTestTestProperties& p = *it.second;    // Don't worry if this fails, we are only showing the test list, not    // running the tests    cmWorkingDirectory workdir(p.Directory);    cmCTestRunTest testRun(*this);    testRun.SetIndex(p.Index);    testRun.SetTestProperties(&p);    testRun.ComputeArguments();    // Skip tests not available in this configuration.    if (p.Args.size() >= 2 && p.Args[1] == "NOT_AVAILABLE") {      continue;    }    Json::Value testInfo = DumpCTestInfo(testRun, p, backtraceGraph);    tests.append(testInfo);  }  result["backtraceGraph"] = backtraceGraph.Dump();  result["tests"] = std::move(tests);  Json::StreamWriterBuilder builder;  builder["indentation"] = "  ";  std::unique_ptr<Json::StreamWriter> jout(builder.newStreamWriter());  jout->write(result, &std::cout);}// For ShowOnly modevoid cmCTestMultiProcessHandler::PrintTestList(){  if (this->CTest->GetOutputAsJson()) {    PrintOutputAsJson();    return;  }  this->TestHandler->SetMaxIndex(this->FindMaxIndex());  int count = 0;  for (auto& it : this->Properties) {    count++;    cmCTestTestHandler::cmCTestTestProperties& p = *it.second;    // Don't worry if this fails, we are only showing the test list, not    // running the tests    cmWorkingDirectory workdir(p.Directory);    cmCTestRunTest testRun(*this);    testRun.SetIndex(p.Index);    testRun.SetTestProperties(&p);    testRun.ComputeArguments(); // logs the command in verbose mode    if (!p.Labels.empty()) // print the labels    {      cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,                         "Labels:", this->Quiet);    }    for (std::string const& label : p.Labels) {      cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT, " " << label,                         this->Quiet);    }    if (!p.Labels.empty()) // print the labels    {      cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT, std::endl,                         this->Quiet);    }    if (this->TestHandler->MemCheck) {      cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "  Memory Check",                         this->Quiet);    } else {      cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "  Test", this->Quiet);    }    std::ostringstream indexStr;    indexStr << " #" << p.Index << ":";    cmCTestOptionalLog(      this->CTest, HANDLER_OUTPUT,      std::setw(3 + getNumWidth(this->TestHandler->GetMaxIndex()))        << indexStr.str(),      this->Quiet);    cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, " " << p.Name,                       this->Quiet);    if (p.Disabled) {      cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, " (Disabled)",                         this->Quiet);    }    cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, std::endl, this->Quiet);  }  cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT,                     std::endl                       << "Total Tests: " << this->Total << std::endl,                     this->Quiet);}void cmCTestMultiProcessHandler::PrintLabels(){  std::set<std::string> allLabels;  for (auto& it : this->Properties) {    cmCTestTestHandler::cmCTestTestProperties& p = *it.second;    allLabels.insert(p.Labels.begin(), p.Labels.end());  }  if (!allLabels.empty()) {    cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "All Labels:" << std::endl,                       this->Quiet);  } else {    cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT,                       "No Labels Exist" << std::endl, this->Quiet);  }  for (std::string const& label : allLabels) {    cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "  " << label << std::endl,                       this->Quiet);  }}void cmCTestMultiProcessHandler::CheckResume(){  std::string fname =    this->CTest->GetBinaryDir() + "/Testing/Temporary/CTestCheckpoint.txt";  if (this->CTest->GetFailover()) {    if (cmSystemTools::FileExists(fname, true)) {      *this->TestHandler->LogFile        << "Resuming previously interrupted test set" << std::endl        << "----------------------------------------------------------"        << std::endl;      cmsys::ifstream fin;      fin.open(fname.c_str());      std::string line;      while (std::getline(fin, line)) {        int index = atoi(line.c_str());        this->RemoveTest(index);      }      fin.close();    }  } else if (cmSystemTools::FileExists(fname, true)) {    cmSystemTools::RemoveFile(fname);  }}void cmCTestMultiProcessHandler::RemoveTest(int index){  this->EraseTest(index);  this->Properties.erase(index);  this->TestRunningMap[index] = false;  this->TestFinishMap[index] = true;  this->Completed++;}int cmCTestMultiProcessHandler::FindMaxIndex(){  int max = 0;  for (auto const& i : this->Tests) {    if (i.first > max) {      max = i.first;    }  }  return max;}// Returns true if no cycles exist in the dependency graphbool cmCTestMultiProcessHandler::CheckCycles(){  cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,                     "Checking test dependency graph..." << std::endl,                     this->Quiet);  for (auto const& it : this->Tests) {    // DFS from each element to itself    int root = it.first;    std::set<int> visited;    std::stack<int> s;    s.push(root);    while (!s.empty()) {      int test = s.top();      s.pop();      if (visited.insert(test).second) {        for (auto const& d : this->Tests[test]) {          if (d == root) {            // cycle exists            cmCTestLog(              this->CTest, ERROR_MESSAGE,              "Error: a cycle exists in the test dependency graph "              "for the test \""                << this->Properties[root]->Name                << "\".\nPlease fix the cycle and run ctest again.\n");            return false;          }          s.push(d);        }      }    }  }  cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,                     "Checking test dependency graph end" << std::endl,                     this->Quiet);  return true;}
 |