Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
15219ce2
Commit
15219ce2
authored
Jan 09, 2003
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started on implementing support for FSCatalogInfo. Doesn't work yet, don't
try it.
parent
e81dccef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
2 deletions
+60
-2
Mac/Modules/file/filescan.py
Mac/Modules/file/filescan.py
+11
-2
Mac/Modules/file/filesupport.py
Mac/Modules/file/filesupport.py
+49
-0
No files found.
Mac/Modules/file/filescan.py
View file @
15219ce2
...
...
@@ -134,8 +134,6 @@ class MyScanner(Scanner_OSX):
"CatPositionRec"
,
# State variable, not too difficult
"FSCatalogInfo"
,
# Lots of fields, difficult struct
"FSCatalogInfo_ptr"
,
# Lots of fields, difficult struct
"FSIterator"
,
# Should become an object
"FSForkInfo"
,
# Lots of fields, difficult struct
"FSSearchParams"
,
# Also catsearch stuff
...
...
@@ -180,6 +178,17 @@ class MyScanner(Scanner_OSX):
([(
'FSRef_ptr'
,
'fromFile'
,
'InMode'
)],
[(
'OptFSRefPtr'
,
'fromFile'
,
'InMode'
)]),
# FSCatalogInfo input handling
([(
'FSCatalogInfoBitmap'
,
'whichInfo'
,
'InMode'
),
(
'FSCatalogInfo_ptr'
,
'catalogInfo'
,
'InMode'
)],
[(
'FSCatalogInfoAndBitmap_in'
,
'catalogInfo'
,
'InMode'
)]),
# FSCatalogInfo output handling
([(
'FSCatalogInfoBitmap'
,
'whichInfo'
,
'InMode'
),
(
'FSCatalogInfo'
,
'catalogInfo'
,
'OutMode'
)],
[(
'FSCatalogInfoAndBitmap_out'
,
'catalogInfo'
,
'InOutMode'
)]),
]
...
...
Mac/Modules/file/filesupport.py
View file @
15219ce2
...
...
@@ -50,6 +50,53 @@ class OptionalFSxxxType(OpaqueByValueType):
def
declare
(
self
,
name
):
Output
(
"%s %s__buf__;"
,
self
.
typeName
,
name
)
Output
(
"%s *%s = &%s__buf__;"
,
self
.
typeName
,
name
,
name
)
class
FSCatalogInfoAndBitmapType
(
InputOnlyType
):
def
__init__
(
self
):
InputOnlyType
.
__init__
(
self
,
"BUG"
,
"BUG"
)
def
declare
(
self
,
name
):
Output
(
"PyObject *%s__object;"
,
name
)
Output
(
"FSCatalogInfoBitname %s__bitmap;"
,
name
)
Output
(
"FSCatalogInfo %s;"
,
name
)
def
getargsFormat
(
self
):
return
"lO"
def
getargsArgs
(
self
,
name
):
return
"%s__bitmap, %s__object"
%
(
name
,
name
)
def
getargsCheck
(
self
,
name
):
Output
(
"convert_FSCatalogInfo(%s__object, %s__bitmap, %s);"
,
name
,
name
,
name
)
def
passOutput
(
self
,
name
):
return
"%s__bitmap, %s"
%
(
name
,
name
)
def
mkvalueFormat
(
self
):
return
"O"
def
mkvalueArgs
(
self
,
name
):
return
"%s__object"
%
(
name
)
def
xxxxmkvalueCheck
(
self
,
name
):
Output
(
"%s__object = new_FSCatalogInfo(%s__bitmap, %s);"
,
name
,
name
)
class
FSCatalogInfoAndBitmap_inType
(
FSCatalogInfoAndBitmapType
,
InputOnlyMixIn
):
def
xxxxmkvalueCheck
(
self
,
name
):
pass
class
FSCatalogInfoAndBitmap_outType
(
FSCatalogInfoAndBitmapType
):
def
getargsFormat
(
self
):
return
"l"
def
getargsArgs
(
self
,
name
):
return
"%s__bitmap"
%
name
def
getargsCheck
(
self
,
name
):
pass
FInfo
=
OpaqueType
(
"FInfo"
,
"FInfo"
)
FInfo_ptr
=
OpaqueType
(
"FInfo"
,
"FInfo"
)
...
...
@@ -60,6 +107,8 @@ OptFSSpecPtr = OptionalFSxxxType("FSSpec", "BUG", "myPyMac_GetOptFSSpecPtr")
FSRef
=
OpaqueType
(
"FSRef"
,
"FSRef"
)
FSRef_ptr
=
OpaqueType
(
"FSRef"
,
"FSRef"
)
OptFSRefPtr
=
OptionalFSxxxType
(
"FSRef"
,
"BUG"
,
"myPyMac_GetOptFSRefPtr"
)
FSCatalogInfoAndBitmap_in
=
FSCatalogInfoAndBitmap_inType
()
FSCatalogInfoAndBitmap_out
=
FSCatalogInfoAndBitmap_outType
()
# To be done:
#CatPositionRec
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment