2001-05-04 19:34:59 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-04 19:34:59 +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-05-04 19:34:59 +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-05-04 19:34:59 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmSiteNameCommand.h"
|
|
|
|
|
2003-06-23 22:10:12 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
// cmSiteNameCommand
|
2001-09-20 23:08:30 +04:00
|
|
|
bool cmSiteNameCommand::InitialPass(std::vector<std::string> const& args)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2002-03-29 22:20:32 +03:00
|
|
|
if(args.size() != 1 )
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-04-26 17:35:03 +04:00
|
|
|
std::vector<std::string> paths;
|
|
|
|
paths.push_back("/usr/bsd");
|
|
|
|
paths.push_back("/usr/sbin");
|
|
|
|
paths.push_back("/usr/bin");
|
|
|
|
paths.push_back("/bin");
|
|
|
|
paths.push_back("/sbin");
|
|
|
|
paths.push_back("/usr/local/bin");
|
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
const char* cacheValue
|
2002-01-18 19:38:05 +03:00
|
|
|
= m_Makefile->GetDefinition(args[0].c_str());
|
2001-05-04 19:34:59 +04:00
|
|
|
if(cacheValue)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-01-20 05:22:55 +03:00
|
|
|
const char *temp = m_Makefile->GetDefinition("HOSTNAME");
|
|
|
|
std::string hostname_cmd;
|
|
|
|
if(temp)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2002-01-20 05:22:55 +03:00
|
|
|
hostname_cmd = temp;
|
2001-05-04 19:34:59 +04:00
|
|
|
}
|
2002-01-20 05:22:55 +03:00
|
|
|
else
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2002-04-26 17:35:03 +04:00
|
|
|
hostname_cmd = cmSystemTools::FindProgram("hostname", paths);
|
2001-05-04 19:34:59 +04:00
|
|
|
}
|
2002-01-20 05:22:55 +03:00
|
|
|
|
|
|
|
std::string siteName = "unknown";
|
2002-04-25 23:40:04 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
std::string host;
|
|
|
|
if(cmSystemTools::ReadRegistryValue(
|
|
|
|
"HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName\\ComputerName;ComputerName",
|
|
|
|
host))
|
|
|
|
{
|
|
|
|
siteName = host;
|
|
|
|
}
|
|
|
|
#else
|
2002-01-20 05:22:55 +03:00
|
|
|
// try to find the hostname for this computer
|
2002-04-25 23:40:04 +04:00
|
|
|
if (!cmSystemTools::IsOff(hostname_cmd.c_str()))
|
2001-06-25 21:34:09 +04:00
|
|
|
{
|
2002-01-20 05:22:55 +03:00
|
|
|
std::string host;
|
2003-08-04 06:34:59 +04:00
|
|
|
cmSystemTools::RunSingleCommand(hostname_cmd.c_str(),
|
2004-04-15 19:38:35 +04:00
|
|
|
&host, 0, 0, false);
|
2002-01-20 05:22:55 +03:00
|
|
|
|
|
|
|
// got the hostname
|
|
|
|
if (host.length())
|
2001-06-25 21:34:09 +04:00
|
|
|
{
|
2002-01-20 05:22:55 +03:00
|
|
|
// remove any white space from the host name
|
|
|
|
std::string hostRegExp = "[ \t\n\r]*([^\t\n\r ]*)[ \t\n\r]*";
|
2003-06-23 22:10:12 +04:00
|
|
|
cmsys::RegularExpression hostReg (hostRegExp.c_str());
|
2002-01-20 05:22:55 +03:00
|
|
|
if (hostReg.find(host.c_str()))
|
|
|
|
{
|
|
|
|
// strip whitespace
|
|
|
|
host = hostReg.match(1);
|
|
|
|
}
|
2001-10-19 02:01:19 +04:00
|
|
|
|
2002-01-20 05:22:55 +03:00
|
|
|
if(host.length())
|
|
|
|
{
|
|
|
|
siteName = host;
|
|
|
|
}
|
2001-05-04 19:34:59 +04:00
|
|
|
}
|
|
|
|
}
|
2002-04-25 23:40:04 +04:00
|
|
|
#endif
|
2001-08-08 19:54:46 +04:00
|
|
|
m_Makefile->
|
2002-01-18 19:38:05 +03:00
|
|
|
AddCacheDefinition(args[0].c_str(),
|
2001-08-08 19:54:46 +04:00
|
|
|
siteName.c_str(),
|
|
|
|
"Name of the computer/site where compile is being run",
|
|
|
|
cmCacheManager::STRING);
|
2001-06-25 21:34:09 +04:00
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|