1996-04-12 13:25:30 -03:00
|
|
|
# This script generates a Python interface for an Apple Macintosh Manager.
|
|
|
|
# It uses the "bgen" package to generate C code.
|
|
|
|
# The function specifications are generated by scanning the mamager's header file,
|
|
|
|
# using the "scantools" package (customized for this particular manager).
|
|
|
|
|
|
|
|
# NOTE: the scrap include file is so bad that the bgen output has to be
|
|
|
|
# massaged by hand.
|
|
|
|
|
|
|
|
import string
|
|
|
|
|
|
|
|
# Declarations that change for each manager
|
|
|
|
MACHEADERFILE = 'Scrap.h' # The Apple header file
|
2001-08-23 10:51:46 -03:00
|
|
|
MODNAME = '_Scrap' # The name of the module
|
2001-12-31 10:52:03 -04:00
|
|
|
OBJECTNAME = 'Scrap' # The basic name of the objects used here
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
# The following is *usually* unchanged but may still require tuning
|
2001-08-23 10:51:46 -03:00
|
|
|
MODPREFIX = 'Scrap' # The prefix for module-wide routines
|
2001-12-31 10:52:03 -04:00
|
|
|
OBJECTTYPE = OBJECTNAME + 'Ref' # The C type used to represent them
|
|
|
|
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
|
1996-04-12 13:25:30 -03:00
|
|
|
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
|
|
|
|
OUTPUTFILE = '@' + MODNAME + "module.c" # The file generated by this program
|
|
|
|
|
|
|
|
from macsupport import *
|
|
|
|
|
|
|
|
# Create the type objects
|
2001-12-31 10:52:03 -04:00
|
|
|
ScrapRef = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX)
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
includestuff = includestuff + """
|
2002-11-18 11:26:43 -04:00
|
|
|
#ifndef PyDoc_STR
|
|
|
|
#define PyDoc_STR(x) (x)
|
|
|
|
#endif
|
2001-05-22 18:56:42 -03:00
|
|
|
#ifdef WITHOUT_FRAMEWORKS
|
|
|
|
#include <Scrap.h>
|
|
|
|
#else
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#endif
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Generate ScrapInfo records
|
|
|
|
*/
|
2001-01-24 12:04:01 -04:00
|
|
|
static PyObject *
|
|
|
|
SCRRec_New(itself)
|
1996-04-12 13:25:30 -03:00
|
|
|
ScrapStuff *itself;
|
|
|
|
{
|
|
|
|
|
|
|
|
return Py_BuildValue("lO&hhO&", itself->scrapSize,
|
|
|
|
ResObj_New, itself->scrapHandle, itself->scrapCount, itself->scrapState,
|
2001-01-24 12:04:01 -04:00
|
|
|
PyMac_BuildStr255, itself->scrapName);
|
1996-04-12 13:25:30 -03:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2001-01-24 12:04:01 -04:00
|
|
|
ScrapStuffPtr = OpaqueByValueType('ScrapStuffPtr', 'SCRRec')
|
|
|
|
ScrapFlavorType = OSTypeType('ScrapFlavorType')
|
2001-12-31 10:52:03 -04:00
|
|
|
ScrapFlavorFlags = Type('ScrapFlavorFlags', 'l')
|
|
|
|
#ScrapFlavorInfo = OpaqueType('ScrapFlavorInfo', 'ScrapFlavorInfo')
|
1996-04-12 13:25:30 -03:00
|
|
|
putscrapbuffer = FixedInputBufferType('void *')
|
|
|
|
|
2002-12-03 19:40:22 -04:00
|
|
|
class MyObjectDefinition(PEP253Mixin, GlobalObjectDefinition):
|
2001-12-31 10:52:03 -04:00
|
|
|
pass
|
|
|
|
|
1996-04-12 13:25:30 -03:00
|
|
|
# Create the generator groups and link them
|
|
|
|
module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
2001-12-31 10:52:03 -04:00
|
|
|
object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE)
|
|
|
|
module.addobject(object)
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
# Create the generator classes used to populate the lists
|
|
|
|
Function = OSErrFunctionGenerator
|
2001-12-31 10:52:03 -04:00
|
|
|
Method = OSErrMethodGenerator
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
# Create and populate the lists
|
|
|
|
functions = []
|
2001-12-31 10:52:03 -04:00
|
|
|
methods = []
|
1996-04-12 13:25:30 -03:00
|
|
|
execfile(INPUTFILE)
|
|
|
|
|
|
|
|
# add the populated lists to the generator groups
|
|
|
|
# (in a different wordl the scan program would generate this)
|
|
|
|
for f in functions: module.add(f)
|
2001-12-31 10:52:03 -04:00
|
|
|
for f in methods: object.add(f)
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
# generate output (open the output file as late as possible)
|
|
|
|
SetOutputFileName(OUTPUTFILE)
|
|
|
|
module.generate()
|
|
|
|
|