-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparser.html
189 lines (162 loc) · 6.17 KB
/
parser.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?xml version="1.0" encoding="UTF-8"?>
<html>
<head>
<title>The BeanShell Parser</title>
</head>
<body bgcolor="ffffff">
<table cellspacing="10">
<tr>
<td align="center"><a href="http://www.beanshell.org/"><img src="images/homebutton.png" /><br />Home</a>
</td>
<td><a href="bshdoc.html#BshDoc_-_Javadoc_Style_Documentation"><img
src="images/backbutton.png" /><br />Back
</a></td>
<td align="center"><a href="contents.html"><img src="images/upbutton.png" /><br />Contents</a></td>
<td align="center"><a href="jconsole.html#Using_JConsole"><img
src="images/forwardbutton.png" /><br />Next
</a></td>
</tr>
</table>
<h1>The BeanShell Parser</h1>
This BeanShell parser class bsh.Parser is used internally by the BeanShell
Interpreter. It is responsible for the lexical parsing of the input text,
the application of the grammar structure, and the building of an internal
representation of the BeanShell script file called an "abstract syntax tree"
(AST).
<p CLEAR="ALL" />
The Parser just analyzes the language syntax. It knows only how to parse the
structure of the language - it does not interpret names, or execute methods
or commands. You can use the Parser directly if you have a need to
analyze the structure of BeanShell scripts or Java methods and statements
in general.
<p CLEAR="ALL" />
<h2><a name="Validating_Scripts_With_bsh.Parser">Validating Scripts With bsh.Parser</a></h2>
You can use the Parser class from the command line to do basic structural
validation of BeanShell files without actually executing them. e.g.
<p />
<center>
<table border="1" cellpadding="5" width="100%">
<tr>
<td bgcolor="#dfdfdc">
<pre>
java bsh.Parser [ -p ] file [ file ] [ ... ]
</pre>
</td>
</tr>
</table>
</center>
<p />
The -p option causes some of the abstract syntax to be printed.
<p CLEAR="ALL" />
The parser will detect any syntax errors in the script and print an error.
Note again that names, imports, and string evaluations are analyzed only for
syntax - not content or meaning.
<p CLEAR="ALL" />
<h2><a name="Parsing_and_Performance">Parsing and Performance</a></h2>
It is useful to have a high level understanding how BeanShell works
with scripts to understand performance issues.
<p CLEAR="ALL" />
The first time a script is read or sourced into an interpreter,
BeanShell uses the parser to parse the script internally to an AST.
The AST consists of Java object representations of all of the language
structures and objects. The AST consists of Java classes, but is
<em>not</em> the same as compiled Java code. When the script is "executed"
BeanShell steps through each element of the AST and tells it to perform
whatever it does (e.g. a variable assignment, for-loop, etc.).
This execution of the ASTs is generally much faster than the original parsing
of the text of the method. It is really only limited by the speed of the
application calls that it is making, the speed of the Java reflection API,
and the efficiency of the implementation of the structures in BeanShell.
<p CLEAR="ALL" />
When parsing "line by line" through a BeanShell script the ASTs are routinely
executed and then thrown away. However the case of a BeanShell method
declaration is different. A BeanShell method is parsed only once: when it
is declared in the script. It is then stored in the namespace like any
variable. Successive invocations of the method execute the ASTs again, but
do not re-parse the original text.
<p CLEAR="ALL" />
This means that successive calls to the same scripted method are as fast
as possible - much faster than re-parsing the script each time.
You can use this to your advantage when
running the same script many times simply by wrapping your code in the form
of a BeanShell scripted method and executing the method repeatedly, rather
than sourcing the script repeatedly. For example:
<p />
<center>
<table border="1" cellpadding="5" width="100%">
<tr>
<td bgcolor="#dfdfdc">
<pre>
// From Java
import bsh.Interpreter;
i=new Interpreter();
// Declare method or source from file
i.eval("foo( args ) { ... }");
i.eval("foo(args)"); // repeatedly invoke the method
i.eval("foo(args)");
...
</pre>
</td>
</tr>
</table>
</center>
<p />
In the above example we defined a method called foo() which holds our
script. Then we executed the method repeatedly. The foo() method was
parsed only once: when its declaration was evaluated. Subsequent invocations
simply execute the AST.
<h2><a name="Parsing_Scripts_Procedurally">Parsing Scripts Procedurally</a></h2>
If you are willing to learn about the BeanShell abstract syntax tree classes
you can use the Parser to parse a BeanShell script into its ASTs like this:
<p />
<center>
<table border="1" cellpadding="5" width="100%">
<tr>
<td bgcolor="#dfdfdc">
<pre>
in=new FileReader("somefile.bsh");
Parser parser = new Parser(in);
while( !(eof=parser.Line()) ) {
SimpleNode node = parser.popNode();
// Use the node, etc. (See the bsh.BSH* classes)
...
}
</pre>
</td>
</tr>
</table>
</center>
<p />
To learn more about the abstract syntax tree please download the source
distribution and consult the source documentation.
<p CLEAR="ALL" />
<p />
<center>
<table cellpadding="5" border="1" width="100%">
<tr>
<td><strong>Tip:</strong><br CLEAR="ALL" />
The BshDoc bshdoc.bsh script uses the parser to extract method signatures
and comments from a BeanShell file. Check it out for a more realistic
example.
</td>
</tr>
</table>
</center>
<p />
<em>Note: Many components of the AST classes are not public at this time.
Use setAccessibility(true) to access them.</em>
<table cellspacing="10">
<tr>
<td align="center"><a href="http://www.beanshell.org/"><img src="images/homebutton.png" /><br />Home</a>
</td>
<td><a href="bshdoc.html#BshDoc_-_Javadoc_Style_Documentation"><img
src="images/backbutton.png" /><br />Back
</a></td>
<td align="center"><a href="contents.html"><img src="images/upbutton.png" /><br />Contents</a></td>
<td align="center"><a href="jconsole.html#Using_JConsole"><img
src="images/forwardbutton.png" /><br />Next
</a></td>
</tr>
</table>
</body>
</html>