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
013d46eb
Commit
013d46eb
authored
Oct 29, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #988 from kmod/repl
Parser fix: call fclose
parents
209350e6
cee97659
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
17 deletions
+66
-17
src/codegen/parser.cpp
src/codegen/parser.cpp
+27
-17
src/core/types.h
src/core/types.h
+14
-0
src/runtime/capi.cpp
src/runtime/capi.cpp
+25
-0
No files found.
src/codegen/parser.cpp
View file @
013d46eb
...
...
@@ -1018,13 +1018,26 @@ static std::string getParserCommandLine(const char* fn) {
AST_Module
*
parse_string
(
const
char
*
code
,
FutureFlags
inherited_flags
)
{
inherited_flags
&=
~
(
CO_NESTED
|
CO_FUTURE_DIVISION
);
if
(
ENABLE_CPYTHON_PARSER
)
{
PyCompilerFlags
cf
;
cf
.
cf_flags
=
inherited_flags
;
ArenaWrapper
arena
;
assert
(
arena
);
const
char
*
fn
=
"<string>"
;
mod_ty
mod
=
PyParser_ASTFromString
(
code
,
fn
,
Py_file_input
,
&
cf
,
arena
);
if
(
!
mod
)
throwCAPIException
();
auto
rtn
=
cpythonToPystonAST
(
mod
,
fn
);
return
rtn
;
}
if
(
ENABLE_PYPA_PARSER
||
inherited_flags
)
{
AST_Module
*
rtn
=
pypa_parse_string
(
code
,
inherited_flags
);
RELEASE_ASSERT
(
rtn
,
"unknown parse error (possibly: '%s'?)"
,
strerror
(
errno
));
return
rtn
;
}
ASSERT
(
!
inherited_flags
,
"the old cpython parser doesn't support specifying initial future flags"
);
RELEASE_
ASSERT
(
!
inherited_flags
,
"the old cpython parser doesn't support specifying initial future flags"
);
int
size
=
strlen
(
code
);
char
buf
[]
=
"pystontmp_XXXXXX"
;
...
...
@@ -1035,10 +1048,11 @@ AST_Module* parse_string(const char* code, FutureFlags inherited_flags) {
printf
(
"writing %d bytes to %s
\n
"
,
size
,
tmp
.
c_str
());
}
FILE
*
f
=
fopen
(
tmp
.
c_str
(),
"w"
);
{
FileHandle
f
(
tmp
.
c_str
(),
"w"
);
fwrite
(
code
,
1
,
size
,
f
);
fputc
(
'\n'
,
f
);
fclose
(
f
);
}
AST_Module
*
m
=
parse_file
(
tmp
.
c_str
(),
inherited_flags
);
removeDirectoryIfExists
(
tmpdir
);
...
...
@@ -1050,10 +1064,9 @@ AST_Module* parse_file(const char* fn, FutureFlags inherited_flags) {
Timer
_t
(
"parsing"
);
if
(
ENABLE_CPYTHON_PARSER
)
{
ASSERT
(
!
inherited_flags
,
"unimplemented"
);
FILE
*
fp
=
fopen
(
fn
,
"r"
);
FileHandle
fp
(
fn
,
"r"
);
PyCompilerFlags
cf
;
cf
.
cf_flags
=
0
;
cf
.
cf_flags
=
inherited_flags
;
ArenaWrapper
arena
;
assert
(
arena
);
mod_ty
mod
=
PyParser_ASTFromFile
(
fp
,
fn
,
Py_file_input
,
0
,
0
,
&
cf
,
NULL
,
arena
);
...
...
@@ -1106,7 +1119,7 @@ const char* getMagic() {
static
std
::
vector
<
char
>
_reparse
(
const
char
*
fn
,
const
std
::
string
&
cache_fn
,
AST_Module
*&
module
,
FutureFlags
inherited_flags
)
{
inherited_flags
&=
~
(
CO_NESTED
|
CO_FUTURE_DIVISION
);
F
ILE
*
cache_fp
=
fopen
(
cache_fn
.
c_str
(),
"w"
);
F
ileHandle
cache_fp
(
cache_fn
.
c_str
(),
"w"
);
if
(
DEBUG_PARSING
)
{
fprintf
(
stderr
,
"_reparse('%s', '%s'), pypa=%d
\n
"
,
fn
,
cache_fn
.
c_str
(),
ENABLE_PYPA_PARSER
);
...
...
@@ -1137,10 +1150,9 @@ static std::vector<char> _reparse(const char* fn, const std::string& cache_fn, A
if
(
ENABLE_CPYTHON_PARSER
||
ENABLE_PYPA_PARSER
||
inherited_flags
)
{
if
(
ENABLE_CPYTHON_PARSER
)
{
ASSERT
(
!
inherited_flags
,
"unimplemented"
);
FILE
*
fp
=
fopen
(
fn
,
"r"
);
FileHandle
fp
(
fn
,
"r"
);
PyCompilerFlags
cf
;
cf
.
cf_flags
=
0
;
cf
.
cf_flags
=
inherited_flags
;
ArenaWrapper
arena
;
assert
(
arena
);
mod_ty
mod
=
PyParser_ASTFromFile
(
fp
,
fn
,
Py_file_input
,
0
,
0
,
&
cf
,
NULL
,
arena
);
...
...
@@ -1159,7 +1171,7 @@ static std::vector<char> _reparse(const char* fn, const std::string& cache_fn, A
checksum
=
p
.
second
;
bytes_written
+=
p
.
first
;
}
else
{
ASSERT
(
!
inherited_flags
,
"the old cpython parser doesn't support specifying initial future flags"
);
RELEASE_
ASSERT
(
!
inherited_flags
,
"the old cpython parser doesn't support specifying initial future flags"
);
FILE
*
parser
=
popen
(
getParserCommandLine
(
fn
).
c_str
(),
"r"
);
char
buf
[
80
];
while
(
true
)
{
...
...
@@ -1188,8 +1200,6 @@ static std::vector<char> _reparse(const char* fn, const std::string& cache_fn, A
fwrite
(
&
checksum
,
1
,
CHECKSUM_LENGTH
,
cache_fp
);
memcpy
(
&
file_data
[
checksum_start
+
LENGTH_LENGTH
],
&
checksum
,
CHECKSUM_LENGTH
);
if
(
cache_fp
)
fclose
(
cache_fp
);
return
std
::
move
(
file_data
);
}
...
...
@@ -1221,7 +1231,8 @@ AST_Module* caching_parse_file(const char* fn, FutureFlags inherited_flags) {
&&
cache_stat
.
st_mtim
.
tv_nsec
>
source_stat
.
st_mtim
.
tv_nsec
)))
{
oss
<<
"reading pyc file
\n
"
;
char
buf
[
1024
];
FILE
*
cache_fp
=
fopen
(
cache_fn
.
c_str
(),
"r"
);
FileHandle
cache_fp
(
cache_fn
.
c_str
(),
"r"
);
if
(
cache_fp
)
{
while
(
true
)
{
int
read
=
fread
(
buf
,
1
,
1024
,
cache_fp
);
...
...
@@ -1239,7 +1250,6 @@ AST_Module* caching_parse_file(const char* fn, FutureFlags inherited_flags) {
break
;
}
}
fclose
(
cache_fp
);
}
}
...
...
src/core/types.h
View file @
013d46eb
...
...
@@ -803,6 +803,20 @@ public:
operator
PyArena
*
()
const
{
return
arena
;
}
};
class
FileHandle
{
private:
FILE
*
file
;
public:
FileHandle
(
const
char
*
fn
,
const
char
*
mode
)
:
file
(
fopen
(
fn
,
mode
))
{}
~
FileHandle
()
{
if
(
file
)
fclose
(
file
);
}
operator
FILE
*
()
const
{
return
file
;
}
};
// similar to Java's Array.binarySearch:
// return values are either:
// >= 0 : the index where a given item was found
...
...
src/runtime/capi.cpp
View file @
013d46eb
...
...
@@ -1367,6 +1367,31 @@ cleanup:
#endif
extern
"C"
grammar
_PyParser_Grammar
;
/* Preferred access to parser is through AST. */
extern
"C"
mod_ty
PyParser_ASTFromString
(
const
char
*
s
,
const
char
*
filename
,
int
start
,
PyCompilerFlags
*
flags
,
PyArena
*
arena
)
noexcept
{
mod_ty
mod
;
PyCompilerFlags
localflags
;
perrdetail
err
;
int
iflags
=
PARSER_FLAGS
(
flags
);
node
*
n
=
PyParser_ParseStringFlagsFilenameEx
(
s
,
filename
,
&
_PyParser_Grammar
,
start
,
&
err
,
&
iflags
);
if
(
flags
==
NULL
)
{
localflags
.
cf_flags
=
0
;
flags
=
&
localflags
;
}
if
(
n
)
{
flags
->
cf_flags
|=
iflags
&
PyCF_MASK
;
mod
=
PyAST_FromNode
(
n
,
flags
,
filename
,
arena
);
PyNode_Free
(
n
);
return
mod
;
}
else
{
err_input
(
&
err
);
return
NULL
;
}
}
extern
"C"
mod_ty
PyParser_ASTFromFile
(
FILE
*
fp
,
const
char
*
filename
,
int
start
,
char
*
ps1
,
char
*
ps2
,
PyCompilerFlags
*
flags
,
int
*
errcode
,
PyArena
*
arena
)
noexcept
{
mod_ty
mod
;
...
...
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