| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809 | /*============================================================================  CMake - Cross Platform Makefile Generator  Copyright 2000-2009 Kitware, Inc., Insight Software Consortium  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.============================================================================*/#include "cmCTestMultiProcessHandler.h"#include "cmProcess.h"#include "cmStandardIncludes.h"#include "cmCTest.h"#include "cmSystemTools.h"#include <stdlib.h>#include <stack>#include <float.h>#include <cmsys/FStream.hxx>class TestComparator{public:  TestComparator(cmCTestMultiProcessHandler* handler) : Handler(handler) {}  ~TestComparator() {}  // 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->Completed = 0;  this->RunningCount = 0;  this->StopTimePassed = false;  this->HasCycles = false;}cmCTestMultiProcessHandler::~cmCTestMultiProcessHandler(){}  // Set the testsvoidcmCTestMultiProcessHandler::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(TestMap::iterator i = this->Tests.begin();      i != this->Tests.end(); ++i)    {    this->TestRunningMap[i->first] = false;    this->TestFinishMap[i->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::RunTests(){  this->CheckResume();  if(this->HasCycles)    {    return;    }  this->TestHandler->SetMaxIndex(this->FindMaxIndex());  this->StartNextTests();  while(this->Tests.size() != 0)    {    if(this->StopTimePassed)      {      return;      }    this->CheckOutput();    this->StartNextTests();    }  // let all running tests finish  while(this->CheckOutput())    {    }  this->MarkFinished();  this->UpdateCostData();}//---------------------------------------------------------void cmCTestMultiProcessHandler::StartTestProcess(int test){  cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "test " << test << "\n");  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->TestHandler);  testRun->SetIndex(test);  testRun->SetTestProperties(this->Properties[test]);  std::string current_dir = cmSystemTools::GetCurrentWorkingDirectory();  cmSystemTools::ChangeDirectory(this->Properties[test]->Directory);  // Lock the resources we'll be using  this->LockResources(test);  if(testRun->StartTest(this->Total))    {    this->RunningTests.insert(testRun);    }  else if(testRun->IsStopTimePassed())    {    this->StopTimePassed = true;    delete testRun;    return;    }  else    {    for(TestMap::iterator j = this->Tests.begin();      j != this->Tests.end(); ++j)      {      j->second.erase(test);      }    this->UnlockResources(test);    this->Completed++;    this->TestFinishMap[test] = true;    this->TestRunningMap[test] = false;    this->RunningCount -= GetProcessorsUsed(test);    testRun->EndTest(this->Completed, this->Total, false);    this->Failed->push_back(this->Properties[test]->Name);    delete testRun;    }  cmSystemTools::ChangeDirectory(current_dir);}//---------------------------------------------------------void cmCTestMultiProcessHandler::LockResources(int index){  for(std::set<std::string>::iterator i =      this->Properties[index]->LockedResources.begin();      i != this->Properties[index]->LockedResources.end(); ++i)    {    this->LockedResources.insert(*i);    }}//---------------------------------------------------------void cmCTestMultiProcessHandler::UnlockResources(int index){  for(std::set<std::string>::iterator i =      this->Properties[index]->LockedResources.begin();      i != this->Properties[index]->LockedResources.end(); ++i)    {    this->LockedResources.erase(*i);    }}//---------------------------------------------------------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 this is set to run serially, it must run alone.  //Also, if processors setting is set higher than the -j  //setting, we default to using all of the process slots.  if(this->Properties[test]->RunSerial     || processors > this->ParallelLevel)    {    processors = this->ParallelLevel;    }  return processors;}//---------------------------------------------------------bool cmCTestMultiProcessHandler::StartTest(int test){  //Check for locked resources  for(std::set<std::string>::iterator i =      this->Properties[test]->LockedResources.begin();      i != this->Properties[test]->LockedResources.end(); ++i)    {    if(this->LockedResources.find(*i) != this->LockedResources.end())      {      return false;      }    }  // if there are no depends left then run this test  if(this->Tests[test].empty())    {    this->StartTestProcess(test);    return true;    }  // This test was not able to start because it is waiting  // on depends to run  return false;}//---------------------------------------------------------void cmCTestMultiProcessHandler::StartNextTests(){  size_t numToStart = 0;  if(this->RunningCount < this->ParallelLevel)    {    numToStart = this->ParallelLevel - this->RunningCount;    }  if(numToStart == 0)    {    return;    }  TestList copy = this->SortedTests;  for(TestList::iterator test = copy.begin(); test != copy.end(); ++test)    {    size_t processors = GetProcessorsUsed(*test);    if(processors <= numToStart && this->StartTest(*test))      {        if(this->StopTimePassed)          {          return;          }        numToStart -= processors;      }    else if(numToStart == 0)      {      return;      }    }}//---------------------------------------------------------bool cmCTestMultiProcessHandler::CheckOutput(){  // no more output we are done  if(this->RunningTests.size() == 0)    {    return false;    }  std::vector<cmCTestRunTest*> finished;  std::string out, err;  for(std::set<cmCTestRunTest*>::const_iterator i = this->RunningTests.begin();      i != this->RunningTests.end(); ++i)    {    cmCTestRunTest* p = *i;    if(!p->CheckOutput())      {      finished.push_back(p);      }    }  for( std::vector<cmCTestRunTest*>::iterator i = finished.begin();       i != finished.end(); ++i)    {    this->Completed++;    cmCTestRunTest* p = *i;    int test = p->GetIndex();    if(p->EndTest(this->Completed, this->Total, true))      {      this->Passed->push_back(p->GetTestProperties()->Name);      }    else      {      this->Failed->push_back(p->GetTestProperties()->Name);      }    for(TestMap::iterator j = this->Tests.begin();        j != this->Tests.end(); ++j)      {      j->second.erase(test);      }    this->TestFinishMap[test] = true;    this->TestRunningMap[test] = false;    this->RunningTests.erase(p);    this->WriteCheckpoint(test);    this->UnlockResources(test);    this->RunningCount -= GetProcessorsUsed(test);    delete p;    }  return true;}//---------------------------------------------------------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.c_str()))    {    cmsys::ifstream fin;    fin.open(fname.c_str());    std::string line;    while(std::getline(fin, line))      {      if(line == "---") break;      std::vector<cmsys::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(PropertiesMap::iterator i = temp.begin(); i != temp.end(); ++i)    {    fout << i->second->Name << " " << i->second->PreviousRuns << " "      << i->second->Cost << "\n";    }  // Write list of failed tests  fout << "---\n";  for(std::vector<std::string>::iterator i = this->Failed->begin();      i != this->Failed->end(); ++i)    {    fout << i->c_str() << "\n";    }  fout.close();  cmSystemTools::RenameFile(tmpout.c_str(), fname.c_str());}//---------------------------------------------------------void cmCTestMultiProcessHandler::ReadCostData(){  std::string fname = this->CTest->GetCostDataFile();  if(cmSystemTools::FileExists(fname.c_str(), true))    {    cmsys::ifstream fin;    fin.open(fname.c_str());    std::string line;    while(std::getline(fin, line))      {      if(line == "---") break;      std::vector<cmsys::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 != "")        {        this->LastTestsFailed.push_back(line);        }      }    fin.close();    }}//---------------------------------------------------------int cmCTestMultiProcessHandler::SearchByName(std::string name){  int index = -1;  for(PropertiesMap::iterator i = this->Properties.begin();      i != this->Properties.end(); ++i)    {    if(i->second->Name == name)      {      index = i->first;      }    }  return index;}//---------------------------------------------------------void cmCTestMultiProcessHandler::CreateTestCostList(){  if(this->ParallelLevel > 1)    {    CreateParallelTestCostList();    }  else    {    CreateSerialTestCostList();    }}//---------------------------------------------------------void cmCTestMultiProcessHandler::CreateParallelTestCostList(){  TestSet alreadySortedTests;  std::list<TestSet> priorityStack;  priorityStack.push_back(TestSet());  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(TestMap::const_iterator i = this->Tests.begin();    i != this->Tests.end(); ++i)    {    if(std::find(this->LastTestsFailed.begin(), this->LastTestsFailed.end(),       this->Properties[i->first]->Name) != this->LastTestsFailed.end())      {      //If the test failed last time, it should be run first.      this->SortedTests.push_back(i->first);      alreadySortedTests.insert(i->first);      }    else      {      topLevel.insert(i->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().size())    {    TestSet &previousSet = priorityStack.back();    priorityStack.push_back(TestSet());    TestSet ¤tSet = priorityStack.back();    for(TestSet::const_iterator i = previousSet.begin();      i != previousSet.end(); ++i)      {      TestSet const& dependencies = this->Tests[*i];      for(TestSet::const_iterator j = dependencies.begin();        j != dependencies.end(); ++j)        {        currentSet.insert(*j);        }      }    for(TestSet::const_iterator i = currentSet.begin();      i != currentSet.end(); ++i)      {      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(std::list<TestSet>::reverse_iterator i = priorityStack.rbegin();    i != priorityStack.rend(); ++i)    {    TestSet const& currentSet = *i;    TestComparator comp(this);    TestList sortedCopy;    for(TestSet::const_iterator j = currentSet.begin();      j != currentSet.end(); ++j)      {      sortedCopy.push_back(*j);      }    std::stable_sort(sortedCopy.begin(), sortedCopy.end(), comp);    for(TestList::const_iterator j = sortedCopy.begin();      j != sortedCopy.end(); ++j)      {      if(alreadySortedTests.find(*j) == alreadySortedTests.end())        {        this->SortedTests.push_back(*j);        alreadySortedTests.insert(*j);        }      }    }}//---------------------------------------------------------void cmCTestMultiProcessHandler::GetAllTestDependencies(    int test, TestList& dependencies){  TestSet const& dependencySet = this->Tests[test];  for(TestSet::const_iterator i = dependencySet.begin();    i != dependencySet.end(); ++i)    {    GetAllTestDependencies(*i, dependencies);    dependencies.push_back(*i);    }}//---------------------------------------------------------void cmCTestMultiProcessHandler::CreateSerialTestCostList(){  TestList presortedList;  for(TestMap::iterator i = this->Tests.begin();    i != this->Tests.end(); ++i)    {    presortedList.push_back(i->first);    }  TestComparator comp(this);  std::stable_sort(presortedList.begin(), presortedList.end(), comp);  TestSet alreadySortedTests;  for(TestList::const_iterator i = presortedList.begin();    i != presortedList.end(); ++i)    {      int test = *i;      if(alreadySortedTests.find(test) != alreadySortedTests.end())        {        continue;        }      TestList dependencies;      GetAllTestDependencies(test, dependencies);      for(TestList::const_iterator j = dependencies.begin();        j != dependencies.end(); ++j)        {        int testDependency = *j;        if(alreadySortedTests.find(testDependency) == alreadySortedTests.end())          {          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);}//---------------------------------------------------------//For ShowOnly modevoid cmCTestMultiProcessHandler::PrintTestList(){  this->TestHandler->SetMaxIndex(this->FindMaxIndex());  int count = 0;  for (PropertiesMap::iterator it = this->Properties.begin();       it != this->Properties.end(); ++it)    {    count++;    cmCTestTestHandler::cmCTestTestProperties& p = *it->second;    //push working dir    std::string current_dir = cmSystemTools::GetCurrentWorkingDirectory();    cmSystemTools::ChangeDirectory(p.Directory);    cmCTestRunTest testRun(this->TestHandler);    testRun.SetIndex(p.Index);    testRun.SetTestProperties(&p);    testRun.ComputeArguments(); //logs the command in verbose mode    if(p.Labels.size()) //print the labels      {      cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "Labels:");      }    for(std::vector<std::string>::iterator label = p.Labels.begin();        label != p.Labels.end(); ++label)      {      cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, " " << *label);      }    if(p.Labels.size()) //print the labels      {      cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, std::endl);      }    if (this->TestHandler->MemCheck)      {      cmCTestLog(this->CTest, HANDLER_OUTPUT, "  Memory Check");      }     else      {      cmCTestLog(this->CTest, HANDLER_OUTPUT, "  Test");      }    cmOStringStream indexStr;    indexStr << " #" << p.Index << ":";    cmCTestLog(this->CTest, HANDLER_OUTPUT,      std::setw(3 + getNumWidth(this->TestHandler->GetMaxIndex()))      << indexStr.str());    cmCTestLog(this->CTest, HANDLER_OUTPUT, " ");    cmCTestLog(this->CTest, HANDLER_OUTPUT, p.Name.c_str() << std::endl);    //pop working dir    cmSystemTools::ChangeDirectory(current_dir);    }  cmCTestLog(this->CTest, HANDLER_OUTPUT, std::endl << "Total Tests: "    << this->Total << std::endl);}void cmCTestMultiProcessHandler::PrintLabels(){  std::set<std::string> allLabels;  for (PropertiesMap::iterator it = this->Properties.begin();       it != this->Properties.end(); ++it)    {    cmCTestTestHandler::cmCTestTestProperties& p = *it->second;    allLabels.insert(p.Labels.begin(), p.Labels.end());    }  if(allLabels.size())    {    cmCTestLog(this->CTest, HANDLER_OUTPUT, "All Labels:" << std::endl);    }  else    {    cmCTestLog(this->CTest, HANDLER_OUTPUT, "No Labels Exist" << std::endl);    }  for(std::set<std::string>::iterator label = allLabels.begin();      label != allLabels.end(); ++label)    {    cmCTestLog(this->CTest, HANDLER_OUTPUT, "  " << *label << std::endl);    }}//---------------------------------------------------------void cmCTestMultiProcessHandler::CheckResume(){  std::string fname = this->CTest->GetBinaryDir()      + "/Testing/Temporary/CTestCheckpoint.txt";  if(this->CTest->GetFailover())    {    if(cmSystemTools::FileExists(fname.c_str(), 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.c_str(), 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;  cmCTestMultiProcessHandler::TestMap::iterator i = this->Tests.begin();  for(; i != this->Tests.end(); ++i)    {    if(i->first > max)      {      max = i->first;      }    }  return max;}//Returns true if no cycles exist in the dependency graphbool cmCTestMultiProcessHandler::CheckCycles(){  cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,             "Checking test dependency graph..." << std::endl);  for(TestMap::iterator it = this->Tests.begin();      it != this->Tests.end(); ++it)    {    //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(TestSet::iterator d = this->Tests[test].begin();            d != this->Tests[test].end(); ++d)          {          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;            }          else            {            s.push(*d);            }          }        }      }    }  cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,             "Checking test dependency graph end" << std::endl);  return true;}
 |