1995-08-14 08:46:24 -03:00
|
|
|
# Scan an Apple header file, generating a Python file of generator calls.
|
|
|
|
|
1998-04-17 11:07:56 -03:00
|
|
|
import sys
|
|
|
|
import os
|
2002-08-05 12:39:30 -03:00
|
|
|
from bgenlocations import TOOLBOXDIR, BGENDIR
|
1998-04-17 11:07:56 -03:00
|
|
|
sys.path.append(BGENDIR)
|
1995-08-14 08:46:24 -03:00
|
|
|
from scantools import Scanner
|
|
|
|
|
|
|
|
LONG = "Lists"
|
|
|
|
SHORT = "list"
|
1998-02-20 12:02:09 -04:00
|
|
|
OBJECT = "ListHandle"
|
1995-08-14 08:46:24 -03:00
|
|
|
|
|
|
|
def main():
|
|
|
|
input = LONG + ".h"
|
|
|
|
output = SHORT + "gen.py"
|
1996-04-12 13:29:23 -03:00
|
|
|
defsoutput = TOOLBOXDIR + LONG + ".py"
|
1995-08-14 08:46:24 -03:00
|
|
|
scanner = MyScanner(input, output, defsoutput)
|
|
|
|
scanner.scan()
|
|
|
|
scanner.close()
|
2002-08-15 18:48:16 -03:00
|
|
|
print "=== Testing definitions output code ==="
|
|
|
|
execfile(defsoutput, {}, {})
|
1995-08-14 08:46:24 -03:00
|
|
|
print "=== Done scanning and generating, now importing the generated code... ==="
|
|
|
|
exec "import " + SHORT + "support"
|
|
|
|
print "=== Done. It's up to you to compile it now! ==="
|
|
|
|
|
|
|
|
class MyScanner(Scanner):
|
|
|
|
|
|
|
|
def destination(self, type, name, arglist):
|
|
|
|
classname = "Function"
|
|
|
|
listname = "functions"
|
|
|
|
if arglist:
|
|
|
|
t, n, m = arglist[-1]
|
|
|
|
# This is non-functional today
|
2002-11-29 19:40:48 -04:00
|
|
|
if t in ('ListHandle', 'ListRef') and m == "InMode":
|
1995-08-14 08:46:24 -03:00
|
|
|
classname = "Method"
|
|
|
|
listname = "methods"
|
|
|
|
return classname, listname
|
|
|
|
|
|
|
|
def makeblacklistnames(self):
|
|
|
|
return [
|
|
|
|
"LDispose", # Done by removing the object
|
|
|
|
"LSearch", # We don't want to handle procs just yet
|
2001-11-05 04:27:57 -04:00
|
|
|
"CreateCustomList", # done manually
|
|
|
|
"SetListDefinitionProc",
|
2000-12-10 19:43:49 -04:00
|
|
|
|
|
|
|
# These have funny argument/return values
|
|
|
|
"GetListViewBounds",
|
|
|
|
"GetListCellIndent",
|
|
|
|
"GetListCellSize",
|
|
|
|
"GetListVisibleCells",
|
|
|
|
"GetListClickLocation",
|
|
|
|
"GetListMouseLocation",
|
|
|
|
"GetListDataBounds",
|
|
|
|
"SetListLastClick",
|
1995-08-14 08:46:24 -03:00
|
|
|
]
|
|
|
|
|
|
|
|
def makeblacklisttypes(self):
|
|
|
|
return [
|
2001-11-05 04:27:57 -04:00
|
|
|
"ListClickLoopUPP", # Too difficult for now
|
2001-12-16 16:18:40 -04:00
|
|
|
"ListDefSpecPtr", # later
|
1995-08-14 08:46:24 -03:00
|
|
|
]
|
|
|
|
|
|
|
|
def makerepairinstructions(self):
|
|
|
|
return [
|
|
|
|
([('ListBounds_ptr', '*', 'InMode')],
|
|
|
|
[('Rect_ptr', '*', 'InMode')]),
|
|
|
|
|
|
|
|
([("Cell", "theCell", "OutMode")],
|
|
|
|
[("Cell", "theCell", "InOutMode")]),
|
|
|
|
|
|
|
|
([("void_ptr", "*", "InMode"), ("short", "*", "InMode")],
|
|
|
|
[("InBufferShortsize", "*", "*")]),
|
|
|
|
|
|
|
|
([("void", "*", "OutMode"), ("short", "*", "OutMode")],
|
|
|
|
[("VarOutBufferShortsize", "*", "InOutMode")]),
|
|
|
|
|
2001-02-27 09:00:36 -04:00
|
|
|
# SetListCellIndent doesn't have const
|
|
|
|
([("Point", "indent", "OutMode")],
|
|
|
|
[("Point_ptr", "indent", "InMode")]),
|
|
|
|
|
1995-08-14 08:46:24 -03:00
|
|
|
]
|
1998-04-27 12:09:02 -03:00
|
|
|
|
|
|
|
def writeinitialdefs(self):
|
|
|
|
self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n")
|
|
|
|
|
1995-08-14 08:46:24 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|