cmake/Source/cmDependsFortran.cxx

678 lines
23 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmDependsFortran.h"
2020-02-01 23:06:01 +01:00
#include <cassert>
#include <cstdlib>
2016-10-30 18:24:19 +01:00
#include <iostream>
#include <map>
#include <utility>
2020-02-01 23:06:01 +01:00
#include "cmsys/FStream.hxx"
2017-04-14 19:02:05 +02:00
#include "cmFortranParser.h" /* Interface to parser object. */
#include "cmGeneratedFileStream.h"
2020-08-30 11:54:41 +02:00
#include "cmLocalUnixMakefileGenerator3.h"
2017-04-14 19:02:05 +02:00
#include "cmMakefile.h"
#include "cmOutputConverter.h"
#include "cmStateDirectory.h"
#include "cmStateSnapshot.h"
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
2017-04-14 19:02:05 +02:00
#include "cmSystemTools.h"
// TODO: Test compiler for the case of the mod file. Some always
// use lower case and some always use upper case. I do not know if any
// use the case from the source code.
2018-08-09 18:06:22 +02:00
static void cmFortranModuleAppendUpperLower(std::string const& mod,
std::string& mod_upper,
std::string& mod_lower)
{
std::string::size_type ext_len = 0;
2020-08-30 11:54:41 +02:00
if (cmHasLiteralSuffix(mod, ".mod") || cmHasLiteralSuffix(mod, ".sub")) {
2018-08-09 18:06:22 +02:00
ext_len = 4;
} else if (cmHasLiteralSuffix(mod, ".smod")) {
ext_len = 5;
}
std::string const& name = mod.substr(0, mod.size() - ext_len);
std::string const& ext = mod.substr(mod.size() - ext_len);
mod_upper += cmSystemTools::UpperCase(name) + ext;
mod_lower += mod;
}
class cmDependsFortranInternals
{
public:
// The set of modules provided by this target.
2015-04-27 22:25:09 +02:00
std::set<std::string> TargetProvides;
// Map modules required by this target to locations.
2020-02-01 23:06:01 +01:00
using TargetRequiresMap = std::map<std::string, std::string>;
TargetRequiresMap TargetRequires;
// Information about each object file.
2020-02-01 23:06:01 +01:00
using ObjectInfoMap = std::map<std::string, cmFortranSourceInfo>;
ObjectInfoMap ObjectInfo;
2019-11-11 23:01:05 +01:00
cmFortranSourceInfo& CreateObjectInfo(const std::string& obj,
const std::string& src)
2016-07-09 11:21:54 +02:00
{
2020-02-01 23:06:01 +01:00
auto i = this->ObjectInfo.find(obj);
2016-07-09 11:21:54 +02:00
if (i == this->ObjectInfo.end()) {
std::map<std::string, cmFortranSourceInfo>::value_type entry(
obj, cmFortranSourceInfo());
i = this->ObjectInfo.insert(entry).first;
i->second.Source = src;
}
2016-07-09 11:21:54 +02:00
return i->second;
}
};
2019-11-11 23:01:05 +01:00
cmDependsFortran::cmDependsFortran() = default;
2020-08-30 11:54:41 +02:00
cmDependsFortran::cmDependsFortran(cmLocalUnixMakefileGenerator3* lg)
2016-07-09 11:21:54 +02:00
: cmDepends(lg)
, Internal(new cmDependsFortranInternals)
{
2009-05-01 17:43:35 +03:00
// Configure the include file search path.
this->SetIncludePathFromLanguage("Fortran");
// Get the list of definitions.
std::vector<std::string> definitions;
cmMakefile* mf = this->LocalGenerator->GetMakefile();
2020-08-30 11:54:41 +02:00
mf->GetDefExpandList("CMAKE_TARGET_DEFINITIONS_Fortran", definitions);
// translate i.e. FOO=BAR to FOO and add it to the list of defined
// preprocessor symbols
2018-01-26 17:06:56 +01:00
for (std::string def : definitions) {
2016-07-09 11:21:54 +02:00
std::string::size_type assignment = def.find('=');
if (assignment != std::string::npos) {
2018-01-26 17:06:56 +01:00
def = def.substr(0, assignment);
}
2016-07-09 11:21:54 +02:00
this->PPDefinitions.insert(def);
}
2019-11-11 23:01:05 +01:00
this->CompilerId = mf->GetSafeDefinition("CMAKE_Fortran_COMPILER_ID");
this->SModSep = mf->GetSafeDefinition("CMAKE_Fortran_SUBMODULE_SEP");
this->SModExt = mf->GetSafeDefinition("CMAKE_Fortran_SUBMODULE_EXT");
}
2020-08-30 11:54:41 +02:00
cmDependsFortran::~cmDependsFortran() = default;
2016-07-09 11:21:54 +02:00
bool cmDependsFortran::WriteDependencies(const std::set<std::string>& sources,
2016-10-30 18:24:19 +01:00
const std::string& obj,
std::ostream& /*makeDepends*/,
std::ostream& /*internalDepends*/)
{
// Make sure this is a scanning instance.
2016-07-09 11:21:54 +02:00
if (sources.empty() || sources.begin()->empty()) {
2013-03-16 19:13:01 +02:00
cmSystemTools::Error("Cannot scan dependencies without a source file.");
return false;
2016-07-09 11:21:54 +02:00
}
if (obj.empty()) {
cmSystemTools::Error("Cannot scan dependencies without an object file.");
return false;
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
cmFortranCompiler fc;
fc.Id = this->CompilerId;
fc.SModSep = this->SModSep;
fc.SModExt = this->SModExt;
2013-03-16 19:13:01 +02:00
bool okay = true;
2018-01-26 17:06:56 +01:00
for (std::string const& src : sources) {
2013-03-16 19:13:01 +02:00
// Get the information object for this source.
2019-11-11 23:01:05 +01:00
cmFortranSourceInfo& info = this->Internal->CreateObjectInfo(obj, src);
2015-11-17 17:22:37 +01:00
// Create the parser object. The constructor takes info by reference,
// so we may look into the resulting objects later.
2019-11-11 23:01:05 +01:00
cmFortranParser parser(fc, this->IncludePath, this->PPDefinitions, info);
2013-03-16 19:13:01 +02:00
// Push on the starting file.
2015-11-17 17:22:37 +01:00
cmFortranParser_FilePush(&parser, src.c_str());
2013-03-16 19:13:01 +02:00
// Parse the translation unit.
2016-07-09 11:21:54 +02:00
if (cmFortran_yyparse(parser.Scanner) != 0) {
2013-03-16 19:13:01 +02:00
// Failed to parse the file. Report failure to write dependencies.
okay = false;
2016-10-30 18:24:19 +01:00
/* clang-format off */
std::cerr <<
"warning: failed to parse dependencies from Fortran source "
"'" << src << "': " << parser.Error << std::endl
;
/* clang-format on */
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
return okay;
}
bool cmDependsFortran::Finalize(std::ostream& makeDepends,
std::ostream& internalDepends)
{
// Prepare the module search process.
this->LocateModules();
// Get the directory in which stamp files will be stored.
2019-11-11 23:01:05 +01:00
const std::string& stamp_dir = this->TargetDirectory;
// Get the directory in which module files will be created.
cmMakefile* mf = this->LocalGenerator->GetMakefile();
2015-11-17 17:22:37 +01:00
std::string mod_dir =
mf->GetSafeDefinition("CMAKE_Fortran_TARGET_MODULE_DIR");
2016-07-09 11:21:54 +02:00
if (mod_dir.empty()) {
mod_dir = this->LocalGenerator->GetCurrentBinaryDirectory();
}
// Actually write dependencies to the streams.
2020-02-01 23:06:01 +01:00
using ObjectInfoMap = cmDependsFortranInternals::ObjectInfoMap;
ObjectInfoMap const& objInfo = this->Internal->ObjectInfo;
2018-01-26 17:06:56 +01:00
for (auto const& i : objInfo) {
2019-11-11 23:01:05 +01:00
if (!this->WriteDependenciesReal(i.first, i.second, mod_dir, stamp_dir,
makeDepends, internalDepends)) {
return false;
}
2016-07-09 11:21:54 +02:00
}
// Store the list of modules provided by this target.
2020-02-01 23:06:01 +01:00
std::string fiName = cmStrCat(this->TargetDirectory, "/fortran.internal");
2018-10-28 12:09:07 +01:00
cmGeneratedFileStream fiStream(fiName);
fiStream << "# The fortran modules provided by this target.\n";
fiStream << "provides\n";
2015-04-27 22:25:09 +02:00
std::set<std::string> const& provides = this->Internal->TargetProvides;
2018-01-26 17:06:56 +01:00
for (std::string const& i : provides) {
2020-08-30 11:54:41 +02:00
fiStream << ' ' << i << '\n';
2016-07-09 11:21:54 +02:00
}
// Create a script to clean the modules.
2016-07-09 11:21:54 +02:00
if (!provides.empty()) {
2020-02-01 23:06:01 +01:00
std::string fcName =
cmStrCat(this->TargetDirectory, "/cmake_clean_Fortran.cmake");
2018-10-28 12:09:07 +01:00
cmGeneratedFileStream fcStream(fcName);
fcStream << "# Remove fortran modules provided by this target.\n";
fcStream << "FILE(REMOVE";
2016-10-30 18:24:19 +01:00
std::string currentBinDir =
this->LocalGenerator->GetCurrentBinaryDirectory();
2018-01-26 17:06:56 +01:00
for (std::string const& i : provides) {
2020-02-01 23:06:01 +01:00
std::string mod_upper = cmStrCat(mod_dir, '/');
std::string mod_lower = cmStrCat(mod_dir, '/');
2018-08-09 18:06:22 +02:00
cmFortranModuleAppendUpperLower(i, mod_upper, mod_lower);
2020-02-01 23:06:01 +01:00
std::string stamp = cmStrCat(stamp_dir, '/', i, ".stamp");
2020-08-30 11:54:41 +02:00
fcStream << "\n"
" \""
2017-04-14 19:02:05 +02:00
<< this->MaybeConvertToRelativePath(currentBinDir, mod_lower)
2020-08-30 11:54:41 +02:00
<< "\"\n"
" \""
2017-04-14 19:02:05 +02:00
<< this->MaybeConvertToRelativePath(currentBinDir, mod_upper)
2020-08-30 11:54:41 +02:00
<< "\"\n"
" \""
2017-04-14 19:02:05 +02:00
<< this->MaybeConvertToRelativePath(currentBinDir, stamp)
<< "\"\n";
}
2016-07-09 11:21:54 +02:00
fcStream << " )\n";
}
return true;
}
void cmDependsFortran::LocateModules()
{
// Collect the set of modules provided and required by all sources.
2020-02-01 23:06:01 +01:00
using ObjectInfoMap = cmDependsFortranInternals::ObjectInfoMap;
ObjectInfoMap const& objInfo = this->Internal->ObjectInfo;
2018-01-26 17:06:56 +01:00
for (auto const& infoI : objInfo) {
cmFortranSourceInfo const& info = infoI.second;
2015-04-27 22:25:09 +02:00
// Include this module in the set provided by this target.
this->Internal->TargetProvides.insert(info.Provides.begin(),
info.Provides.end());
2018-01-26 17:06:56 +01:00
for (std::string const& r : info.Requires) {
this->Internal->TargetRequires[r].clear();
}
2016-07-09 11:21:54 +02:00
}
// Short-circuit for simple targets.
2016-07-09 11:21:54 +02:00
if (this->Internal->TargetRequires.empty()) {
return;
2016-07-09 11:21:54 +02:00
}
// Match modules provided by this target to those it requires.
this->MatchLocalModules();
// Load information about other targets.
cmMakefile* mf = this->LocalGenerator->GetMakefile();
std::vector<std::string> infoFiles;
2020-08-30 11:54:41 +02:00
mf->GetDefExpandList("CMAKE_TARGET_LINKED_INFO_FILES", infoFiles);
2018-01-26 17:06:56 +01:00
for (std::string const& i : infoFiles) {
std::string targetDir = cmSystemTools::GetFilenamePath(i);
std::string fname = targetDir + "/fortran.internal";
2014-08-03 19:52:23 +02:00
cmsys::ifstream fin(fname.c_str());
2016-07-09 11:21:54 +02:00
if (fin) {
2019-11-11 23:01:05 +01:00
this->MatchRemoteModules(fin, targetDir);
}
2016-07-09 11:21:54 +02:00
}
}
void cmDependsFortran::MatchLocalModules()
{
2019-11-11 23:01:05 +01:00
std::string const& stampDir = this->TargetDirectory;
2015-04-27 22:25:09 +02:00
std::set<std::string> const& provides = this->Internal->TargetProvides;
2018-01-26 17:06:56 +01:00
for (std::string const& i : provides) {
2019-11-11 23:01:05 +01:00
this->ConsiderModule(i, stampDir);
2016-07-09 11:21:54 +02:00
}
}
void cmDependsFortran::MatchRemoteModules(std::istream& fin,
2019-11-11 23:01:05 +01:00
const std::string& stampDir)
{
std::string line;
bool doing_provides = false;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
// Ignore comments and empty lines.
2016-07-09 11:21:54 +02:00
if (line.empty() || line[0] == '#' || line[0] == '\r') {
continue;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (line[0] == ' ') {
if (doing_provides) {
2018-08-09 18:06:22 +02:00
std::string mod = line;
if (!cmHasLiteralSuffix(mod, ".mod") &&
2020-02-01 23:06:01 +01:00
!cmHasLiteralSuffix(mod, ".smod") &&
!cmHasLiteralSuffix(mod, ".sub")) {
2018-08-09 18:06:22 +02:00
// Support fortran.internal files left by older versions of CMake.
// They do not include the ".mod" extension.
mod += ".mod";
}
2019-11-11 23:01:05 +01:00
this->ConsiderModule(mod.substr(1), stampDir);
}
2016-07-09 11:21:54 +02:00
} else if (line == "provides") {
doing_provides = true;
2016-07-09 11:21:54 +02:00
} else {
doing_provides = false;
}
2016-07-09 11:21:54 +02:00
}
}
2019-11-11 23:01:05 +01:00
void cmDependsFortran::ConsiderModule(const std::string& name,
const std::string& stampDir)
{
// Locate each required module.
2020-02-01 23:06:01 +01:00
auto required = this->Internal->TargetRequires.find(name);
2016-07-09 11:21:54 +02:00
if (required != this->Internal->TargetRequires.end() &&
required->second.empty()) {
// The module is provided by a CMake target. It will have a stamp file.
2020-02-01 23:06:01 +01:00
std::string stampFile = cmStrCat(stampDir, '/', name, ".stamp");
required->second = stampFile;
2016-07-09 11:21:54 +02:00
}
}
2019-11-11 23:01:05 +01:00
bool cmDependsFortran::WriteDependenciesReal(std::string const& obj,
2016-07-09 11:21:54 +02:00
cmFortranSourceInfo const& info,
std::string const& mod_dir,
2019-11-11 23:01:05 +01:00
std::string const& stamp_dir,
2016-07-09 11:21:54 +02:00
std::ostream& makeDepends,
std::ostream& internalDepends)
{
// Get the source file for this object.
2019-11-11 23:01:05 +01:00
std::string const& src = info.Source;
// Write the include dependencies to the output stream.
2016-10-30 18:24:19 +01:00
std::string binDir = this->LocalGenerator->GetBinaryDirectory();
2017-04-14 19:02:05 +02:00
std::string obj_i = this->MaybeConvertToRelativePath(binDir, obj);
2018-04-23 21:13:27 +02:00
std::string obj_m = cmSystemTools::ConvertToOutputPath(obj_i);
2020-08-30 11:54:41 +02:00
internalDepends << obj_i << "\n " << src << '\n';
2018-01-26 17:06:56 +01:00
for (std::string const& i : info.Includes) {
2017-04-14 19:02:05 +02:00
makeDepends << obj_m << ": "
<< cmSystemTools::ConvertToOutputPath(
2018-04-23 21:13:27 +02:00
this->MaybeConvertToRelativePath(binDir, i))
2020-08-30 11:54:41 +02:00
<< '\n';
internalDepends << ' ' << i << '\n';
2016-07-09 11:21:54 +02:00
}
2020-08-30 11:54:41 +02:00
makeDepends << '\n';
// Write module requirements to the output stream.
2018-01-26 17:06:56 +01:00
for (std::string const& i : info.Requires) {
// Require only modules not provided in the same source.
2018-01-26 17:06:56 +01:00
if (info.Provides.find(i) != info.Provides.cend()) {
continue;
2016-07-09 11:21:54 +02:00
}
// The object file should depend on timestamped files for the
// modules it uses.
2020-02-01 23:06:01 +01:00
auto required = this->Internal->TargetRequires.find(i);
2016-07-09 11:21:54 +02:00
if (required == this->Internal->TargetRequires.end()) {
abort();
}
if (!required->second.empty()) {
// This module is known. Depend on its timestamp file.
2016-10-30 18:24:19 +01:00
std::string stampFile = cmSystemTools::ConvertToOutputPath(
2018-04-23 21:13:27 +02:00
this->MaybeConvertToRelativePath(binDir, required->second));
2020-08-30 11:54:41 +02:00
makeDepends << obj_m << ": " << stampFile << '\n';
2016-07-09 11:21:54 +02:00
} else {
// This module is not known to CMake. Try to locate it where
// the compiler will and depend on that.
std::string module;
2018-01-26 17:06:56 +01:00
if (this->FindModule(i, module)) {
2016-10-30 18:24:19 +01:00
module = cmSystemTools::ConvertToOutputPath(
2018-04-23 21:13:27 +02:00
this->MaybeConvertToRelativePath(binDir, module));
2020-08-30 11:54:41 +02:00
makeDepends << obj_m << ": " << module << '\n';
}
}
2016-07-09 11:21:54 +02:00
}
// If any modules are provided then they must be converted to stamp files.
2016-07-09 11:21:54 +02:00
if (!info.Provides.empty()) {
// Create a target to copy the module after the object file
// changes.
2018-01-26 17:06:56 +01:00
for (std::string const& i : info.Provides) {
// Include this module in the set provided by this target.
2018-01-26 17:06:56 +01:00
this->Internal->TargetProvides.insert(i);
// Always use lower case for the mod stamp file name. The
// cmake_copy_f90_mod will call back to this class, which will
// try various cases for the real mod file name.
2020-02-01 23:06:01 +01:00
std::string modFile = cmStrCat(mod_dir, '/', i);
2016-10-30 18:24:19 +01:00
modFile = this->LocalGenerator->ConvertToOutputFormat(
2017-04-14 19:02:05 +02:00
this->MaybeConvertToRelativePath(binDir, modFile),
2016-10-30 18:24:19 +01:00
cmOutputConverter::SHELL);
2020-02-01 23:06:01 +01:00
std::string stampFile = cmStrCat(stamp_dir, '/', i, ".stamp");
2018-04-23 21:13:27 +02:00
stampFile = this->MaybeConvertToRelativePath(binDir, stampFile);
std::string const stampFileForShell =
this->LocalGenerator->ConvertToOutputFormat(stampFile,
cmOutputConverter::SHELL);
std::string const stampFileForMake =
cmSystemTools::ConvertToOutputPath(stampFile);
makeDepends << obj_m << ".provides.build"
2020-08-30 11:54:41 +02:00
<< ": " << stampFileForMake << '\n';
2018-04-23 21:13:27 +02:00
// Note that when cmake_copy_f90_mod finds that a module file
// and the corresponding stamp file have no differences, the stamp
// file is not updated. In such case the stamp file will be always
// older than its prerequisite and trigger cmake_copy_f90_mod
// on each new build. This is expected behavior for incremental
// builds and can not be changed without preforming recursive make
// calls that would considerably slow down the building process.
2020-08-30 11:54:41 +02:00
makeDepends << stampFileForMake << ": " << obj_m << '\n';
2016-07-09 11:21:54 +02:00
makeDepends << "\t$(CMAKE_COMMAND) -E cmake_copy_f90_mod " << modFile
2020-08-30 11:54:41 +02:00
<< ' ' << stampFileForShell;
cmMakefile* mf = this->LocalGenerator->GetMakefile();
const char* cid = mf->GetDefinition("CMAKE_Fortran_COMPILER_ID");
2016-07-09 11:21:54 +02:00
if (cid && *cid) {
2020-08-30 11:54:41 +02:00
makeDepends << ' ' << cid;
}
2020-08-30 11:54:41 +02:00
makeDepends << '\n';
2016-07-09 11:21:54 +02:00
}
2018-04-23 21:13:27 +02:00
makeDepends << obj_m << ".provides.build:\n";
// After copying the modules update the timestamp file.
2015-04-27 22:25:09 +02:00
makeDepends << "\t$(CMAKE_COMMAND) -E touch " << obj_m
<< ".provides.build\n";
// Make sure the module timestamp rule is evaluated by the time
// the target finishes building.
2020-02-01 23:06:01 +01:00
std::string driver = cmStrCat(this->TargetDirectory, "/build");
2016-10-30 18:24:19 +01:00
driver = cmSystemTools::ConvertToOutputPath(
2018-04-23 21:13:27 +02:00
this->MaybeConvertToRelativePath(binDir, driver));
2015-04-27 22:25:09 +02:00
makeDepends << driver << ": " << obj_m << ".provides.build\n";
2016-07-09 11:21:54 +02:00
}
return true;
}
2016-07-09 11:21:54 +02:00
bool cmDependsFortran::FindModule(std::string const& name, std::string& module)
{
// Construct possible names for the module file.
2018-08-09 18:06:22 +02:00
std::string mod_upper;
std::string mod_lower;
cmFortranModuleAppendUpperLower(name, mod_upper, mod_lower);
// Search the include path for the module.
std::string fullName;
2018-01-26 17:06:56 +01:00
for (std::string const& ip : this->IncludePath) {
// Try the lower-case name.
2020-02-01 23:06:01 +01:00
fullName = cmStrCat(ip, '/', mod_lower);
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileExists(fullName, true)) {
module = fullName;
return true;
2016-07-09 11:21:54 +02:00
}
// Try the upper-case name.
2020-02-01 23:06:01 +01:00
fullName = cmStrCat(ip, '/', mod_upper);
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileExists(fullName, true)) {
module = fullName;
return true;
}
2016-07-09 11:21:54 +02:00
}
return false;
}
bool cmDependsFortran::CopyModule(const std::vector<std::string>& args)
{
// Implements
//
// $(CMAKE_COMMAND) -E cmake_copy_f90_mod input.mod output.mod.stamp
// [compiler-id]
//
// Note that the case of the .mod file depends on the compiler. In
// the future this copy could also account for the fact that some
// compilers include a timestamp in the .mod file so it changes even
// when the interface described in the module does not.
std::string mod = args[2];
std::string stamp = args[3];
std::string compilerId;
2016-07-09 11:21:54 +02:00
if (args.size() >= 5) {
compilerId = args[4];
2016-07-09 11:21:54 +02:00
}
2020-02-01 23:06:01 +01:00
if (!cmHasLiteralSuffix(mod, ".mod") && !cmHasLiteralSuffix(mod, ".smod") &&
!cmHasLiteralSuffix(mod, ".sub")) {
2018-08-09 18:06:22 +02:00
// Support depend.make files left by older versions of CMake.
// They do not include the ".mod" extension.
mod += ".mod";
}
std::string mod_dir = cmSystemTools::GetFilenamePath(mod);
2016-07-09 11:21:54 +02:00
if (!mod_dir.empty()) {
mod_dir += "/";
}
std::string mod_upper = mod_dir;
std::string mod_lower = mod_dir;
2018-08-09 18:06:22 +02:00
cmFortranModuleAppendUpperLower(cmSystemTools::GetFilenameName(mod),
mod_upper, mod_lower);
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileExists(mod_upper, true)) {
2019-11-11 23:01:05 +01:00
if (cmDependsFortran::ModulesDiffer(mod_upper, stamp, compilerId)) {
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::CopyFileAlways(mod_upper, stamp)) {
std::cerr << "Error copying Fortran module from \"" << mod_upper
<< "\" to \"" << stamp << "\".\n";
return false;
}
}
2016-07-09 11:21:54 +02:00
return true;
2016-10-30 18:24:19 +01:00
}
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileExists(mod_lower, true)) {
2019-11-11 23:01:05 +01:00
if (cmDependsFortran::ModulesDiffer(mod_lower, stamp, compilerId)) {
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::CopyFileAlways(mod_lower, stamp)) {
std::cerr << "Error copying Fortran module from \"" << mod_lower
<< "\" to \"" << stamp << "\".\n";
return false;
}
}
2016-07-09 11:21:54 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
std::cerr << "Error copying Fortran module \"" << args[2] << "\". Tried \""
<< mod_upper << "\" and \"" << mod_lower << "\".\n";
return false;
}
// Helper function to look for a short sequence in a stream. If this
// is later used for longer sequences it should be re-written using an
// efficient string search algorithm such as Boyer-Moore.
2016-07-09 11:21:54 +02:00
static bool cmFortranStreamContainsSequence(std::istream& ifs, const char* seq,
int len)
{
assert(len > 0);
int cur = 0;
2016-07-09 11:21:54 +02:00
while (cur < len) {
// Get the next character.
int token = ifs.get();
2016-07-09 11:21:54 +02:00
if (!ifs) {
return false;
2016-07-09 11:21:54 +02:00
}
// Check the character.
2016-07-09 11:21:54 +02:00
if (token == static_cast<int>(seq[cur])) {
++cur;
2016-07-09 11:21:54 +02:00
} else {
// Assume the sequence has no repeating subsequence.
cur = 0;
}
2016-07-09 11:21:54 +02:00
}
// The entire sequence was matched.
return true;
}
// Helper function to compare the remaining content in two streams.
2016-07-09 11:21:54 +02:00
static bool cmFortranStreamsDiffer(std::istream& ifs1, std::istream& ifs2)
{
// Compare the remaining content.
2016-07-09 11:21:54 +02:00
for (;;) {
int ifs1_c = ifs1.get();
int ifs2_c = ifs2.get();
2016-07-09 11:21:54 +02:00
if (!ifs1 && !ifs2) {
// We have reached the end of both streams simultaneously.
// The streams are identical.
return false;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (!ifs1 || !ifs2 || ifs1_c != ifs2_c) {
// We have reached the end of one stream before the other or
// found differing content. The streams are different.
break;
}
2016-07-09 11:21:54 +02:00
}
return true;
}
2019-11-11 23:01:05 +01:00
bool cmDependsFortran::ModulesDiffer(const std::string& modFile,
const std::string& stampFile,
const std::string& compilerId)
{
/*
2014-08-08 17:52:44 +02:00
gnu >= 4.9:
A mod file is an ascii file compressed with gzip.
Compiling twice produces identical modules.
gnu < 4.9:
A mod file is an ascii file.
<bar.mod>
FORTRAN module created from /path/to/foo.f90 on Sun Dec 30 22:47:58 2007
If you edit this, you'll get what you deserve.
...
</bar.mod>
As you can see the first line contains the date.
intel:
A mod file is a binary file.
However, looking into both generated bar.mod files with a hex editor
shows that they differ only before a sequence linefeed-zero (0x0A 0x00)
2018-04-23 21:13:27 +02:00
which is located some bytes in front of the absolute path to the source
file.
sun:
A mod file is a binary file. Compiling twice produces identical modules.
others:
TODO ...
*/
/* Compilers which do _not_ produce different mod content when the same
* source is compiled twice
* -SunPro
*/
2019-11-11 23:01:05 +01:00
if (compilerId == "SunPro") {
return cmSystemTools::FilesDiffer(modFile, stampFile);
2016-07-09 11:21:54 +02:00
}
#if defined(_WIN32) || defined(__CYGWIN__)
2019-11-11 23:01:05 +01:00
cmsys::ifstream finModFile(modFile.c_str(), std::ios::in | std::ios::binary);
cmsys::ifstream finStampFile(stampFile.c_str(),
std::ios::in | std::ios::binary);
#else
2019-11-11 23:01:05 +01:00
cmsys::ifstream finModFile(modFile.c_str());
cmsys::ifstream finStampFile(stampFile.c_str());
#endif
2016-07-09 11:21:54 +02:00
if (!finModFile || !finStampFile) {
// At least one of the files does not exist. The modules differ.
return true;
2016-07-09 11:21:54 +02:00
}
/* Compilers which _do_ produce different mod content when the same
* source is compiled twice
* -GNU
* -Intel
*
2012-04-19 19:04:21 +03:00
* Eat the stream content until all recompile only related changes
* are left behind.
*/
2019-11-11 23:01:05 +01:00
if (compilerId == "GNU") {
2014-08-08 17:52:44 +02:00
// GNU Fortran 4.9 and later compress .mod files with gzip
// but also do not include a date so we can fall through to
// compare them without skipping any prefix.
unsigned char hdr[2];
2016-10-30 18:24:19 +01:00
bool okay = !finModFile.read(reinterpret_cast<char*>(hdr), 2).fail();
2014-08-08 17:52:44 +02:00
finModFile.seekg(0);
2016-10-30 18:24:19 +01:00
if (!okay || hdr[0] != 0x1f || hdr[1] != 0x8b) {
2016-07-09 11:21:54 +02:00
const char seq[1] = { '\n' };
2014-08-08 17:52:44 +02:00
const int seqlen = 1;
2016-07-09 11:21:54 +02:00
if (!cmFortranStreamContainsSequence(finModFile, seq, seqlen)) {
2014-08-08 17:52:44 +02:00
// The module is of unexpected format. Assume it is different.
std::cerr << compilerId << " fortran module " << modFile
<< " has unexpected format." << std::endl;
return true;
2016-07-09 11:21:54 +02:00
}
2014-08-08 17:52:44 +02:00
2016-07-09 11:21:54 +02:00
if (!cmFortranStreamContainsSequence(finStampFile, seq, seqlen)) {
2014-08-08 17:52:44 +02:00
// The stamp must differ if the sequence is not contained.
return true;
}
}
2019-11-11 23:01:05 +01:00
} else if (compilerId == "Intel") {
2016-07-09 11:21:54 +02:00
const char seq[2] = { '\n', '\0' };
const int seqlen = 2;
2016-09-11 17:22:32 +02:00
// Skip the leading byte which appears to be a version number.
// We do not need to check for an error because the sequence search
// below will fail in that case.
finModFile.get();
finStampFile.get();
2016-07-09 11:21:54 +02:00
if (!cmFortranStreamContainsSequence(finModFile, seq, seqlen)) {
// The module is of unexpected format. Assume it is different.
std::cerr << compilerId << " fortran module " << modFile
<< " has unexpected format." << std::endl;
return true;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (!cmFortranStreamContainsSequence(finStampFile, seq, seqlen)) {
// The stamp must differ if the sequence is not contained.
return true;
}
2016-07-09 11:21:54 +02:00
}
2012-04-19 19:04:21 +03:00
// Compare the remaining content. If no compiler id matched above,
// including the case none was given, this will compare the whole
// content.
2016-10-30 18:24:19 +01:00
return cmFortranStreamsDiffer(finModFile, finStampFile);
}
2017-04-14 19:02:05 +02:00
std::string cmDependsFortran::MaybeConvertToRelativePath(
std::string const& base, std::string const& path)
{
2019-11-11 23:01:05 +01:00
if (!this->LocalGenerator->GetStateSnapshot().GetDirectory().ContainsBoth(
base, path)) {
2017-04-14 19:02:05 +02:00
return path;
}
2019-11-11 23:01:05 +01:00
return cmSystemTools::ForceToRelativePath(base, path);
2017-04-14 19:02:05 +02:00
}