cpython/Mac/Modules/qt/qtscan.py

102 lines
2.6 KiB
Python
Raw Normal View History

1995-11-30 11:03:59 -04:00
# Scan an Apple header file, generating a Python file of generator calls.
import addpack
addpack.addpack(':tools:bgen:bgen')
from scantools import Scanner
LONG = "QuickTime"
SHORT = "qt"
1995-11-30 13:42:08 -04:00
OBJECTS = ("Movie", "Track", "Media", "UserData", "TimeBase")
1995-11-30 11:03:59 -04:00
def main():
input = "Movies.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[0]
1995-11-30 13:42:08 -04:00
if t in OBJECTS and m == "InMode":
1995-11-30 11:03:59 -04:00
classname = "Method"
1995-11-30 13:42:08 -04:00
listname = t + "_methods"
1995-11-30 11:03:59 -04:00
return classname, listname
def makeblacklistnames(self):
return [
"DisposeMovie", # Done on python-object disposal
1995-11-30 13:42:08 -04:00
"DisposeMovieTrack", # ditto
"DisposeTrackMedia", # ditto
"DisposeUserData", # ditto
"DisposeTimeBase", # ditto
1995-11-30 11:03:59 -04:00
"GetMovieCreationTime", # type "unsigned long" in C, inparseable
"GetMovieModificationTime", # Ditto
1995-11-30 13:42:08 -04:00
"GetTrackCreationTime", # ditto
"GetTrackModificationTime", # Ditto
"GetMediaCreationTime", # ditto
"GetMediaModificationTime", # Ditto
# The following 4 use 'void *' in an uncontrolled way
# TBD when I've read the manual...
"GetUserDataItem",
"SetUserDataItem",
"SetTextSampleData",
"MCDoAction",
# bgen gets the argument in/out wrong..
"AddTextSample",
"AddTESample",
"AddHiliteSample",
"HiliteTextSample",
1995-11-30 11:03:59 -04:00
]
def makeblacklisttypes(self):
return [
1995-11-30 13:42:08 -04:00
# I don't think we want to do these
"QTSyncTaskPtr",
# We dont do callbacks yet, so no need for these
1995-11-30 11:03:59 -04:00
"QTCallBack",
1995-11-30 13:42:08 -04:00
# Skipped for now, due to laziness
1995-11-30 11:03:59 -04:00
"TimeRecord",
"TimeRecord_ptr",
"TrackEditState",
"MovieEditState",
1995-11-30 13:42:08 -04:00
"MatrixRecord",
"MatrixRecord_ptr",
"SampleReferencePtr",
# "SampleDescription",
# "SoundDescription",
# "TextDescription",
# "MusicDescription",
# I dont know yet how to do these.
1995-11-30 11:03:59 -04:00
"CGrafPtr",
"GDHandle",
1995-11-30 13:42:08 -04:00
# Routine pointers, not yet.
"MoviesErrorUPP",
"MoviePreviewCallOutUPP",
1995-11-30 11:03:59 -04:00
"MovieDrawingCompleteUPP",
"QTCallBackUPP",
"TextMediaUPP",
"MovieProgressUPP",
"MovieRgnCoverUPP",
"MCActionFilterUPP",
"MCActionFilterWithRefConUPP",
1995-11-30 13:42:08 -04:00
"GetMovieUPP",
"ModalFilterUPP",
1995-11-30 11:03:59 -04:00
]
def makerepairinstructions(self):
return [
1995-11-30 13:42:08 -04:00
([('FSSpec', '*', 'OutMode')], [('FSSpec_ptr', '*', 'InMode')]),
1995-11-30 11:03:59 -04:00
]
if __name__ == "__main__":
main()