summaryrefslogtreecommitdiff
path: root/Source/CTest/cmCTestUploadHandler.cxx
blob: caf2e5370416483578d97e0657ff5b7233438efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*============================================================================
  CMake - Cross Platform Makefile Generator
  Copyright 2000-2009 Kitware, Inc.

  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 "cmCTestUploadHandler.h"

#include "cmGeneratedFileStream.h"
#include "cmVersion.h"
#include "cmXMLSafe.h"

//----------------------------------------------------------------------------
cmCTestUploadHandler::cmCTestUploadHandler()
{
  this->Initialize();
}

//----------------------------------------------------------------------------
void cmCTestUploadHandler::Initialize()
{
  this->Superclass::Initialize();
  this->Files.clear();
}

void cmCTestUploadHandler::SetFiles(const cmCTest::SetOfStrings& files)
{
  this->Files = files;
}

//----------------------------------------------------------------------------
int cmCTestUploadHandler::ProcessHandler()
{
  cmGeneratedFileStream ofs;
  if ( !this->CTest->OpenOutputFile(this->CTest->GetCurrentTag(),
                                    "Upload.xml", ofs))
    {
    cmCTestLog(this->CTest, ERROR_MESSAGE,
      "Cannot open Upload.xml file" << std::endl);
    return -1;
    }

  cmCTest::SetOfStrings::const_iterator it;
  ofs << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
     << "<?xml-stylesheet type=\"text/xsl\" "
    "href=\"Dart/Source/Server/XSL/Build.xsl "
    "<file:///Dart/Source/Server/XSL/Build.xsl> \"?>\n"
     << "<Site BuildName=\""
     << this->CTest->GetCTestConfiguration("BuildName")
     << "\" BuildStamp=\""
     << this->CTest->GetCurrentTag() << "-"
     << this->CTest->GetTestModelString() << "\" Name=\""
     << this->CTest->GetCTestConfiguration("Site") << "\" Generator=\"ctest"
     << cmVersion::GetCMakeVersion()
     << "\">\n";
  this->CTest->AddSiteProperties(ofs);
  ofs << "<Upload>\n";

  for ( it = this->Files.begin(); it != this->Files.end(); it ++ )
    {
    cmCTestLog(this->CTest, OUTPUT,
               "\tUpload file: " << it->c_str() << std::endl);
    ofs << "<File filename=\"" << cmXMLSafe(*it) << "\">\n"
       << "<Content encoding=\"base64\">\n";
    ofs << this->CTest->Base64EncodeFile(*it);
    ofs << "\n</Content>\n"
      << "</File>\n";
    }
  ofs << "</Upload>\n"
    << "</Site>\n";
  return 0;
}