2001-04-27 22:25:42 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-27 22:25:42 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
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
|
|
|
|
2003-06-23 22:10:12 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
// cmConfigureFileCommand
|
2001-09-20 23:08:30 +04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
m_InputFile = args[0];
|
|
|
|
m_OuputFile = args[1];
|
2001-05-08 02:11:16 +04:00
|
|
|
m_CopyOnly = false;
|
2001-06-22 19:15:18 +04:00
|
|
|
m_EscapeQuotes = false;
|
2005-06-13 17:33:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
// for CMake 2.0 and earlier CONFIGURE_FILE defaults to the FinalPass,
|
|
|
|
// after 2.0 it only does InitialPass
|
2001-08-03 23:47:19 +04:00
|
|
|
m_Immediate = false;
|
2005-06-13 17:33:38 +04:00
|
|
|
const char* versionValue
|
|
|
|
= m_Makefile->GetRequiredDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
|
|
|
|
if (atof(versionValue) > 2.0)
|
|
|
|
{
|
|
|
|
m_Immediate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-30 22:05:07 +03:00
|
|
|
m_AtOnly = false;
|
2001-08-03 23:47:19 +04:00
|
|
|
for(unsigned int i=2;i < args.size();++i)
|
2001-05-08 02:11:16 +04:00
|
|
|
{
|
2001-08-03 23:47:19 +04:00
|
|
|
if(args[i] == "COPYONLY")
|
2001-05-09 17:52:21 +04:00
|
|
|
{
|
2001-08-03 23:47:19 +04:00
|
|
|
m_CopyOnly = true;
|
2001-05-09 17:52:21 +04:00
|
|
|
}
|
2001-08-03 23:47:19 +04:00
|
|
|
else if(args[i] == "ESCAPE_QUOTES")
|
2001-06-22 19:15:18 +04:00
|
|
|
{
|
2001-08-03 23:47:19 +04:00
|
|
|
m_EscapeQuotes = true;
|
2001-06-22 19:15:18 +04:00
|
|
|
}
|
2001-10-30 22:05:07 +03:00
|
|
|
else if(args[i] == "@ONLY")
|
|
|
|
{
|
|
|
|
m_AtOnly = true;
|
|
|
|
}
|
2001-08-03 23:47:19 +04:00
|
|
|
else if(args[i] == "IMMEDIATE")
|
2001-06-22 19:15:18 +04:00
|
|
|
{
|
2001-08-03 23:47:19 +04:00
|
|
|
m_Immediate = true;
|
2001-06-22 19:15:18 +04:00
|
|
|
}
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
2001-08-03 23:47:19 +04:00
|
|
|
|
|
|
|
// If we were told to copy the file immediately, then do it on the
|
|
|
|
// first pass (now).
|
|
|
|
if(m_Immediate)
|
|
|
|
{
|
2004-03-29 01:00:57 +04:00
|
|
|
if ( !this->ConfigureFile() )
|
|
|
|
{
|
|
|
|
this->SetError("Problem configuring file");
|
|
|
|
return false;
|
|
|
|
}
|
2001-08-03 23:47:19 +04:00
|
|
|
}
|
|
|
|
|
2001-04-27 22:25:42 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
void cmConfigureFileCommand::FinalPass()
|
2001-08-03 23:47:19 +04:00
|
|
|
{
|
|
|
|
if(!m_Immediate)
|
|
|
|
{
|
|
|
|
this->ConfigureFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-29 01:00:57 +04:00
|
|
|
int cmConfigureFileCommand::ConfigureFile()
|
2001-04-27 22:25:42 +04:00
|
|
|
{
|
2005-07-08 00:01:35 +04:00
|
|
|
std::string inFile = m_InputFile;
|
|
|
|
if (!cmSystemTools::FileIsFullPath(inFile.c_str()))
|
|
|
|
{
|
|
|
|
inFile = m_Makefile->GetStartDirectory();
|
|
|
|
inFile += "/";
|
|
|
|
inFile += m_InputFile;
|
|
|
|
}
|
|
|
|
return m_Makefile->ConfigureFile(inFile.c_str(),
|
2004-03-09 03:05:04 +03:00
|
|
|
m_OuputFile.c_str(),
|
|
|
|
m_CopyOnly,
|
|
|
|
m_AtOnly,
|
|
|
|
m_EscapeQuotes);
|
2001-04-27 22:25:42 +04:00
|
|
|
}
|
|
|
|
|
2003-03-27 20:24:30 +03:00
|
|
|
|