CMake/Source/CTest/cmCTestSubmitHandler.h

102 lines
3.0 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. */
#ifndef cmCTestSubmitHandler_h
#define cmCTestSubmitHandler_h
2003-01-07 07:07:24 +03:00
#include <cmConfigure.h>
#include "cmCTest.h"
#include "cmCTestGenericHandler.h"
#include "cmTypeMacro.h"
#include <iosfwd>
#include <set>
#include <string>
#include <vector>
2003-01-07 07:07:24 +03:00
/** \class cmCTestSubmitHandler
2003-01-07 07:07:24 +03:00
* \brief Helper class for CTest
*
* Submit testing results
2011-10-13 21:51:18 +04:00
*
2003-01-07 07:07:24 +03:00
*/
class cmCTestSubmitHandler : public cmCTestGenericHandler
2003-01-07 07:07:24 +03:00
{
public:
cmTypeMacro(cmCTestSubmitHandler, cmCTestGenericHandler);
cmCTestSubmitHandler();
2016-06-27 23:44:16 +03:00
~cmCTestSubmitHandler() CM_OVERRIDE { this->LogFile = CM_NULLPTR; }
2003-04-02 00:30:32 +04:00
/*
* The main entry point for this class
2003-04-02 00:30:32 +04:00
*/
2016-06-27 22:25:27 +03:00
int ProcessHandler() CM_OVERRIDE;
2004-04-01 23:11:17 +04:00
2016-06-27 22:25:27 +03:00
void Initialize() CM_OVERRIDE;
/** Specify a set of parts (by name) to submit. */
void SelectParts(std::set<cmCTest::Part> const& parts);
/** Specify a set of files to submit. */
void SelectFiles(cmCTest::SetOfStrings const& files);
// handle the cdash file upload protocol
int HandleCDashUploadFile(std::string const& file, std::string const& type);
void ConstructCDashURL(std::string& dropMethod, std::string& url);
private:
2006-03-10 23:03:09 +03:00
void SetLogFile(std::ostream* ost) { this->LogFile = ost; }
2003-01-07 07:07:24 +03:00
/**
* Submit file using various ways
*/
bool SubmitUsingFTP(const std::string& localprefix,
const std::set<std::string>& files,
const std::string& remoteprefix, const std::string& url);
bool SubmitUsingHTTP(const std::string& localprefix,
const std::set<std::string>& files,
const std::string& remoteprefix,
const std::string& url);
bool SubmitUsingSCP(const std::string& scp_command,
const std::string& localprefix,
const std::set<std::string>& files,
const std::string& remoteprefix, const std::string& url);
bool SubmitUsingCP(const std::string& localprefix,
const std::set<std::string>& files,
const std::string& remoteprefix, const std::string& url);
bool TriggerUsingHTTP(const std::set<std::string>& files,
const std::string& remoteprefix,
const std::string& url);
bool SubmitUsingXMLRPC(const std::string& localprefix,
const std::set<std::string>& files,
const std::string& remoteprefix,
const std::string& url);
2011-03-20 16:22:39 +03:00
typedef std::vector<char> cmCTestSubmitHandlerVectorOfChar;
void ParseResponse(cmCTestSubmitHandlerVectorOfChar chunk);
std::string GetSubmitResultsPrefix();
class ResponseParser;
std::string HTTPProxy;
int HTTPProxyType;
std::string HTTPProxyAuth;
std::string FTPProxy;
int FTPProxyType;
2006-03-10 23:03:09 +03:00
std::ostream* LogFile;
bool SubmitPart[cmCTest::PartCount];
2008-02-29 22:58:33 +03:00
bool CDash;
bool HasWarnings;
bool HasErrors;
cmCTest::SetOfStrings Files;
2003-01-07 07:07:24 +03:00
};
#endif