| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-20 19:59:25 +00:00
										 |  |  | #include "code.h"
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | #include "compile.h"
 | 
					
						
							| 
									
										
										
										
											2005-10-20 19:59:25 +00:00
										 |  |  | #include "Python-ast.h"
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | #include "symtable.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | symtable_symtable(PyObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct symtable *st; | 
					
						
							|  |  |  | 	PyObject *t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	char *str; | 
					
						
							|  |  |  | 	char *filename; | 
					
						
							|  |  |  | 	char *startstr; | 
					
						
							|  |  |  | 	int start; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_ParseTuple(args, "sss:symtable", &str, &filename,  | 
					
						
							|  |  |  | 			      &startstr)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (strcmp(startstr, "exec") == 0) | 
					
						
							|  |  |  | 		start = Py_file_input; | 
					
						
							|  |  |  | 	else if (strcmp(startstr, "eval") == 0) | 
					
						
							|  |  |  | 		start = Py_eval_input; | 
					
						
							|  |  |  | 	else if (strcmp(startstr, "single") == 0) | 
					
						
							|  |  |  | 		start = Py_single_input; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 		   "symtable() arg 3 must be 'exec' or 'eval' or 'single'"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	st = Py_SymtableString(str, filename, start); | 
					
						
							|  |  |  | 	if (st == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-10-12 19:09:37 +00:00
										 |  |  | 	t = st->st_symbols; | 
					
						
							|  |  |  | 	Py_INCREF(t); | 
					
						
							| 
									
										
										
										
											2001-12-06 14:34:58 +00:00
										 |  |  | 	PyMem_Free((void *)st->st_future); | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 	PySymtable_Free(st); | 
					
						
							|  |  |  | 	return t; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef symtable_methods[] = { | 
					
						
							|  |  |  | 	{"symtable",	symtable_symtable,	METH_VARARGS, | 
					
						
							| 
									
										
										
										
											2002-08-13 22:20:41 +00:00
										 |  |  | 	 PyDoc_STR("Return symbol and scope dictionaries" | 
					
						
							|  |  |  | 	 	   " used internally by compiler.")}, | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-02 02:27:13 +00:00
										 |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | init_symtable(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = Py_InitModule("_symtable", symtable_methods); | 
					
						
							| 
									
										
										
										
											2006-01-19 06:09:39 +00:00
										 |  |  | 	if (m == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 	PyModule_AddIntConstant(m, "USE", USE); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_GLOBAL", DEF_GLOBAL); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_LOCAL", DEF_LOCAL); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_PARAM", DEF_PARAM); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_STAR", DEF_STAR); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_DOUBLESTAR", DEF_DOUBLESTAR); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_INTUPLE", DEF_INTUPLE); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_FREE", DEF_FREE); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_FREE_GLOBAL", DEF_FREE_GLOBAL); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_FREE_CLASS", DEF_FREE_CLASS); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "DEF_IMPORT", DEF_IMPORT); | 
					
						
							| 
									
										
										
										
											2001-03-22 23:10:44 +00:00
										 |  |  | 	PyModule_AddIntConstant(m, "DEF_BOUND", DEF_BOUND); | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-20 19:59:25 +00:00
										 |  |  | 	PyModule_AddIntConstant(m, "TYPE_FUNCTION", FunctionBlock); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "TYPE_CLASS", ClassBlock); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "TYPE_MODULE", ModuleBlock); | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-16 18:42:13 +00:00
										 |  |  | 	PyModule_AddIntConstant(m, "OPT_IMPORT_STAR", OPT_IMPORT_STAR); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "OPT_EXEC", OPT_EXEC); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "OPT_BARE_EXEC", OPT_BARE_EXEC); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:24:26 +00:00
										 |  |  | 	PyModule_AddIntConstant(m, "LOCAL", LOCAL); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "GLOBAL_EXPLICIT", GLOBAL_EXPLICIT); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "GLOBAL_IMPLICIT", GLOBAL_IMPLICIT); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "FREE", FREE); | 
					
						
							|  |  |  | 	PyModule_AddIntConstant(m, "CELL", CELL); | 
					
						
							|  |  |  | } |