| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2012-05-04 20:51:59 +01:00
										 |  |  | #include <io.h>
 | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Merged revisions 59605-59624 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r59606 | georg.brandl | 2007-12-29 11:57:00 +0100 (Sat, 29 Dec 2007) | 2 lines
  Some cleanup in the docs.
........
  r59611 | martin.v.loewis | 2007-12-29 19:49:21 +0100 (Sat, 29 Dec 2007) | 2 lines
  Bug #1699: Define _BSD_SOURCE only on OpenBSD.
........
  r59612 | raymond.hettinger | 2007-12-29 23:09:34 +0100 (Sat, 29 Dec 2007) | 1 line
  Simpler documentation for itertools.tee().  Should be backported.
........
  r59613 | raymond.hettinger | 2007-12-29 23:16:24 +0100 (Sat, 29 Dec 2007) | 1 line
  Improve docs for itertools.groupby().  The use of xrange(0) to create a unique object is less obvious than object().
........
  r59620 | christian.heimes | 2007-12-31 15:47:07 +0100 (Mon, 31 Dec 2007) | 3 lines
  Added wininst-9.0.exe executable for VS 2008
  Integrated bdist_wininst into PCBuild9 directory
........
  r59621 | christian.heimes | 2007-12-31 15:51:18 +0100 (Mon, 31 Dec 2007) | 1 line
  Moved PCbuild directory to PC/VS7.1
........
  r59622 | christian.heimes | 2007-12-31 15:59:26 +0100 (Mon, 31 Dec 2007) | 1 line
  Fix paths for build bot
........
  r59623 | christian.heimes | 2007-12-31 16:02:41 +0100 (Mon, 31 Dec 2007) | 1 line
  Fix paths for build bot, part 2
........
  r59624 | christian.heimes | 2007-12-31 16:18:55 +0100 (Mon, 31 Dec 2007) | 1 line
  Renamed PCBuild9 directory to PCBuild
