2011-08-22 02:15:50 +00:00
|
|
|
var wshShell = new ActiveXObject("WScript.Shell")
|
|
|
|
var oFS = new ActiveXObject("Scripting.FileSystemObject");
|
|
|
|
|
|
|
|
var outfile = "./scmrev.h";
|
|
|
|
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";
|
2024-03-23 05:18:51 +00:00
|
|
|
var cmd_commits_ahead = " rev-list --count HEAD ^master";
|
2024-06-30 02:59:40 +00:00
|
|
|
var cmd_get_tag = " describe --exact-match HEAD";
|
2011-08-22 02:15:50 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2015-04-29 22:17:53 +00:00
|
|
|
// last try - msysgit not in path (vs2015 default)
|
|
|
|
msyspath = "\\Git\\cmd\\git.exe";
|
|
|
|
gitexe = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES(x86)%") + msyspath;
|
|
|
|
if (oFS.FileExists(gitexe)) {
|
|
|
|
return gitexe;
|
|
|
|
}
|
|
|
|
gitexe = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES%") + msyspath;
|
|
|
|
if (oFS.FileExists(gitexe)) {
|
|
|
|
return gitexe;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-30 02:59:40 +00:00
|
|
|
function AttemptToExecuteCommand(cmd)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var exec = wshShell.Exec(cmd)
|
|
|
|
|
|
|
|
// wait until the command has finished
|
|
|
|
while (exec.Status == 0) {}
|
|
|
|
|
|
|
|
return exec.ExitCode;
|
|
|
|
}
|
|
|
|
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);
|
2024-03-23 05:18:51 +00:00
|
|
|
var commits_ahead = GetFirstStdOutLine(gitexe + cmd_commits_ahead);
|
2016-06-17 22:13:37 +00:00
|
|
|
|
|
|
|
// Get environment information.
|
|
|
|
var distributor = wshShell.ExpandEnvironmentStrings("%DOLPHIN_DISTRIBUTOR%");
|
|
|
|
if (distributor == "%DOLPHIN_DISTRIBUTOR%") distributor = "None";
|
2018-01-04 02:32:42 +00:00
|
|
|
var default_update_track = wshShell.ExpandEnvironmentStrings("%DOLPHIN_DEFAULT_UPDATE_TRACK%");
|
|
|
|
if (default_update_track == "%DOLPHIN_DEFAULT_UPDATE_TRACK%") default_update_track = "";
|
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
|
|
|
|
2024-06-30 02:59:40 +00:00
|
|
|
// set commits ahead to zero if on a tag
|
|
|
|
if (AttemptToExecuteCommand(gitexe + cmd_get_tag) == 0)
|
|
|
|
{
|
|
|
|
commits_ahead = "0";
|
|
|
|
}
|
|
|
|
|
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" +
|
2024-03-23 05:18:51 +00:00
|
|
|
"#define SCM_COMMITS_AHEAD_MASTER " + commits_ahead + "\n" +
|
2018-01-04 02:32:42 +00:00
|
|
|
"#define SCM_DISTRIBUTOR_STR \"" + distributor + "\"\n" +
|
|
|
|
"#define SCM_UPDATE_TRACK_STR \"" + default_update_track + "\"\n";
|
2011-08-22 02:15:50 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|