CMake/Source/cmConfigureFileCommand.cxx

119 lines
3.0 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, cmExecutionStatus &)
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];
if ( !this->Makefile->CanIWriteThisFile(this->OuputFile.c_str()) )
{
2006-05-10 22:15:15 +04:00
std::string e = "attempted to configure a file: " + this->OuputFile
+ " into a source directory.";
this->SetError(e.c_str());
cmSystemTools::SetFatalErrorOccured();
return false;
}
2006-03-15 19:02:08 +03:00
this->CopyOnly = false;
this->EscapeQuotes = false;
// for CMake 2.0 and earlier CONFIGURE_FILE defaults to the FinalPass,
2008-03-05 19:41:25 +03:00
// after 2.0 it only does InitialPass, this is policy CMP_0003
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP_0003))
{
case cmPolicies::WARN:
cmSystemTools::Message(
this->Makefile->GetPolicies()->GetPolicyWarning
(cmPolicies::CMP_0003).c_str(),"Warning");
case cmPolicies::OLD:
this->Immediate = false;
break;
default:
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
}