........
											
										 
											2007-12-31 16:14:33 +00:00
										 |  |  | #define CMD_SIZE 500
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | /* This file creates the getbuildinfo.o object, by first
 | 
					
						
							|  |  |  |    invoking subwcrev.exe (if found), and then invoking cl.exe. | 
					
						
							|  |  |  |    As a side effect, it might generate PCBuild\getbuildinfo2.c | 
					
						
							|  |  |  |    also. If this isn't a subversion checkout, or subwcrev isn't | 
					
						
							|  |  |  |    found, it compiles ..\\Modules\\getbuildinfo.c instead. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Currently, subwcrev.exe is found from the registry entries | 
					
						
							|  |  |  |    of TortoiseSVN. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    No attempt is made to place getbuildinfo.o into the proper | 
					
						
							|  |  |  |    binary directory. This isn't necessary, as this tool is | 
					
						
							|  |  |  |    invoked as a pre-link step for pythoncore, so that overwrites | 
					
						
							|  |  |  |    any previous getbuildinfo.o. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |    However, if a second argument is provided, this will be used | 
					
						
							|  |  |  |    as a temporary directory where any getbuildinfo2.c and | 
					
						
							|  |  |  |    getbuildinfo.o files are put.  This is useful if multiple | 
					
						
							|  |  |  |    configurations are being built in parallel, to avoid them | 
					
						
							|  |  |  |    trampling each other's files. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  | int make_buildinfo2(const char *tmppath) | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     struct _stat st; | 
					
						
							|  |  |  |     HKEY hTortoise; | 
					
						
							|  |  |  |     char command[CMD_SIZE+1]; | 
					
						
							|  |  |  |     DWORD type, size; | 
					
						
							|  |  |  |     if (_stat(".svn", &st) < 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     /* Allow suppression of subwcrev.exe invocation if a no_subwcrev file is present. */ | 
					
						
							|  |  |  |     if (_stat("no_subwcrev", &st) == 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS && | 
					
						
							|  |  |  |         RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS) | 
					
						
							|  |  |  |         /* Tortoise not installed */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     command[0] = '"';  /* quote the path to the executable */ | 
					
						
							|  |  |  |     size = sizeof(command) - 1; | 
					
						
							|  |  |  |     if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS || | 
					
						
							|  |  |  |         type != REG_SZ) | 
					
						
							|  |  |  |         /* Registry corrupted */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe"); | 
					
						
							|  |  |  |     if (_stat(command+1, &st) < 0) | 
					
						
							|  |  |  |         /* subwcrev.exe not part of the release */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |     strcat_s(command, CMD_SIZE, "\" .. ..\\Modules\\getbuildinfo.c \""); | 
					
						
							|  |  |  |     strcat_s(command, CMD_SIZE, tmppath); /* quoted tmppath */ | 
					
						
							|  |  |  |     strcat_s(command, CMD_SIZE, "getbuildinfo2.c\""); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     puts(command); fflush(stdout); | 
					
						
							|  |  |  |     if (system(command) < 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-04 20:51:59 +01:00
										 |  |  | const char DELIMS[] = { " \n" }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int get_mercurial_info(char * hgbranch, char * hgtag, char * hgrev, int size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int result = 0; | 
					
						
							|  |  |  |     char filename[CMD_SIZE]; | 
					
						
							|  |  |  |     char cmdline[CMD_SIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     strcpy_s(filename, CMD_SIZE, "tmpXXXXXX"); | 
					
						
							|  |  |  |     if (_mktemp_s(filename, CMD_SIZE) == 0) { | 
					
						
							|  |  |  |         int rc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         strcpy_s(cmdline, CMD_SIZE, "hg id -bit > "); | 
					
						
							|  |  |  |         strcat_s(cmdline, CMD_SIZE, filename); | 
					
						
							|  |  |  |         rc = system(cmdline); | 
					
						
							|  |  |  |         if (rc == 0) { | 
					
						
							|  |  |  |             FILE * fp; | 
					
						
							|  |  |  |              | 
					
						
							|  |  |  |             if (fopen_s(&fp, filename, "r") == 0) { | 
					
						
							|  |  |  |                 char * cp = fgets(cmdline, CMD_SIZE, fp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (cp) { | 
					
						
							|  |  |  |                     char * context = NULL; | 
					
						
							|  |  |  |                     char * tp = strtok_s(cp, DELIMS, &context); | 
					
						
							|  |  |  |                     if (tp) { | 
					
						
							|  |  |  |                         strcpy_s(hgrev, size, tp); | 
					
						
							|  |  |  |                         tp = strtok_s(NULL, DELIMS, &context); | 
					
						
							|  |  |  |                         if (tp) { | 
					
						
							|  |  |  |                             strcpy_s(hgbranch, size, tp); | 
					
						
							|  |  |  |                             tp = strtok_s(NULL, DELIMS, &context); | 
					
						
							|  |  |  |                             if (tp) { | 
					
						
							|  |  |  |                                 strcpy_s(hgtag, size, tp); | 
					
						
							|  |  |  |                                 result = 1; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 fclose(fp); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         _unlink(filename); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | int main(int argc, char*argv[]) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |     char command[CMD_SIZE] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL "; | 
					
						
							|  |  |  |     char tmppath[CMD_SIZE] = ""; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     int do_unlink, result; | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |     char *tmpdir = NULL; | 
					
						
							|  |  |  |     if (argc <= 2 || argc > 3) { | 
					
						
							|  |  |  |         fprintf(stderr, "make_buildinfo $(ConfigurationName) [tmpdir]\n"); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return EXIT_FAILURE; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (strcmp(argv[1], "Release") == 0) { | 
					
						
							|  |  |  |         strcat_s(command, CMD_SIZE, "-MD "); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (strcmp(argv[1], "Debug") == 0) { | 
					
						
							|  |  |  |         strcat_s(command, CMD_SIZE, "-D_DEBUG -MDd "); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (strcmp(argv[1], "ReleaseItanium") == 0) { | 
					
						
							|  |  |  |         strcat_s(command, CMD_SIZE, "-MD /USECL:MS_ITANIUM "); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (strcmp(argv[1], "ReleaseAMD64") == 0) { | 
					
						
							|  |  |  |         strcat_s(command, CMD_SIZE, "-MD "); | 
					
						
							|  |  |  |         strcat_s(command, CMD_SIZE, "-MD /USECL:MS_OPTERON "); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         fprintf(stderr, "unsupported configuration %s\n", argv[1]); | 
					
						
							|  |  |  |         return EXIT_FAILURE; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |     if (argc > 2) { | 
					
						
							|  |  |  |         tmpdir = argv[2]; | 
					
						
							|  |  |  |         strcat_s(tmppath, _countof(tmppath), tmpdir); | 
					
						
							| 
									
										
										
										
											2010-12-13 03:32:10 +00:00
										 |  |  |         /* Hack fix for bad command line:  If the command is issued like this:
 | 
					
						
							|  |  |  |          * $(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)" | 
					
						
							|  |  |  |          * we will get a trailing quote because IntDir ends with a backslash that then | 
					
						
							|  |  |  |          * escapes the final ".  To simplify the life for developers, catch that problem | 
					
						
							|  |  |  |          * here by cutting it off. | 
					
						
							|  |  |  |          * The proper command line, btw is: | 
					
						
							|  |  |  |          * $(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)\" | 
					
						
							|  |  |  |          * Hooray for command line parsing on windows. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (strlen(tmppath) > 0 && tmppath[strlen(tmppath)-1] == '"') | 
					
						
							|  |  |  |             tmppath[strlen(tmppath)-1] = '\0'; | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |         strcat_s(tmppath, _countof(tmppath), "\\"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-03-09 01:59:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |     if ((do_unlink = make_buildinfo2(tmppath))) { | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, "\""); | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, tmppath); | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, "getbuildinfo2.c\" -DSUBWCREV "); | 
					
						
							| 
									
										
										
										
											2012-05-04 20:51:59 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         char hgtag[CMD_SIZE]; | 
					
						
							|  |  |  |         char hgbranch[CMD_SIZE]; | 
					
						
							|  |  |  |         char hgrev[CMD_SIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (get_mercurial_info(hgbranch, hgtag, hgrev, CMD_SIZE)) { | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, "-DHGBRANCH=\\\""); | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, hgbranch); | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, "\\\""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, " -DHGTAG=\\\""); | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, hgtag); | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, "\\\""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, " -DHGVERSION=\\\""); | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, hgrev); | 
					
						
							|  |  |  |             strcat_s(command, CMD_SIZE, "\\\" "); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, "..\\Modules\\getbuildinfo.c"); | 
					
						
							| 
									
										
										
										
											2012-05-04 20:51:59 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |     strcat_s(command, CMD_SIZE, " -Fo\""); | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |     strcat_s(command, CMD_SIZE, tmppath); | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |     strcat_s(command, CMD_SIZE, "getbuildinfo.o\" -I..\\Include -I..\\PC"); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     puts(command); fflush(stdout); | 
					
						
							|  |  |  |     result = system(command); | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |     if (do_unlink) { | 
					
						
							|  |  |  |         command[0] = '\0'; | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, "\""); | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, tmppath); | 
					
						
							| 
									
										
										
										
											2010-11-22 11:37:06 +00:00
										 |  |  |         strcat_s(command, CMD_SIZE, "getbuildinfo2.c\""); | 
					
						
							| 
									
										
										
										
											2010-11-03 13:57:00 +00:00
										 |  |  |         _unlink(command); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (result < 0) | 
					
						
							|  |  |  |         return EXIT_FAILURE; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } |