diff options
author | Brad King <brad.king@kitware.com> | 2009-05-14 20:13:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-05-14 20:13:52 (GMT) |
commit | a524e07152728d652a29761b43b334b7aed390d6 (patch) | |
tree | deb1fd0082f7cad680d7686e30c21ec76a655ae5 /Source/CTest/cmCTestBZR.h | |
parent | ca3e9623e94f270e784dc621b1a38f455183882f (diff) | |
download | CMake-a524e07152728d652a29761b43b334b7aed390d6.zip CMake-a524e07152728d652a29761b43b334b7aed390d6.tar.gz CMake-a524e07152728d652a29761b43b334b7aed390d6.tar.bz2 |
ENH: Teach CTest to handle Bazaar repositories
This creates cmCTestBZR to drive CTest Update handling on bzr-based work
trees. Currently we always update to the head of the remote tracking
branch (bzr pull), so the nightly start time is ignored for Nightly
builds. A later change will address this. Patch from Tom Vercauteren.
See issue #6857.
Diffstat (limited to 'Source/CTest/cmCTestBZR.h')
-rw-r--r-- | Source/CTest/cmCTestBZR.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestBZR.h b/Source/CTest/cmCTestBZR.h new file mode 100644 index 0000000..ac8e346 --- /dev/null +++ b/Source/CTest/cmCTestBZR.h @@ -0,0 +1,60 @@ +/*========================================================================= + + Program: CMake - Cross-Platform Makefile Generator + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Kitware, Inc. All rights reserved. + See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#ifndef cmCTestBZR_h +#define cmCTestBZR_h + +#include "cmCTestGlobalVC.h" + +/** \class cmCTestBZR + * \brief Interaction with bzr command-line tool + * + */ +class cmCTestBZR: public cmCTestGlobalVC +{ +public: + /** Construct with a CTest instance and update log stream. */ + cmCTestBZR(cmCTest* ctest, std::ostream& log); + + virtual ~cmCTestBZR(); + +private: + // Implement cmCTestVC internal API. + virtual void NoteOldRevision(); + virtual void NoteNewRevision(); + virtual bool UpdateImpl(); + + // URL of repository directory checked out in the working tree. + std::string URL; + + std::string LoadInfo(); + void LoadModifications(); + void LoadRevisions(); + + // Parsing helper classes. + class InfoParser; + class RevnoParser; + class LogParser; + class UpdateParser; + class StatusParser; + friend class InfoParser; + friend class RevnoParser; + friend class LogParser; + friend class UpdateParser; + friend class StatusParser; +}; + +#endif |