CMake/Source/cmConfigureFileCommand.cxx

106 lines
2.5 KiB
C++
Raw Normal View History

2001-04-27 22:25:42 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2001-04-27 22:25:42 +04:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2001-04-27 22:25:42 +04:00
2002-01-21 23:30:43 +03:00
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.
2001-04-27 22:25:42 +04:00
=========================================================================*/
2001-05-08 02:11:16 +04:00
#include "cmConfigureFileCommand.h"
2001-04-27 22:25:42 +04:00
#include <cmsys/RegularExpression.hxx>
2001-05-08 02:11:16 +04:00
// cmConfigureFileCommand
bool cmConfigureFileCommand::InitialPass(std::vector<std::string> const& args)
2001-04-27 22:25:42 +04:00
{
2001-05-08 02:11:16 +04:00
if(args.size() < 2 )
2001-04-27 22:25:42 +04:00
{
this->SetError("called with incorrect number of arguments, expected 2");
return false;
}
2006-03-15 19:02:08 +03:00
this->InputFile = args[0];
this->OuputFile = args[1];
this->CopyOnly = false;
this->EscapeQuotes = false;
// for CMake 2.0 and earlier CONFIGURE_FILE defaults to the FinalPass,
// after 2.0 it only does InitialPass
2006-03-15 19:02:08 +03:00
this->Immediate = false;
const char* versionValue
2006-03-15 19:02:08 +03:00
= this->Makefile->GetRequiredDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
if (atof(versionValue) > 2.0)
{
2006-03-15 19:02:08 +03:00
this->Immediate = true;
}
2006-03-15 19:02:08 +03:00
this->AtOnly = false;
for(unsigned int i=2;i < args.size();++i)
2001-05-08 02:11:16 +04:00
{
if(args[i] == "COPYONLY")
2001-05-09 17:52:21 +04:00
{
2006-03-15 19:02:08 +03:00
this->CopyOnly = true;
2001-05-09 17:52:21 +04:00
}
else if(args[i] == "ESCAPE_QUOTES")
2001-06-22 19:15:18 +04:00
{
2006-03-15 19:02:08 +03:00
this->EscapeQuotes = true;
2001-06-22 19:15:18 +04:00
}
else if(args[i] == "@ONLY")
{
2006-03-15 19:02:08 +03:00
this->AtOnly = true;
}
else if(args[i] == "IMMEDIATE")
2001-06-22 19:15:18 +04:00
{
2006-03-15 19:02:08 +03:00
this->Immediate = true;
2001-06-22 19:15:18 +04:00
}
2001-05-08 02:11:16 +04:00
}
// If we were told to copy the file immediately, then do it on the
// first pass (now).
2006-03-15 19:02:08 +03:00
if(this->Immediate)
{
if ( !this->ConfigureFile() )
{
this->SetError("Problem configuring file");
return false;
}
}
2001-04-27 22:25:42 +04:00
return true;
}
2001-05-08 02:11:16 +04:00
void cmConfigureFileCommand::FinalPass()
{
2006-03-15 19:02:08 +03:00
if(!this->Immediate)
{
this->ConfigureFile();
}
}
int cmConfigureFileCommand::ConfigureFile()
2001-04-27 22:25:42 +04:00
{
2006-03-15 19:02:08 +03:00
std::string inFile = this->InputFile;
if (!cmSystemTools::FileIsFullPath(inFile.c_str()))
{
2006-03-15 19:02:08 +03:00
inFile = this->Makefile->GetStartDirectory();
inFile += "/";
2006-03-15 19:02:08 +03:00
inFile += this->InputFile;
}
2006-03-15 19:02:08 +03:00
return this->Makefile->ConfigureFile(inFile.c_str(),
this->OuputFile.c_str(),
this->CopyOnly,
this->AtOnly,
this->EscapeQuotes);
2001-04-27 22:25:42 +04:00
}