| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  | /* This is built as a stand-alone executable by the Makefile, and helps turn
 | 
					
						
							|  |  |  |    Lib/importlib/_bootstrap.py into a frozen module in Python/importlib.h | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <Python.h>
 | 
					
						
							|  |  |  | #include <marshal.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							| 
									
										
										
										
											2012-07-28 20:46:52 +02:00
										 |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2012-07-28 20:46:52 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* To avoid a circular dependency on frozen.o, we create our own structure
 | 
					
						
							|  |  |  |    of frozen modules instead, left deliberately blank so as to avoid | 
					
						
							|  |  |  |    unintentional import of a stale version of _frozen_importlib. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 14:06:39 -05:00
										 |  |  | const static struct _frozen _PyImport_FrozenModules[] = { | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     {0, 0, 0} /* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-28 21:55:20 +02:00
										 |  |  | #ifndef MS_WINDOWS
 | 
					
						
							|  |  |  | /* On Windows, this links with the regular pythonXY.dll, so this variable comes
 | 
					
						
							|  |  |  |    from frozen.obj. In the Makefile, frozen.o is not linked into this executable, | 
					
						
							|  |  |  |    so we define the variable here. */ | 
					
						
							| 
									
										
										
										
											2013-03-13 14:06:39 -05:00
										 |  |  | const struct _frozen *PyImport_FrozenModules; | 
					
						
							| 
									
										
										
										
											2012-07-28 21:55:20 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  | const char header[] = "/* Auto-generated by Modules/_freeze_importlib.c */"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | main(int argc, char *argv[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char *inpath, *outpath; | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     FILE *infile = NULL, *outfile = NULL; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     struct stat st; | 
					
						
							|  |  |  |     size_t text_size, data_size, n; | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     char *text = NULL; | 
					
						
							| 
									
										
										
										
											2012-06-25 17:32:43 +02:00
										 |  |  |     unsigned char *data; | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     PyObject *code = NULL, *marshalled = NULL; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-28 20:46:52 +02:00
										 |  |  |     PyImport_FrozenModules = _PyImport_FrozenModules; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     if (argc != 3) { | 
					
						
							|  |  |  |         fprintf(stderr, "need to specify input and output paths\n"); | 
					
						
							|  |  |  |         return 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     inpath = argv[1]; | 
					
						
							|  |  |  |     outpath = argv[2]; | 
					
						
							|  |  |  |     infile = fopen(inpath, "rb"); | 
					
						
							|  |  |  |     if (infile == NULL) { | 
					
						
							|  |  |  |         fprintf(stderr, "cannot open '%s' for reading\n", inpath); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (fstat(fileno(infile), &st)) { | 
					
						
							|  |  |  |         fprintf(stderr, "cannot fstat '%s'\n", inpath); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     text_size = st.st_size; | 
					
						
							|  |  |  |     text = (char *) malloc(text_size + 1); | 
					
						
							|  |  |  |     if (text == NULL) { | 
					
						
							|  |  |  |         fprintf(stderr, "could not allocate %ld bytes\n", (long) text_size); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     n = fread(text, 1, text_size, infile); | 
					
						
							|  |  |  |     fclose(infile); | 
					
						
							|  |  |  |     infile = NULL; | 
					
						
							|  |  |  |     if (n < text_size) { | 
					
						
							|  |  |  |         fprintf(stderr, "read too short: got %ld instead of %ld bytes\n", | 
					
						
							|  |  |  |                 (long) n, (long) text_size); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     text[text_size] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_NoUserSiteDirectory++; | 
					
						
							|  |  |  |     Py_NoSiteFlag++; | 
					
						
							|  |  |  |     Py_IgnoreEnvironmentFlag++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_SetProgramName(L"./_freeze_importlib"); | 
					
						
							|  |  |  |     /* Don't install importlib, since it could execute outdated bytecode. */ | 
					
						
							|  |  |  |     _Py_InitializeEx_Private(1, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     code = Py_CompileStringExFlags(text, "<frozen importlib._bootstrap>", | 
					
						
							|  |  |  |                                    Py_file_input, NULL, 0); | 
					
						
							|  |  |  |     if (code == NULL) | 
					
						
							|  |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     free(text); | 
					
						
							|  |  |  |     text = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     marshalled = PyMarshal_WriteObjectToString(code, Py_MARSHAL_VERSION); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     Py_CLEAR(code); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     if (marshalled == NULL) | 
					
						
							|  |  |  |         goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(PyBytes_CheckExact(marshalled)); | 
					
						
							| 
									
										
										
										
											2012-06-25 17:32:43 +02:00
										 |  |  |     data = (unsigned char *) PyBytes_AS_STRING(marshalled); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     data_size = PyBytes_GET_SIZE(marshalled); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-28 20:46:52 +02:00
										 |  |  |     /* Open the file in text mode. The hg checkout should be using the eol extension,
 | 
					
						
							| 
									
										
										
										
											2012-07-28 21:55:20 +02:00
										 |  |  |        which in turn should cause the EOL style match the C library's text mode */ | 
					
						
							|  |  |  |     outfile = fopen(outpath, "w"); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     if (outfile == NULL) { | 
					
						
							|  |  |  |         fprintf(stderr, "cannot open '%s' for writing\n", outpath); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     fprintf(outfile, "%s\n", header); | 
					
						
							| 
									
										
										
										
											2013-03-13 14:06:39 -05:00
										 |  |  |     fprintf(outfile, "const unsigned char _Py_M__importlib[] = {\n"); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     for (n = 0; n < data_size; n += 16) { | 
					
						
							|  |  |  |         size_t i, end = Py_MIN(n + 16, data_size); | 
					
						
							|  |  |  |         fprintf(outfile, "    "); | 
					
						
							|  |  |  |         for (i = n; i < end; i++) { | 
					
						
							| 
									
										
										
										
											2012-06-25 17:32:43 +02:00
										 |  |  |             fprintf(outfile, "%d,", (unsigned int) data[i]); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         fprintf(outfile, "\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fprintf(outfile, "};\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     Py_CLEAR(marshalled); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     if (outfile) { | 
					
						
							|  |  |  |         if (ferror(outfile)) { | 
					
						
							|  |  |  |             fprintf(stderr, "error when writing to '%s'\n", outpath); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |             goto error; | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         fclose(outfile); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | error: | 
					
						
							|  |  |  |     PyErr_Print(); | 
					
						
							|  |  |  |     Py_Finalize(); | 
					
						
							|  |  |  |     if (infile) | 
					
						
							|  |  |  |         fclose(infile); | 
					
						
							|  |  |  |     if (outfile) | 
					
						
							|  |  |  |         fclose(outfile); | 
					
						
							| 
									
										
										
										
											2013-07-21 23:05:04 +02:00
										 |  |  |     if (text) | 
					
						
							|  |  |  |         free(text); | 
					
						
							|  |  |  |     if (marshalled) | 
					
						
							|  |  |  |         Py_DECREF(marshalled); | 
					
						
							| 
									
										
										
										
											2012-06-19 22:29:35 +02:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } |