Teach Windows build and installer about new _symtable module/DLL.
[python/dscho.git] / Mac / Modules / scrap / scrapsupport.py
blob1fe9ac23c1166650bb008dd37423c5a3c626e0c6
1 # This script generates a Python interface for an Apple Macintosh Manager.
2 # It uses the "bgen" package to generate C code.
3 # The function specifications are generated by scanning the mamager's header file,
4 # using the "scantools" package (customized for this particular manager).
6 # NOTE: the scrap include file is so bad that the bgen output has to be
7 # massaged by hand.
9 import string
11 # Declarations that change for each manager
12 MACHEADERFILE = 'Scrap.h' # The Apple header file
13 MODNAME = 'Scrap' # The name of the module
15 # The following is *usually* unchanged but may still require tuning
16 MODPREFIX = MODNAME # The prefix for module-wide routines
17 INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
18 OUTPUTFILE = '@' + MODNAME + "module.c" # The file generated by this program
20 from macsupport import *
22 # Create the type objects
24 includestuff = includestuff + """
25 #include <%s>""" % MACHEADERFILE + """
28 ** Generate ScrapInfo records
30 static PyObject *
31 SCRRec_New(itself)
32 ScrapStuff *itself;
35 return Py_BuildValue("lO&hhO&", itself->scrapSize,
36 ResObj_New, itself->scrapHandle, itself->scrapCount, itself->scrapState,
37 PyMac_BuildStr255, itself->scrapName);
39 """
41 ScrapStuffPtr = OpaqueByValueType('ScrapStuffPtr', 'SCRRec')
42 ScrapFlavorType = OSTypeType('ScrapFlavorType')
43 putscrapbuffer = FixedInputBufferType('void *')
45 # Create the generator groups and link them
46 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
48 # Create the generator classes used to populate the lists
49 Function = OSErrFunctionGenerator
51 # Create and populate the lists
52 functions = []
53 execfile(INPUTFILE)
55 # add the populated lists to the generator groups
56 # (in a different wordl the scan program would generate this)
57 for f in functions: module.add(f)
59 # generate output (open the output file as late as possible)
60 SetOutputFileName(OUTPUTFILE)
61 module.generate()