2011-08-22 02:15:50 +00:00
|
|
|
var wshShell = new ActiveXObject("WScript.Shell")
|
|
|
|
var oFS = new ActiveXObject("Scripting.FileSystemObject");
|
|
|
|
|
2013-12-07 20:14:29 +00:00
|
|
|
var outfile = "./scmrev.h";
|
2011-08-22 02:15:50 +00:00
|
|
|
var cmd_revision = " rev-parse HEAD";
|
2011-08-23 01:06:17 +00:00
|
|
|
var cmd_describe = " describe --always --long --dirty";
|
2011-08-22 02:15:50 +00:00
|
|
|
var cmd_branch = " rev-parse --abbrev-ref HEAD";
|
|
|
|
|
|
|
|
function GetGitExe()
|
|
|
|
{
|
2014-07-20 19:29:38 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
gitexe = wshShell.RegRead("HKCU\\Software\\GitExtensions\\gitcommand");
|
|
|
|
wshShell.Exec(gitexe);
|
|
|
|
return gitexe;
|
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{}
|
|
|
|
|
2013-10-27 23:51:30 +00:00
|
|
|
for (var gitexe in {"git.cmd":1, "git":1, "git.bat":1})
|
2011-08-22 02:15:50 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
wshShell.Exec(gitexe);
|
2011-08-22 03:25:52 +00:00
|
|
|
return gitexe;
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|
|
|
|
catch (e)
|
2011-08-22 03:25:52 +00:00
|
|
|
{}
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|
2011-08-22 03:25:52 +00:00
|
|
|
|
|
|
|
WScript.Echo("Cannot find git or git.cmd, check your PATH:\n" +
|
|
|
|
wshShell.ExpandEnvironmentStrings("%PATH%"));
|
|
|
|
WScript.Quit(1);
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function GetFirstStdOutLine(cmd)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return wshShell.Exec(cmd).StdOut.ReadLine();
|
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
|
|
|
// catch "the system cannot find the file specified" error
|
|
|
|
WScript.Echo("Failed to exec " + cmd + " this should never happen");
|
|
|
|
WScript.Quit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-22 02:53:09 +00:00
|
|
|
function GetFileContents(f)
|
2011-08-22 02:15:50 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2011-08-22 02:53:09 +00:00
|
|
|
return oFS.OpenTextFile(f).ReadAll();
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
2011-08-22 03:25:52 +00:00
|
|
|
// file doesn't exist
|
|
|
|
return "";
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get info from git
|
|
|
|
var gitexe = GetGitExe();
|
|
|
|
var revision = GetFirstStdOutLine(gitexe + cmd_revision);
|
|
|
|
var describe = GetFirstStdOutLine(gitexe + cmd_describe);
|
|
|
|
var branch = GetFirstStdOutLine(gitexe + cmd_branch);
|
2014-07-20 19:29:38 +00:00
|
|
|
var isMaster = +("master" == branch);
|
2011-08-22 02:15:50 +00:00
|
|
|
|
2013-08-10 22:12:24 +00:00
|
|
|
// remove hash (and trailing "-0" if needed) from description
|
|
|
|
describe = describe.replace(/(-0)?-[^-]+(-dirty)?$/, '$2');
|
2011-08-22 02:15:50 +00:00
|
|
|
|
|
|
|
var out_contents =
|
|
|
|
"#define SCM_REV_STR \"" + revision + "\"\n" +
|
|
|
|
"#define SCM_DESC_STR \"" + describe + "\"\n" +
|
|
|
|
"#define SCM_BRANCH_STR \"" + branch + "\"\n" +
|
|
|
|
"#define SCM_IS_MASTER " + isMaster + "\n";
|
|
|
|
|
|
|
|
// check if file needs updating
|
2011-08-22 02:53:09 +00:00
|
|
|
if (out_contents == GetFileContents(outfile))
|
2011-08-22 02:15:50 +00:00
|
|
|
{
|
2011-08-22 03:46:11 +00:00
|
|
|
WScript.Echo(outfile + " current at " + describe);
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// needs updating - writeout current info
|
|
|
|
oFS.CreateTextFile(outfile, true).Write(out_contents);
|
2011-08-22 03:46:11 +00:00
|
|
|
WScript.Echo(outfile + " updated to " + describe);
|
2011-08-22 02:15:50 +00:00
|
|
|
}
|