2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-05-04 15:34:59 +00:00
|
|
|
#include "cmSiteNameCommand.h"
|
|
|
|
|
2017-04-11 20:00:21 +00:00
|
|
|
#include "cmsys/RegularExpression.hxx"
|
2016-10-25 18:35:04 +00:00
|
|
|
|
2019-08-04 17:11:41 +00:00
|
|
|
#include "cmExecutionStatus.h"
|
2016-10-25 18:35:04 +00:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmStateTypes.h"
|
2019-08-17 09:04:11 +00:00
|
|
|
#include "cmStringAlgorithms.h"
|
2016-10-19 20:30:58 +00:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
2001-05-04 15:34:59 +00:00
|
|
|
// cmSiteNameCommand
|
2019-08-04 17:11:41 +00:00
|
|
|
bool cmSiteNameCommand(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status)
|
2001-05-04 15:34:59 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args.size() != 1) {
|
2019-08-04 17:11:41 +00:00
|
|
|
status.SetError("called with incorrect number of arguments");
|
2001-05-04 15:34:59 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-04-26 13:35:03 +00:00
|
|
|
std::vector<std::string> paths;
|
2019-01-16 06:13:07 +00:00
|
|
|
paths.emplace_back("/usr/bsd");
|
|
|
|
paths.emplace_back("/usr/sbin");
|
|
|
|
paths.emplace_back("/usr/bin");
|
|
|
|
paths.emplace_back("/bin");
|
|
|
|
paths.emplace_back("/sbin");
|
|
|
|
paths.emplace_back("/usr/local/bin");
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2019-08-04 17:11:41 +00:00
|
|
|
const char* cacheValue = status.GetMakefile().GetDefinition(args[0]);
|
2016-05-16 14:34:04 +00:00
|
|
|
if (cacheValue) {
|
2001-05-04 15:34:59 +00:00
|
|
|
return true;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2019-08-04 17:11:41 +00:00
|
|
|
const char* temp = status.GetMakefile().GetDefinition("HOSTNAME");
|
2002-01-20 02:22:55 +00:00
|
|
|
std::string hostname_cmd;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (temp) {
|
2002-01-20 02:22:55 +00:00
|
|
|
hostname_cmd = temp;
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
2002-04-26 13:35:03 +00:00
|
|
|
hostname_cmd = cmSystemTools::FindProgram("hostname", paths);
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2002-01-20 02:22:55 +00:00
|
|
|
std::string siteName = "unknown";
|
2002-04-25 19:40:04 +00:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
std::string host;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (cmSystemTools::ReadRegistryValue(
|
|
|
|
"HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\"
|
|
|
|
"Control\\ComputerName\\ComputerName;ComputerName",
|
|
|
|
host)) {
|
2002-04-25 19:40:04 +00:00
|
|
|
siteName = host;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-04-25 19:40:04 +00:00
|
|
|
#else
|
2002-01-20 02:22:55 +00:00
|
|
|
// try to find the hostname for this computer
|
2019-08-17 09:04:11 +00:00
|
|
|
if (!cmIsOff(hostname_cmd)) {
|
2002-01-20 02:22:55 +00:00
|
|
|
std::string host;
|
2019-02-06 16:02:10 +00:00
|
|
|
cmSystemTools::RunSingleCommand(hostname_cmd, &host, nullptr, nullptr,
|
|
|
|
nullptr, cmSystemTools::OUTPUT_NONE);
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2002-01-20 02:22:55 +00:00
|
|
|
// got the hostname
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!host.empty()) {
|
2002-01-20 02:22:55 +00:00
|
|
|
// remove any white space from the host name
|
|
|
|
std::string hostRegExp = "[ \t\n\r]*([^\t\n\r ]*)[ \t\n\r]*";
|
2016-05-16 14:34:04 +00:00
|
|
|
cmsys::RegularExpression hostReg(hostRegExp.c_str());
|
|
|
|
if (hostReg.find(host.c_str())) {
|
2002-01-20 02:22:55 +00:00
|
|
|
// strip whitespace
|
|
|
|
host = hostReg.match(1);
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2001-10-18 22:01:19 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!host.empty()) {
|
2002-01-20 02:22:55 +00:00
|
|
|
siteName = host;
|
2001-05-04 15:34:59 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-04-25 19:40:04 +00:00
|
|
|
#endif
|
2019-08-04 17:11:41 +00:00
|
|
|
status.GetMakefile().AddCacheDefinition(
|
2016-05-16 14:34:04 +00:00
|
|
|
args[0], siteName.c_str(),
|
2016-10-18 19:28:47 +00:00
|
|
|
"Name of the computer/site where compile is being run",
|
|
|
|
cmStateEnums::STRING);
|
2001-06-25 17:34:09 +00:00
|
|
|
|
2001-05-04 15:34:59 +00:00
|
|
|
return true;
|
|
|
|
}
|