CMake/Source/cmUseMangledMesaCommand.cxx

138 lines
4.1 KiB
C++
Raw Normal View History

2001-09-17 21:58:07 +04:00
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
2002-01-21 23:30:43 +03:00
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
2001-09-17 21:58:07 +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-09-17 21:58:07 +04:00
=========================================================================*/
#include "cmUseMangledMesaCommand.h"
#include "cmSystemTools.h"
// cmUseMangledMesaCommand
bool cmUseMangledMesaCommand::InitialPass(std::vector<std::string> const& args)
2001-09-17 21:58:07 +04:00
{
// expected two arguments:
// arguement one: the full path to gl_mangle.h
// arguement two : directory for output of edited headers
if(args.size() < 2)
2001-09-17 21:58:07 +04:00
{
this->SetError("called with incorrect number of arguments");
return false;
}
2001-09-18 00:36:04 +04:00
const char* inputDir = args[0].c_str();
2002-03-26 20:55:14 +03:00
std::string glh = inputDir;
glh += "/";
glh += "gl.h";
if(!cmSystemTools::FileExists(glh.c_str()))
{
std::string e = "Bad path to Mesa, could not find: ";
e += glh;
e += " ";
this->SetError(e.c_str());
return false;
}
2001-09-17 21:58:07 +04:00
const char* destDir = args[1].c_str();
std::vector<std::string> files;
2001-09-18 00:36:04 +04:00
cmSystemTools::Glob(inputDir, "\\.h$", files);
2001-09-17 21:58:07 +04:00
if(files.size() == 0)
{
2001-09-18 00:36:04 +04:00
cmSystemTools::Error("Could not open Mesa Directory ", inputDir);
2001-09-17 21:58:07 +04:00
return false;
}
cmSystemTools::MakeDirectory(destDir);
for(std::vector<std::string>::iterator i = files.begin();
i != files.end(); ++i)
{
2001-09-18 00:36:04 +04:00
std::string path = inputDir;
2001-09-17 21:58:07 +04:00
path += "/";
path += *i;
this->CopyAndFullPathMesaHeader(path.c_str(), destDir);
}
return true;
}
void
cmUseMangledMesaCommand::
CopyAndFullPathMesaHeader(const char* source,
const char* outdir)
{
std::string dir, file;
cmSystemTools::SplitProgramPath(source, dir, file);
std::string outFile = outdir;
outFile += "/";
outFile += file;
std::string tempOutputFile = outFile;
tempOutputFile += ".tmp";
std::ofstream fout(tempOutputFile.c_str());
if(!fout)
{
cmSystemTools::Error("Could not open file for write in copy operatation: ",
tempOutputFile.c_str(), outdir);
return;
}
std::ifstream fin(source);
if(!fin)
{
cmSystemTools::Error("Could not open file for read in copy operatation",
source);
return;
}
// now copy input to output and expand varibles in the
// input file at the same time
const int bufSize = 4096;
char buffer[bufSize];
std::string inLine;
// regular expression for any #include line
cmRegularExpression includeLine("^[ \t]*#[ \t]*include[ \t]*[<\"]([^\">]+)[\">]");
// regular expression for gl/ or GL/ in a file (match(1) of above)
cmRegularExpression glDirLine("(gl|GL)(/|\\\\)([^<\"]+)");
// regular expression for gl GL or xmesa in a file (match(1) of above)
cmRegularExpression glLine("(gl|GL|xmesa)");
while(fin)
{
fin.getline(buffer, bufSize);
if(fin)
{
inLine = buffer;
if(includeLine.find(inLine.c_str()))
{
std::string includeFile = includeLine.match(1);
if(glDirLine.find(includeFile.c_str()))
{
std::string file = glDirLine.match(3);
fout << "#include \"" << outdir << "/" << file.c_str() << "\"\n";
}
else if(glLine.find(includeFile.c_str()))
{
fout << "#include \"" << outdir << "/" << includeLine.match(1).c_str() << "\"\n";
}
else
{
fout << inLine << "\n";
}
}
else
{
fout << inLine << "\n";
}
}
}
// close the files before attempting to copy
fin.close();
fout.close();
cmSystemTools::CopyFileIfDifferent(tempOutputFile.c_str(),
outFile.c_str());
cmSystemTools::RemoveFile(tempOutputFile.c_str());
}