Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8870426
xhpast.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
xhpast.cpp
View Options
#include
"ast.hpp"
#include
<vector>
#include
<string>
#include
<iostream>
#include
<sstream>
#include
<fstream>
using
namespace
std
;
int
xhpastparse
(
void
*
,
xhpast
::
Node
**
);
int
xhpast_process
(
std
::
string
&
in
);
void
print_node
(
xhpast
::
Node
*
node
);
int
main
(
int
argc
,
char
*
argv
[])
{
vector
<
string
>
files
;
if
(
argc
!=
1
)
{
//coupling: modify also libphutil/src/parser/xhpast/bin/xhpast_parse.php
cout
<<
"xhpast version 5.5.8/1e
\n
"
;
return
0
;
}
ifstream
inputFile
;
istream
*
inputStream
;
inputStream
=
&
cin
;
std
::
stringbuf
sb
;
*
inputStream
>>
noskipws
>>
&
sb
;
std
::
string
buffer
=
sb
.
str
();
inputFile
.
close
();
return
xhpast_process
(
buffer
);
}
int
xhpast_process
(
std
::
string
&
in
)
{
char
*
buffer
;
in
.
reserve
(
in
.
size
()
+
1
);
buffer
=
const_cast
<
char
*>
(
in
.
c_str
());
buffer
[
in
.
size
()
+
1
]
=
0
;
// need double NULL for scan_buffer
void
*
scanner
;
yy_extra_type
extra
;
extra
.
idx_expr
=
true
;
//flags.idx_expr;
extra
.
include_debug
=
true
;
//flags.include_debug;
extra
.
insert_token
=
0
;
//flags.eval ? T_OPEN_TAG_FAKE : 0;
extra
.
short_tags
=
true
;
//flags.short_tags;
extra
.
asp_tags
=
false
;
//flags.asp_tags;
xhpast
::
Node
*
root
=
NULL
;
xhpastlex_init
(
&
scanner
);
xhpastset_extra
(
&
extra
,
scanner
);
xhpast_scan_buffer
(
buffer
,
in
.
size
()
+
2
,
scanner
);
xhpastparse
(
scanner
,
&
root
);
xhpastlex_destroy
(
scanner
);
if
(
extra
.
terminated
)
{
fprintf
(
stderr
,
"XHPAST Parse Error: %s on line %d
\n
"
,
extra
.
error
.
c_str
(),
(
int
)
extra
.
lineno
);
return
1
;
}
printf
(
"{"
);
printf
(
"
\"
tree
\"
:"
);
if
(
root
)
{
// Extend the right token for the root node to the end of the concrete
// token stream. This ensure all tokens appear in the tree. If we don't
// do this and the file ends in tokens which don't go to the parser (like
// comments and whitespace) they won't be represented in the tree.
root
->
r_tok
=
(
extra
.
token_list
.
size
()
-
1
);
print_node
(
root
);
}
else
{
printf
(
"null"
);
}
printf
(
","
);
printf
(
"
\"
stream
\"
:"
);
printf
(
"["
);
if
(
!
extra
.
token_list
.
empty
())
{
for
(
xhpast
::
token_list_t
::
iterator
ii
=
extra
.
token_list
.
begin
();;)
{
printf
(
"[%d, %d]"
,
(
*
ii
)
->
type
,
(
int
)(
*
ii
)
->
value
.
length
());
if
(
++
ii
!=
extra
.
token_list
.
end
())
{
printf
(
","
);
}
else
{
break
;
}
}
}
printf
(
"]"
);
printf
(
"}
\n
"
);
return
0
;
}
void
print_node
(
xhpast
::
Node
*
node
)
{
int
l
=
-
1
;
int
r
=
-
1
;
if
(
node
->
l_tok
!=
-
1
)
{
l
=
node
->
l_tok
;
}
if
(
l
==
-
1
)
{
printf
(
"[%d]"
,
node
->
type
);
}
else
{
if
(
node
->
r_tok
!=
-
1
)
{
r
=
node
->
r_tok
;
}
printf
(
"[%d, %d, %d"
,
node
->
type
,
l
,
r
);
if
(
!
node
->
children
.
empty
())
{
printf
(
", ["
);
for
(
xhpast
::
node_list_t
::
iterator
ii
=
node
->
children
.
begin
();;)
{
print_node
(
*
ii
);
if
(
++
ii
!=
node
->
children
.
end
())
{
printf
(
","
);
}
else
{
break
;
}
}
printf
(
"]"
);
}
printf
(
"]"
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Tue, Jun 8, 6:13 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3376830
Default Alt Text
xhpast.cpp (2 KB)
Attached To
rPHU libphutil
Event Timeline
Log In to Comment