CMake/Source/cmUseMangledMesaCommand.cxx

110 lines
3.7 KiB
C++
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2001-09-17 21:58:07 +04:00
#include "cmUseMangledMesaCommand.h"
2001-09-17 21:58:07 +04:00
#include "cmSystemTools.h"
#include <cmsys/FStream.hxx>
#include <cmsys/RegularExpression.hxx>
bool cmUseMangledMesaCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
if (this->Disallowed(
cmPolicies::CMP0030,
"The use_mangled_mesa command should not be called; see CMP0030.")) {
return true;
}
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())) {
2002-03-26 20:55:14 +03:00
std::string e = "Bad path to Mesa, could not find: ";
e += glh;
e += " ";
this->SetError(e);
2002-03-26 20:55:14 +03:00
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);
if (files.empty()) {
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;
}
2001-09-17 21:58:07 +04:00
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);
}
2001-09-17 21:58:07 +04:00
return true;
}
void cmUseMangledMesaCommand::CopyAndFullPathMesaHeader(const char* source,
const char* outdir)
2001-09-17 21:58:07 +04:00
{
std::string dir, file;
cmSystemTools::SplitProgramPath(source, dir, file);
std::string outFile = outdir;
outFile += "/";
outFile += file;
std::string tempOutputFile = outFile;
tempOutputFile += ".tmp";
cmsys::ofstream fout(tempOutputFile.c_str());
if (!fout) {
cmSystemTools::Error("Could not open file for write in copy operation: ",
2001-09-17 21:58:07 +04:00
tempOutputFile.c_str(), outdir);
cmSystemTools::ReportLastSystemError("");
2001-09-17 21:58:07 +04:00
return;
}
cmsys::ifstream fin(source);
if (!fin) {
2004-07-09 22:18:44 +04:00
cmSystemTools::Error("Could not open file for read in copy operation",
2001-09-17 21:58:07 +04:00
source);
return;
}
2003-02-14 17:54:15 +03:00
// now copy input to output and expand variables in the
2001-09-17 21:58:07 +04:00
// input file at the same time
std::string inLine;
2001-09-17 21:58:07 +04:00
// regular expression for any #include line
2006-03-10 21:54:57 +03:00
cmsys::RegularExpression includeLine(
"^[ \t]*#[ \t]*include[ \t]*[<\"]([^\">]+)[\">]");
2001-09-17 21:58:07 +04:00
// regular expression for gl/ or GL/ in a file (match(1) of above)
cmsys::RegularExpression glDirLine("(gl|GL)(/|\\\\)([^<\"]+)");
2001-09-17 21:58:07 +04:00
// regular expression for gl GL or xmesa in a file (match(1) of above)
cmsys::RegularExpression glLine("(gl|GL|xmesa)");
while (cmSystemTools::GetLineFromStream(fin, inLine)) {
if (includeLine.find(inLine.c_str())) {
std::string includeFile = includeLine.match(1);
if (glDirLine.find(includeFile.c_str())) {
std::string gfile = glDirLine.match(3);
fout << "#include \"" << outdir << "/" << gfile << "\"\n";
} else if (glLine.find(includeFile.c_str())) {
fout << "#include \"" << outdir << "/" << includeLine.match(1)
<< "\"\n";
} else {
2001-09-17 21:58:07 +04:00
fout << inLine << "\n";
}
} else {
fout << inLine << "\n";
2001-09-17 21:58:07 +04:00
}
}
2001-09-17 21:58:07 +04:00
// close the files before attempting to copy
fin.close();
fout.close();
cmSystemTools::CopyFileIfDifferent(tempOutputFile.c_str(), outFile.c_str());
2001-09-17 21:58:07 +04:00
cmSystemTools::RemoveFile(tempOutputFile.c_str());
}