2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-07-27 18:55:24 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2007-07-27 18:55:24 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2007-01-10 23:30:26 +03:00
|
|
|
#include <cmsys/SystemTools.hxx>
|
|
|
|
#include <cmsys/Process.h>
|
|
|
|
#include <cmsys/ios/iostream>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2007-01-10 23:30:26 +03:00
|
|
|
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
|
2007-01-31 21:53:30 +03:00
|
|
|
// For the PATH_MAX constant
|
|
|
|
#include <sys/syslimits.h>
|
2007-01-10 23:30:26 +03:00
|
|
|
|
|
|
|
#define DebugError(x) \
|
|
|
|
ofs << x << cmsys_ios::endl; \
|
|
|
|
cmsys_ios::cout << x << cmsys_ios::endl
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
//if ( cmsys::SystemTools::FileExists(
|
|
|
|
cmsys_stl::string cwd = cmsys::SystemTools::GetCurrentWorkingDirectory();
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream ofs("/tmp/output.txt");
|
2007-01-10 23:30:26 +03:00
|
|
|
|
|
|
|
CFStringRef fileName;
|
|
|
|
CFBundleRef appBundle;
|
|
|
|
CFURLRef scriptFileURL;
|
|
|
|
UInt8 *path;
|
|
|
|
|
|
|
|
//get CF URL for script
|
|
|
|
if (! (appBundle = CFBundleGetMainBundle()))
|
|
|
|
{
|
|
|
|
DebugError("Cannot get main bundle");
|
|
|
|
return 1;
|
|
|
|
}
|
2007-01-31 21:53:30 +03:00
|
|
|
fileName = CFSTR("RuntimeScript");
|
2007-01-10 23:30:26 +03:00
|
|
|
if (! (scriptFileURL = CFBundleCopyResourceURL(appBundle, fileName, NULL,
|
|
|
|
NULL)))
|
|
|
|
{
|
|
|
|
DebugError("CFBundleCopyResourceURL failed");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-01-31 21:53:30 +03:00
|
|
|
//create path string
|
|
|
|
if (! (path = new UInt8[PATH_MAX]))
|
2007-01-10 23:30:26 +03:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-01-31 21:53:30 +03:00
|
|
|
//get the file system path of the url as a cstring
|
|
|
|
//in an encoding suitable for posix apis
|
|
|
|
if ( CFURLGetFileSystemRepresentation(scriptFileURL, true, path,
|
|
|
|
PATH_MAX) == false)
|
2007-01-10 23:30:26 +03:00
|
|
|
{
|
2007-01-31 21:53:30 +03:00
|
|
|
DebugError("CFURLGetFileSystemRepresentation failed");
|
2007-01-10 23:30:26 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-01-31 21:53:30 +03:00
|
|
|
//dispose of the CF variable
|
|
|
|
CFRelease(scriptFileURL);
|
2007-01-10 23:30:26 +03:00
|
|
|
|
|
|
|
cmsys_stl::string fullScriptPath = reinterpret_cast<char*>(path);
|
|
|
|
delete [] path;
|
|
|
|
|
|
|
|
|
|
|
|
if (! cmsys::SystemTools::FileExists(fullScriptPath.c_str()))
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmsys_stl::string scriptDirectory = cmsys::SystemTools::GetFilenamePath(
|
|
|
|
fullScriptPath);
|
|
|
|
ofs << fullScriptPath.c_str() << cmsys_ios::endl;
|
|
|
|
cmsys_stl::vector<const char*> args;
|
|
|
|
args.push_back(fullScriptPath.c_str());
|
|
|
|
int cc;
|
|
|
|
for ( cc = 1; cc < argc; ++ cc )
|
|
|
|
{
|
|
|
|
args.push_back(argv[cc]);
|
|
|
|
}
|
|
|
|
args.push_back(0);
|
|
|
|
|
|
|
|
cmsysProcess* cp = cmsysProcess_New();
|
|
|
|
cmsysProcess_SetCommand(cp, &*args.begin());
|
|
|
|
cmsysProcess_SetWorkingDirectory(cp, scriptDirectory.c_str());
|
|
|
|
cmsysProcess_SetOption(cp, cmsysProcess_Option_HideWindow, 1);
|
|
|
|
cmsysProcess_SetTimeout(cp, 0);
|
|
|
|
cmsysProcess_Execute(cp);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-01-10 23:30:26 +03:00
|
|
|
std::vector<char> tempOutput;
|
|
|
|
char* data;
|
|
|
|
int length;
|
|
|
|
while(cmsysProcess_WaitForData(cp, &data, &length, 0))
|
|
|
|
{
|
|
|
|
// Translate NULL characters in the output into valid text.
|
|
|
|
// Visual Studio 7 puts these characters in the output of its
|
|
|
|
// build process.
|
|
|
|
for(int i=0; i < length; ++i)
|
|
|
|
{
|
|
|
|
if(data[i] == '\0')
|
|
|
|
{
|
|
|
|
data[i] = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmsys_ios::cout.write(data, length);
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-01-10 23:30:26 +03:00
|
|
|
cmsysProcess_WaitForExit(cp, 0);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-01-10 23:30:26 +03:00
|
|
|
bool result = true;
|
|
|
|
if(cmsysProcess_GetState(cp) == cmsysProcess_State_Exited)
|
|
|
|
{
|
|
|
|
if ( cmsysProcess_GetExitValue(cp) != 0 )
|
|
|
|
{
|
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(cmsysProcess_GetState(cp) == cmsysProcess_State_Exception)
|
|
|
|
{
|
|
|
|
const char* exception_str = cmsysProcess_GetExceptionString(cp);
|
|
|
|
std::cerr << exception_str << std::endl;
|
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
else if(cmsysProcess_GetState(cp) == cmsysProcess_State_Error)
|
|
|
|
{
|
|
|
|
const char* error_str = cmsysProcess_GetErrorString(cp);
|
|
|
|
std::cerr << error_str << std::endl;
|
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
else if(cmsysProcess_GetState(cp) == cmsysProcess_State_Expired)
|
|
|
|
{
|
|
|
|
const char* error_str = "Process terminated due to timeout\n";
|
|
|
|
std::cerr << error_str << std::endl;
|
|
|
|
result = false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-01-10 23:30:26 +03:00
|
|
|
cmsysProcess_Delete(cp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|