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
0257424a
Commit
0257424a
authored
Jul 05, 2005
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow for (optional) const declaration.
parent
82cb9a23
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
20 deletions
+43
-20
Tools/bgen/bgen/bgenBuffer.py
Tools/bgen/bgen/bgenBuffer.py
+25
-12
Tools/bgen/bgen/bgenHeapBuffer.py
Tools/bgen/bgen/bgenHeapBuffer.py
+4
-2
Tools/bgen/bgen/bgenType.py
Tools/bgen/bgen/bgenType.py
+9
-4
Tools/bgen/bgen/bgenVariable.py
Tools/bgen/bgen/bgenVariable.py
+5
-2
No files found.
Tools/bgen/bgen/bgenBuffer.py
View file @
0257424a
...
...
@@ -38,19 +38,26 @@ class FixedInputOutputBufferType(InputOnlyType):
self
.
sizeformat
=
sizeformat
or
type2format
[
sizetype
]
self
.
label_needed
=
0
def
getArgDeclarations
(
self
,
name
,
reference
=
False
):
def
getArgDeclarations
(
self
,
name
,
reference
=
False
,
constmode
=
False
):
if
reference
:
raise
RuntimeError
,
"Cannot pass buffer types by reference"
return
(
self
.
getBufferDeclarations
(
name
)
+
return
(
self
.
getBufferDeclarations
(
name
,
constmode
)
+
self
.
getSizeDeclarations
(
name
))
def
getBufferDeclarations
(
self
,
name
):
return
self
.
getInputBufferDeclarations
(
name
)
+
self
.
getOutputBufferDeclarations
(
name
)
def
getBufferDeclarations
(
self
,
name
,
constmode
=
False
):
return
self
.
getInputBufferDeclarations
(
name
,
constmode
)
+
\
self
.
getOutputBufferDeclarations
(
name
,
constmode
)
def
getInputBufferDeclarations
(
self
,
name
):
return
[
"%s *%s__in__"
%
(
self
.
datatype
,
name
)]
def
getInputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
if
constmode
:
const
=
"const "
else
:
const
=
""
return
[
"%s%s *%s__in__"
%
(
const
,
self
.
datatype
,
name
)]
def
getOutputBufferDeclarations
(
self
,
name
):
def
getOutputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
if
constmode
:
raise
RuntimeError
,
"Cannot use const output buffer"
return
[
"%s %s__out__[%s]"
%
(
self
.
datatype
,
name
,
self
.
size
)]
def
getSizeDeclarations
(
self
,
name
):
...
...
@@ -105,13 +112,13 @@ class FixedCombinedInputOutputBufferType(FixedInputOutputBufferType):
class
InputOnlyBufferMixIn
(
InputOnlyMixIn
):
def
getOutputBufferDeclarations
(
self
,
name
):
def
getOutputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
return
[]
class
OutputOnlyBufferMixIn
(
OutputOnlyMixIn
):
def
getInputBufferDeclarations
(
self
,
name
):
def
getInputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
return
[]
class
OptionalInputBufferMixIn
:
...
...
@@ -186,8 +193,12 @@ class StructInputOutputBufferType(FixedInputOutputBufferType):
FixedInputOutputBufferType
.
__init__
(
self
,
"sizeof(%s)"
%
type
)
self
.
typeName
=
self
.
type
=
type
def
getInputBufferDeclarations
(
self
,
name
):
return
[
"%s *%s__in__"
%
(
self
.
type
,
name
)]
def
getInputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
if
constmode
:
const
=
"const "
else
:
const
=
""
return
[
"%s%s *%s__in__"
%
(
const
,
self
.
type
,
name
)]
def
getSizeDeclarations
(
self
,
name
):
return
[]
...
...
@@ -195,7 +206,9 @@ class StructInputOutputBufferType(FixedInputOutputBufferType):
def
getAuxDeclarations
(
self
,
name
):
return
[
"int %s__in_len__"
%
(
name
)]
def
getOutputBufferDeclarations
(
self
,
name
):
def
getOutputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
if
constmode
:
raise
RuntimeError
,
"Cannot use const output buffer"
return
[
"%s %s__out__"
%
(
self
.
type
,
name
)]
def
getargsArgs
(
self
,
name
):
...
...
Tools/bgen/bgen/bgenHeapBuffer.py
View file @
0257424a
...
...
@@ -16,7 +16,9 @@ class HeapInputOutputBufferType(FixedInputOutputBufferType):
def
__init__
(
self
,
datatype
=
'char'
,
sizetype
=
'int'
,
sizeformat
=
None
):
FixedInputOutputBufferType
.
__init__
(
self
,
"0"
,
datatype
,
sizetype
,
sizeformat
)
def
getOutputBufferDeclarations
(
self
,
name
):
def
getOutputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
if
constmode
:
raise
RuntimeError
,
"Cannot use const output buffer"
return
[
"%s *%s__out__"
%
(
self
.
datatype
,
name
)]
def
getargsCheck
(
self
,
name
):
...
...
@@ -74,7 +76,7 @@ class HeapOutputBufferType(OutputOnlyMixIn, HeapInputOutputBufferType):
Call from Python with buffer size.
"""
def
getInputBufferDeclarations
(
self
,
name
):
def
getInputBufferDeclarations
(
self
,
name
,
constmode
=
False
):
return
[]
def
getargsFormat
(
self
):
...
...
Tools/bgen/bgen/bgenType.py
View file @
0257424a
...
...
@@ -29,13 +29,18 @@ class Type:
for
decl
in
self
.
getAuxDeclarations
(
name
):
Output
(
"%s;"
,
decl
)
def
getArgDeclarations
(
self
,
name
,
reference
=
False
):
def
getArgDeclarations
(
self
,
name
,
reference
=
False
,
constmode
=
False
):
"""Return the main part of the declarations for this type: the items
that will be passed as arguments in the C/C++ function call."""
if
reference
:
re
turn
[
"%s& %s"
%
(
self
.
typeName
,
name
)]
re
f
=
"&"
else
:
return
[
"%s %s"
%
(
self
.
typeName
,
name
)]
ref
=
""
if
constmode
:
const
=
"const "
else
:
const
=
""
return
[
"%s%s%s %s"
%
(
const
,
self
.
typeName
,
ref
,
name
)]
def
getAuxDeclarations
(
self
,
name
):
"""Return any auxiliary declarations needed for implementing this
...
...
@@ -208,7 +213,7 @@ class FakeType(InputOnlyType):
self
.
substitute
=
substitute
self
.
typeName
=
None
# Don't show this argument in __doc__ string
def
getArgDeclarations
(
self
,
name
,
reference
=
False
):
def
getArgDeclarations
(
self
,
name
,
reference
=
False
,
constmode
=
False
):
return
[]
def
getAuxDeclarations
(
self
,
name
,
reference
=
False
):
...
...
Tools/bgen/bgen/bgenVariable.py
View file @
0257424a
...
...
@@ -45,9 +45,12 @@ class Variable:
elif
self
.
flags
!=
SelfMode
:
self
.
type
.
declare
(
self
.
name
)
def
getArgDeclarations
(
self
):
def
getArgDeclarations
(
self
,
constmode
=
False
):
refmode
=
(
self
.
flags
&
RefMode
)
return
self
.
type
.
getArgDeclarations
(
self
.
name
,
reference
=
refmode
)
if
constmode
:
constmode
=
(
self
.
flags
&
ConstMode
)
return
self
.
type
.
getArgDeclarations
(
self
.
name
,
reference
=
refmode
,
constmode
=
constmode
)
def
getAuxDeclarations
(
self
):
return
self
.
type
.
getAuxDeclarations
(
self
.
name
)
...
...
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