CMake/Source/CTest/cmCTestSubmitHandler.h

111 lines
3.4 KiB
C
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2003-01-07 07:07:24 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2003-01-07 07:07:24 +03:00
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.
============================================================================*/
#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