| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | var wshShell		= new ActiveXObject("WScript.Shell") | 
					
						
							|  |  |  | var oFS				= new ActiveXObject("Scripting.FileSystemObject"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 15:14:29 -05:00
										 |  |  | var outfile			= "./scmrev.h"; | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | var cmd_revision	= " rev-parse HEAD"; | 
					
						
							| 
									
										
										
										
											2011-08-22 20:06:17 -05:00
										 |  |  | var cmd_describe	= " describe --always --long --dirty"; | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | var cmd_branch		= " rev-parse --abbrev-ref HEAD"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function GetGitExe() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-07-20 12:29:38 -07:00
										 |  |  | 	try | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		gitexe = wshShell.RegRead("HKCU\\Software\\GitExtensions\\gitcommand"); | 
					
						
							|  |  |  | 		wshShell.Exec(gitexe); | 
					
						
							|  |  |  | 		return gitexe; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	catch (e) | 
					
						
							|  |  |  | 	{} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-27 19:51:30 -04:00
										 |  |  | 	for (var gitexe in {"git.cmd":1, "git":1, "git.bat":1}) | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		try | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			wshShell.Exec(gitexe); | 
					
						
							| 
									
										
										
										
											2011-08-21 22:25:52 -05:00
										 |  |  | 			return gitexe; | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		catch (e) | 
					
						
							| 
									
										
										
										
											2011-08-21 22:25:52 -05:00
										 |  |  | 		{} | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-21 22:25:52 -05: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-21 22:25:52 -05:00
										 |  |  | 	WScript.Echo("Cannot find git or git.cmd, check your PATH:\n" + | 
					
						
							|  |  |  | 		wshShell.ExpandEnvironmentStrings("%PATH%")); | 
					
						
							|  |  |  | 	WScript.Quit(1); | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07: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-21 19:53:09 -07:00
										 |  |  | function GetFileContents(f) | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	try | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-08-21 19:53:09 -07:00
										 |  |  | 		return oFS.OpenTextFile(f).ReadAll(); | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	catch (e) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-08-21 22:25:52 -05:00
										 |  |  | 		// file doesn't exist
 | 
					
						
							|  |  |  | 		return ""; | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07: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); | 
					
						
							| 
									
										
										
										
											2016-06-18 00:13:37 +02:00
										 |  |  | var isStable = +("master" == branch || "stable" == branch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Get environment information.
 | 
					
						
							|  |  |  | var distributor = wshShell.ExpandEnvironmentStrings("%DOLPHIN_DISTRIBUTOR%"); | 
					
						
							|  |  |  | if (distributor == "%DOLPHIN_DISTRIBUTOR%") distributor = "None"; | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-10 17:12:24 -05:00
										 |  |  | // remove hash (and trailing "-0" if needed) from description
 | 
					
						
							|  |  |  | describe = describe.replace(/(-0)?-[^-]+(-dirty)?$/, '$2'); | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | var out_contents = | 
					
						
							|  |  |  | 	"#define SCM_REV_STR \"" + revision + "\"\n" + | 
					
						
							|  |  |  | 	"#define SCM_DESC_STR \"" + describe + "\"\n" + | 
					
						
							|  |  |  | 	"#define SCM_BRANCH_STR \"" + branch + "\"\n" + | 
					
						
							| 
									
										
										
										
											2016-06-18 00:13:37 +02:00
										 |  |  | 	"#define SCM_IS_MASTER " + isStable + "\n" + | 
					
						
							|  |  |  | 	"#define SCM_DISTRIBUTOR_STR \"" + distributor + "\"\n"; | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // check if file needs updating
 | 
					
						
							| 
									
										
										
										
											2011-08-21 19:53:09 -07:00
										 |  |  | if (out_contents == GetFileContents(outfile)) | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-21 22:46:11 -05:00
										 |  |  | 	WScript.Echo(outfile + " current at " + describe); | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	// needs updating - writeout current info
 | 
					
						
							|  |  |  | 	oFS.CreateTextFile(outfile, true).Write(out_contents); | 
					
						
							| 
									
										
										
										
											2011-08-21 22:46:11 -05:00
										 |  |  | 	WScript.Echo(outfile + " updated to " + describe); | 
					
						
							| 
									
										
										
										
											2011-08-21 19:15:50 -07:00
										 |  |  | } |