mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Interface to the Mac List Manager.
This commit is contained in:
parent
f33a69f273
commit
a4b1d0030e
6 changed files with 1049 additions and 0 deletions
73
Mac/Modules/list/listscan.py
Normal file
73
Mac/Modules/list/listscan.py
Normal file
|
@ -0,0 +1,73 @@
|
|||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import addpack
|
||||
addpack.addpack(':tools:bgen:bgen')
|
||||
from scantools import Scanner
|
||||
|
||||
LONG = "Lists"
|
||||
SHORT = "list"
|
||||
OBJECT = "ListRef"
|
||||
|
||||
def main():
|
||||
input = LONG + ".h"
|
||||
output = SHORT + "gen.py"
|
||||
defsoutput = LONG + ".py"
|
||||
scanner = MyScanner(input, output, defsoutput)
|
||||
scanner.scan()
|
||||
scanner.close()
|
||||
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
|
||||
if t == OBJECT and m == "InMode":
|
||||
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
|
||||
"LGetCellDataLocation", # What does this do??
|
||||
]
|
||||
|
||||
def makeblacklisttypes(self):
|
||||
return [
|
||||
]
|
||||
|
||||
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")]),
|
||||
|
||||
# ([("void", "wStorage", "OutMode")],
|
||||
# [("NullStorage", "*", "InMode")]),
|
||||
#
|
||||
# # GetKeys
|
||||
# ([('KeyMap', 'theKeys', 'InMode')],
|
||||
# [('*', '*', 'OutMode')]),
|
||||
#
|
||||
# # GetTicker
|
||||
# ([('unsigned long', '*', '*')],
|
||||
# [('unsigned_long', '*', '*')]),
|
||||
]
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue