Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
1397605e
Commit
1397605e
authored
Dec 14, 2014
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move from our custom getargs.cpp to CPythons getargs.c
parent
86b3f636
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1910 additions
and
248 deletions
+1910
-248
Makefile
Makefile
+1
-1
lib_python/2.7_Python/getargs.c
lib_python/2.7_Python/getargs.c
+1909
-0
src/capi/getargs.cpp
src/capi/getargs.cpp
+0
-247
No files found.
Makefile
View file @
1397605e
...
...
@@ -278,7 +278,7 @@ STDLIB_RELEASE_OBJS := stdlib.release.bc.o
STDMODULE_SRCS
:=
errnomodule.c shamodule.c sha256module.c sha512module.c _math.c mathmodule.c md5.c md5module.c _randommodule.c _sre.c operator.c binascii.c pwdmodule.c
$(EXTRA_STDMODULE_SRCS)
STDOBJECT_SRCS
:=
structseq.c capsule.c
$(EXTRA_STDOBJECT_SRCS)
STDPYTHON_SRCS
:=
pyctype.c
$(EXTRA_STDPYTHON_SRCS)
STDPYTHON_SRCS
:=
pyctype.c
getargs.c
$(EXTRA_STDPYTHON_SRCS)
FROM_CPYTHON_SRCS
:=
$(
addprefix
lib_python/2.7_Modules/,
$(STDMODULE_SRCS)
)
$(
addprefix
lib_python/2.7_Objects/,
$(STDOBJECT_SRCS)
)
$(
addprefix
lib_python/2.7_Python/,
$(STDPYTHON_SRCS)
)
# The stdlib objects have slightly longer dependency chains,
...
...
lib_python/2.7_Python/getargs.c
0 → 100644
View file @
1397605e
This diff is collapsed.
Click to expand it.
src/capi/getargs.cpp
deleted
100644 → 0
View file @
86b3f636
// Copyright (c) 2014 Dropbox, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Hopefully soon we will be able to switch to CPython's getargs.c, instead of having
// to reimplement it. For now, it's easier to create simple versions of the functions
// instead of trying to support all of the internals of getargs.c
#include <dlfcn.h>
#include <stdarg.h>
#include <string.h>
#include "Python.h"
#include "core/threading.h"
#include "core/types.h"
#include "runtime/objmodel.h"
#include "runtime/types.h"
namespace
pyston
{
#define FLAG_COMPAT 1
#define FLAG_SIZE_T 2
// This function is named after the CPython one:
static
int
vgetargs1
(
PyObject
*
_tuple
,
const
char
*
fmt
,
va_list
*
ap
,
int
flags
)
{
RELEASE_ASSERT
(
_tuple
->
cls
==
tuple_cls
,
""
);
BoxedTuple
*
tuple
=
static_cast
<
BoxedTuple
*>
(
_tuple
);
bool
now_optional
=
false
;
int
arg_idx
=
0
;
int
tuple_size
=
tuple
->
elts
.
size
();
while
(
char
c
=
*
fmt
)
{
fmt
++
;
if
(
c
==
':'
)
{
break
;
}
else
if
(
c
==
'|'
)
{
now_optional
=
true
;
continue
;
}
else
{
if
(
arg_idx
>=
tuple_size
)
{
RELEASE_ASSERT
(
now_optional
,
""
);
break
;
}
PyObject
*
arg
=
tuple
->
elts
[
arg_idx
];
arg_idx
++
;
switch
(
c
)
{
case
'i'
:
{
// signed int
int
*
p
=
(
int
*
)
va_arg
(
*
ap
,
int
*
);
RELEASE_ASSERT
(
arg
->
cls
==
int_cls
,
"%s"
,
getTypeName
(
arg
)
->
c_str
());
int64_t
n
=
static_cast
<
BoxedInt
*>
(
arg
)
->
n
;
RELEASE_ASSERT
(
n
>=
INT_MIN
,
""
);
RELEASE_ASSERT
(
n
<=
INT_MAX
,
""
);
*
p
=
n
;
break
;
}
case
'n'
:
{
// ssize_t
Py_ssize_t
*
p
=
(
Py_ssize_t
*
)
va_arg
(
*
ap
,
Py_ssize_t
*
);
// could also be a long:
RELEASE_ASSERT
(
arg
->
cls
==
int_cls
,
"%s"
,
getTypeName
(
arg
)
->
c_str
());
int64_t
n
=
static_cast
<
BoxedInt
*>
(
arg
)
->
n
;
*
p
=
n
;
break
;
}
case
'd'
:
{
// double
double
*
p
=
(
double
*
)
va_arg
(
*
ap
,
double
*
);
RELEASE_ASSERT
(
arg
->
cls
==
float_cls
,
"%s"
,
getTypeName
(
arg
)
->
c_str
());
*
p
=
static_cast
<
BoxedFloat
*>
(
arg
)
->
d
;
break
;
}
case
's'
:
{
if
(
*
fmt
==
'*'
)
{
Py_buffer
*
p
=
(
Py_buffer
*
)
va_arg
(
*
ap
,
Py_buffer
*
);
RELEASE_ASSERT
(
arg
->
cls
==
str_cls
,
""
);
PyBuffer_FillInfo
(
p
,
arg
,
PyString_AS_STRING
(
arg
),
PyString_GET_SIZE
(
arg
),
1
,
0
);
fmt
++
;
}
else
if
(
*
fmt
==
':'
)
{
break
;
}
else
{
RELEASE_ASSERT
(
0
,
""
);
}
break
;
}
case
'O'
:
{
if
(
fmt
&&
*
fmt
==
'!'
)
{
fmt
++
;
PyObject
*
_cls
=
(
PyObject
*
)
va_arg
(
*
ap
,
PyObject
*
);
PyObject
**
p
=
(
PyObject
**
)
va_arg
(
*
ap
,
PyObject
**
);
RELEASE_ASSERT
(
_cls
->
cls
==
type_cls
,
"%s"
,
getTypeName
(
_cls
)
->
c_str
());
PyTypeObject
*
cls
=
static_cast
<
PyTypeObject
*>
(
_cls
);
if
(
!
isSubclass
(
arg
->
cls
,
cls
))
{
// should raise a TypeError
abort
();
}
*
p
=
arg
;
}
else
if
(
fmt
&&
*
fmt
==
'&'
)
{
// Copied from CPython:
typedef
int
(
*
converter
)(
PyObject
*
,
void
*
);
converter
convert
=
va_arg
(
*
ap
,
converter
);
void
*
addr
=
va_arg
(
*
ap
,
void
*
);
fmt
++
;
if
(
!
(
*
convert
)(
arg
,
addr
))
{
Py_FatalError
(
"unsupported error case"
);
}
}
else
{
RELEASE_ASSERT
(
*
fmt
!=
'?'
,
"unsupported"
);
PyObject
**
p
=
(
PyObject
**
)
va_arg
(
*
ap
,
PyObject
**
);
*
p
=
arg
;
}
break
;
}
default:
RELEASE_ASSERT
(
0
,
"Unhandled format character: '%c'"
,
c
);
}
}
}
return
1
;
}
extern
"C"
int
PyArg_VaParse
(
PyObject
*
_tuple
,
const
char
*
fmt
,
va_list
ap
)
{
va_list
lva
;
__va_copy
(
lva
,
ap
);
return
vgetargs1
(
_tuple
,
fmt
,
&
lva
,
0
);
}
extern
"C"
int
_PyArg_Parse_SizeT
(
PyObject
*
args
,
char
*
format
,
...)
{
int
retval
;
va_list
va
;
va_start
(
va
,
format
);
retval
=
vgetargs1
(
args
,
format
,
&
va
,
FLAG_COMPAT
|
FLAG_SIZE_T
);
va_end
(
va
);
return
retval
;
}
extern
"C"
int
PyArg_ParseTuple
(
PyObject
*
_tuple
,
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
int
r
=
vgetargs1
(
_tuple
,
fmt
,
&
ap
,
0
);
va_end
(
ap
);
return
r
;
}
extern
"C"
int
_PyArg_ParseTuple_SizeT
(
PyObject
*
args
,
char
*
format
,
...)
{
int
retval
;
va_list
va
;
va_start
(
va
,
format
);
retval
=
vgetargs1
(
args
,
format
,
&
va
,
FLAG_SIZE_T
);
va_end
(
va
);
return
retval
;
}
extern
"C"
int
PyArg_ParseTupleAndKeywords
(
PyObject
*
args
,
PyObject
*
kwargs
,
const
char
*
format
,
char
**
kwlist
,
...)
{
assert
(
kwargs
->
cls
==
dict_cls
);
RELEASE_ASSERT
(
static_cast
<
BoxedDict
*>
(
kwargs
)
->
d
.
size
()
==
0
,
""
);
va_list
ap
;
va_start
(
ap
,
kwlist
);
int
r
=
vgetargs1
(
args
,
format
,
&
ap
,
0
);
va_end
(
ap
);
return
r
;
}
extern
"C"
int
_PyArg_ParseTupleAndKeywords_SizeT
(
PyObject
*
args
,
PyObject
*
keywords
,
const
char
*
format
,
char
**
kwlist
,
...)
{
if
((
args
==
NULL
||
!
PyTuple_Check
(
args
))
||
(
keywords
!=
NULL
&&
!
PyDict_Check
(
keywords
))
||
format
==
NULL
||
kwlist
==
NULL
)
{
PyErr_BadInternalCall
();
return
0
;
}
assert
(
keywords
->
cls
==
dict_cls
);
RELEASE_ASSERT
(
static_cast
<
BoxedDict
*>
(
keywords
)
->
d
.
size
()
==
0
,
""
);
va_list
ap
;
va_start
(
ap
,
kwlist
);
int
r
=
vgetargs1
(
args
,
format
,
&
ap
,
FLAG_SIZE_T
);
va_end
(
ap
);
return
r
;
}
extern
"C"
int
PyArg_UnpackTuple
(
PyObject
*
args
,
const
char
*
name
,
Py_ssize_t
min
,
Py_ssize_t
max
,
...)
{
RELEASE_ASSERT
(
args
->
cls
==
tuple_cls
,
""
);
BoxedTuple
*
t
=
static_cast
<
BoxedTuple
*>
(
args
);
RELEASE_ASSERT
(
min
<=
t
->
elts
.
size
()
&&
t
->
elts
.
size
()
<=
max
,
""
);
va_list
ap
;
va_start
(
ap
,
max
);
for
(
auto
e
:
t
->
elts
)
{
PyObject
**
p
=
(
PyObject
**
)
va_arg
(
ap
,
PyObject
**
);
*
p
=
e
;
}
va_end
(
ap
);
return
true
;
}
extern
"C"
int
_PyArg_NoKeywords
(
const
char
*
funcname
,
PyObject
*
kw
)
{
if
(
kw
==
NULL
)
return
1
;
if
(
kw
->
cls
!=
dict_cls
)
{
PyErr_BadInternalCall
();
return
0
;
}
if
(
static_cast
<
BoxedDict
*>
(
kw
)
->
d
.
empty
())
return
1
;
PyErr_Format
(
PyExc_TypeError
,
"%s does not take keyword arguments"
,
funcname
);
return
0
;
}
}
// namespace pyston
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