author | Christian Urban <urbanc@in.tum.de> |
Mon, 15 Jul 2019 10:46:50 +0100 | |
changeset 74 | 9e791ef6022f |
parent 72 | 83b021fc7d29 |
child 76 | f575cf219377 |
permissions | -rw-r--r-- |
45 | 1 |
\documentclass[a4paper,UKenglish]{lipics} |
30 | 2 |
\usepackage{graphic} |
3 |
\usepackage{data} |
|
4 |
\usepackage{tikz-cd} |
|
63 | 5 |
%\usepackage{algorithm} |
35 | 6 |
\usepackage{amsmath} |
7 |
\usepackage[noend]{algpseudocode} |
|
42 | 8 |
\usepackage{enumitem} |
70 | 9 |
\usepackage{nccmath} |
63 | 10 |
|
11 |
\definecolor{darkblue}{rgb}{0,0,0.6} |
|
12 |
\hypersetup{colorlinks=true,allcolors=darkblue} |
|
70 | 13 |
\newcommand{\comment}[1]% |
14 |
{{\color{red}$\Rightarrow$}\marginpar{\raggedright\small{\bf\color{red}#1}}} |
|
15 |
||
30 | 16 |
% \documentclass{article} |
17 |
%\usepackage[utf8]{inputenc} |
|
18 |
%\usepackage[english]{babel} |
|
19 |
%\usepackage{listings} |
|
20 |
% \usepackage{amsthm} |
|
63 | 21 |
%\usepackage{hyperref} |
30 | 22 |
% \usepackage[margin=0.5in]{geometry} |
23 |
%\usepackage{pmboxdraw} |
|
24 |
||
25 |
\title{POSIX Regular Expression Matching and Lexing} |
|
26 |
\author{Chengsong Tan} |
|
27 |
\affil{King's College London\\ |
|
28 |
London, UK\\ |
|
29 |
\texttt{chengsong.tan@kcl.ac.uk}} |
|
30 |
\authorrunning{Chengsong Tan} |
|
31 |
\Copyright{Chengsong Tan} |
|
32 |
||
33 |
\newcommand{\dn}{\stackrel{\mbox{\scriptsize def}}{=}}% |
|
34 |
\newcommand{\ZERO}{\mbox{\bf 0}} |
|
35 |
\newcommand{\ONE}{\mbox{\bf 1}} |
|
36 |
\def\lexer{\mathit{lexer}} |
|
37 |
\def\mkeps{\mathit{mkeps}} |
|
38 |
\def\inj{\mathit{inj}} |
|
39 |
\def\Empty{\mathit{Empty}} |
|
40 |
\def\Left{\mathit{Left}} |
|
41 |
\def\Right{\mathit{Right}} |
|
42 |
\def\Stars{\mathit{Stars}} |
|
43 |
\def\Char{\mathit{Char}} |
|
44 |
\def\Seq{\mathit{Seq}} |
|
45 |
\def\Der{\mathit{Der}} |
|
46 |
\def\nullable{\mathit{nullable}} |
|
47 |
\def\Z{\mathit{Z}} |
|
48 |
\def\S{\mathit{S}} |
|
49 |
||
50 |
%\theoremstyle{theorem} |
|
51 |
%\newtheorem{theorem}{Theorem} |
|
52 |
%\theoremstyle{lemma} |
|
53 |
%\newtheorem{lemma}{Lemma} |
|
54 |
%\newcommand{\lemmaautorefname}{Lemma} |
|
55 |
%\theoremstyle{definition} |
|
56 |
%\newtheorem{definition}{Definition} |
|
35 | 57 |
\algnewcommand\algorithmicswitch{\textbf{switch}} |
58 |
\algnewcommand\algorithmiccase{\textbf{case}} |
|
59 |
\algnewcommand\algorithmicassert{\texttt{assert}} |
|
60 |
\algnewcommand\Assert[1]{\State \algorithmicassert(#1)}% |
|
61 |
% New "environments" |
|
62 |
\algdef{SE}[SWITCH]{Switch}{EndSwitch}[1]{\algorithmicswitch\ #1\ \algorithmicdo}{\algorithmicend\ \algorithmicswitch}% |
|
63 |
\algdef{SE}[CASE]{Case}{EndCase}[1]{\algorithmiccase\ #1}{\algorithmicend\ \algorithmiccase}% |
|
64 |
\algtext*{EndSwitch}% |
|
65 |
\algtext*{EndCase}% |
|
30 | 66 |
|
67 |
||
68 |
\begin{document} |
|
69 |
||
70 |
\maketitle |
|
71 |
||
72 |
\begin{abstract} |
|
73 |
Brzozowski introduced in 1964 a beautifully simple algorithm for |
|
74 |
regular expression matching based on the notion of derivatives of |
|
75 |
regular expressions. In 2014, Sulzmann and Lu extended this |
|
40 | 76 |
algorithm to not just give a YES/NO answer for whether or not a |
64 | 77 |
regular expression matches a string, but in case it does also |
58 | 78 |
answers with \emph{how} it matches the string. This is important for |
40 | 79 |
applications such as lexing (tokenising a string). The problem is to |
80 |
make the algorithm by Sulzmann and Lu fast on all inputs without |
|
81 |
breaking its correctness. We have already developed some |
|
59 | 82 |
simplification rules for this, but have not yet proved that they |
40 | 83 |
preserve the correctness of the algorithm. We also have not yet |
84 |
looked at extended regular expressions, such as bounded repetitions, |
|
85 |
negation and back-references. |
|
30 | 86 |
\end{abstract} |
87 |
||
88 |
\section{Introduction} |
|
89 |
||
70 | 90 |
|
30 | 91 |
This PhD-project is about regular expression matching and |
92 |
lexing. Given the maturity of this topic, the reader might wonder: |
|
93 |
Surely, regular expressions must have already been studied to death? |
|
94 |
What could possibly be \emph{not} known in this area? And surely all |
|
95 |
implemented algorithms for regular expression matching are blindingly |
|
96 |
fast? |
|
97 |
||
98 |
Unfortunately these preconceptions are not supported by evidence: Take |
|
99 |
for example the regular expression $(a^*)^*\,b$ and ask whether |
|
100 |
strings of the form $aa..a$ match this regular |
|
64 | 101 |
expression. Obviously not---the expected $b$ in the last |
30 | 102 |
position is missing. One would expect that modern regular expression |
103 |
matching engines can find this out very quickly. Alas, if one tries |
|
104 |
this example in JavaScript, Python or Java 8 with strings like 28 |
|
105 |
$a$'s, one discovers that this decision takes around 30 seconds and |
|
106 |
takes considerably longer when adding a few more $a$'s, as the graphs |
|
107 |
below show: |
|
108 |
||
109 |
\begin{center} |
|
110 |
\begin{tabular}{@{}c@{\hspace{0mm}}c@{\hspace{0mm}}c@{}} |
|
111 |
\begin{tikzpicture} |
|
112 |
\begin{axis}[ |
|
113 |
xlabel={$n$}, |
|
114 |
x label style={at={(1.05,-0.05)}}, |
|
115 |
ylabel={time in secs}, |
|
116 |
enlargelimits=false, |
|
117 |
xtick={0,5,...,30}, |
|
118 |
xmax=33, |
|
119 |
ymax=35, |
|
120 |
ytick={0,5,...,30}, |
|
121 |
scaled ticks=false, |
|
122 |
axis lines=left, |
|
123 |
width=5cm, |
|
124 |
height=4cm, |
|
125 |
legend entries={JavaScript}, |
|
126 |
legend pos=north west, |
|
127 |
legend cell align=left] |
|
128 |
\addplot[red,mark=*, mark options={fill=white}] table {re-js.data}; |
|
129 |
\end{axis} |
|
130 |
\end{tikzpicture} |
|
131 |
& |
|
132 |
\begin{tikzpicture} |
|
133 |
\begin{axis}[ |
|
134 |
xlabel={$n$}, |
|
135 |
x label style={at={(1.05,-0.05)}}, |
|
136 |
%ylabel={time in secs}, |
|
137 |
enlargelimits=false, |
|
138 |
xtick={0,5,...,30}, |
|
139 |
xmax=33, |
|
140 |
ymax=35, |
|
141 |
ytick={0,5,...,30}, |
|
142 |
scaled ticks=false, |
|
143 |
axis lines=left, |
|
144 |
width=5cm, |
|
145 |
height=4cm, |
|
146 |
legend entries={Python}, |
|
147 |
legend pos=north west, |
|
148 |
legend cell align=left] |
|
149 |
\addplot[blue,mark=*, mark options={fill=white}] table {re-python2.data}; |
|
150 |
\end{axis} |
|
151 |
\end{tikzpicture} |
|
152 |
& |
|
153 |
\begin{tikzpicture} |
|
154 |
\begin{axis}[ |
|
155 |
xlabel={$n$}, |
|
156 |
x label style={at={(1.05,-0.05)}}, |
|
157 |
%ylabel={time in secs}, |
|
158 |
enlargelimits=false, |
|
159 |
xtick={0,5,...,30}, |
|
160 |
xmax=33, |
|
161 |
ymax=35, |
|
162 |
ytick={0,5,...,30}, |
|
163 |
scaled ticks=false, |
|
164 |
axis lines=left, |
|
165 |
width=5cm, |
|
166 |
height=4cm, |
|
167 |
legend entries={Java 8}, |
|
168 |
legend pos=north west, |
|
169 |
legend cell align=left] |
|
170 |
\addplot[cyan,mark=*, mark options={fill=white}] table {re-java.data}; |
|
171 |
\end{axis} |
|
172 |
\end{tikzpicture}\\ |
|
173 |
\multicolumn{3}{c}{Graphs: Runtime for matching $(a^*)^*\,b$ with strings |
|
174 |
of the form $\underbrace{aa..a}_{n}$.} |
|
175 |
\end{tabular} |
|
176 |
\end{center} |
|
177 |
||
58 | 178 |
\noindent These are clearly abysmal and possibly surprising results. One |
64 | 179 |
would expect these systems to do much better than that---after all, |
58 | 180 |
given a DFA and a string, deciding whether a string is matched by this |
181 |
DFA should be linear. |
|
30 | 182 |
|
183 |
Admittedly, the regular expression $(a^*)^*\,b$ is carefully chosen to |
|
64 | 184 |
exhibit this exponential behaviour. Unfortunately, such regular |
185 |
expressions are not just a few outliers. They are actually |
|
186 |
frequent enough to have a separate name created for |
|
30 | 187 |
them---\emph{evil regular expressions}. In empiric work, Davis et al |
188 |
report that they have found thousands of such evil regular expressions |
|
189 |
in the JavaScript and Python ecosystems \cite{Davis18}. |
|
190 |
||
58 | 191 |
This exponential blowup in matching algorithms sometimes causes |
63 | 192 |
considerable grief in real life: for example on 20 July 2016 one evil |
58 | 193 |
regular expression brought the webpage |
194 |
\href{http://stackexchange.com}{Stack Exchange} to its |
|
63 | 195 |
knees.\footnote{\url{https://stackstatus.net/post/147710624694/outage-postmortem-july-20-2016}} |
30 | 196 |
In this instance, a regular expression intended to just trim white |
197 |
spaces from the beginning and the end of a line actually consumed |
|
64 | 198 |
massive amounts of CPU-resources---causing web servers to |
199 |
grind to a halt. This happened when a post with 20,000 white spaces was |
|
58 | 200 |
submitted, but importantly the white spaces were neither at the |
30 | 201 |
beginning nor at the end. As a result, the regular expression matching |
58 | 202 |
engine needed to backtrack over many choices. The underlying problem is |
203 |
that many ``real life'' regular expression matching engines do not use |
|
204 |
DFAs for matching. This is because they support regular expressions that |
|
205 |
are not covered by the classical automata theory, and in this more |
|
206 |
general setting there are quite a few research questions still |
|
207 |
unanswered and fast algorithms still need to be developed (for example |
|
63 | 208 |
how to treat bounded repetitions, negation and back-references |
209 |
efficiently). |
|
64 | 210 |
%question: dfa can have exponential states. isn't this the actual reason why they do not use dfas? |
211 |
%how do they avoid dfas exponential states if they use them for fast matching? |
|
30 | 212 |
There is also another under-researched problem to do with regular |
213 |
expressions and lexing, i.e.~the process of breaking up strings into |
|
214 |
sequences of tokens according to some regular expressions. In this |
|
215 |
setting one is not just interested in whether or not a regular |
|
64 | 216 |
expression matches a string, but also in \emph{how}. Consider for example a regular expression |
30 | 217 |
$r_{key}$ for recognising keywords such as \textit{if}, \textit{then} |
218 |
and so on; and a regular expression $r_{id}$ for recognising |
|
219 |
identifiers (say, a single character followed by characters or |
|
220 |
numbers). One can then form the compound regular expression |
|
221 |
$(r_{key} + r_{id})^*$ and use it to tokenise strings. But then how |
|
222 |
should the string \textit{iffoo} be tokenised? It could be tokenised |
|
223 |
as a keyword followed by an identifier, or the entire string as a |
|
224 |
single identifier. Similarly, how should the string \textit{if} be |
|
225 |
tokenised? Both regular expressions, $r_{key}$ and $r_{id}$, would |
|
226 |
``fire''---so is it an identifier or a keyword? While in applications |
|
227 |
there is a well-known strategy to decide these questions, called POSIX |
|
228 |
matching, only relatively recently precise definitions of what POSIX |
|
64 | 229 |
matching actually means has been formalised |
46 | 230 |
\cite{AusafDyckhoffUrban2016,OkuiSuzuki2010,Vansummeren2006}. |
231 |
Such a definition has also been given by Sulzmann and Lu \cite{Sulzmann2014}, but the |
|
232 |
corresponding correctness proof turned out to be faulty \cite{AusafDyckhoffUrban2016}. |
|
233 |
Roughly, POSIX matching means matching the longest initial substring. |
|
64 | 234 |
In the case of a tie, the initial sub-match is chosen according to some priorities attached to the |
30 | 235 |
regular expressions (e.g.~keywords have a higher priority than |
236 |
identifiers). This sounds rather simple, but according to Grathwohl et |
|
237 |
al \cite[Page 36]{CrashCourse2014} this is not the case. They wrote: |
|
238 |
||
239 |
\begin{quote} |
|
240 |
\it{}``The POSIX strategy is more complicated than the greedy because of |
|
241 |
the dependence on information about the length of matched strings in the |
|
242 |
various subexpressions.'' |
|
243 |
\end{quote} |
|
244 |
||
245 |
\noindent |
|
246 |
This is also supported by evidence collected by Kuklewicz |
|
247 |
\cite{Kuklewicz} who noticed that a number of POSIX regular expression |
|
248 |
matchers calculate incorrect results. |
|
249 |
||
250 |
Our focus is on an algorithm introduced by Sulzmann and Lu in 2014 for |
|
251 |
regular expression matching according to the POSIX strategy |
|
252 |
\cite{Sulzmann2014}. Their algorithm is based on an older algorithm by |
|
253 |
Brzozowski from 1964 where he introduced the notion of derivatives of |
|
72 | 254 |
regular expressions~\cite{Brzozowski1964}. We shall briefly explain |
58 | 255 |
this algorithm next. |
30 | 256 |
|
46 | 257 |
\section{The Algorithm by Brzozowski based on Derivatives of Regular |
258 |
Expressions} |
|
30 | 259 |
|
40 | 260 |
Suppose (basic) regular expressions are given by the following grammar: |
38 | 261 |
\[ r ::= \ZERO \mid \ONE |
262 |
\mid c |
|
263 |
\mid r_1 \cdot r_2 |
|
264 |
\mid r_1 + r_2 |
|
265 |
\mid r^* |
|
266 |
\] |
|
30 | 267 |
|
268 |
\noindent |
|
46 | 269 |
The intended meaning of the constructors is as follows: $\ZERO$ |
30 | 270 |
cannot match any string, $\ONE$ can match the empty string, the |
271 |
character regular expression $c$ can match the character $c$, and so |
|
40 | 272 |
on. |
273 |
||
58 | 274 |
The ingenious contribution by Brzozowski is the notion of |
30 | 275 |
\emph{derivatives} of regular expressions. The idea behind this |
276 |
notion is as follows: suppose a regular expression $r$ can match a |
|
277 |
string of the form $c\!::\! s$ (that is a list of characters starting |
|
278 |
with $c$), what does the regular expression look like that can match |
|
40 | 279 |
just $s$? Brzozowski gave a neat answer to this question. He started |
280 |
with the definition of $nullable$: |
|
36 | 281 |
\begin{center} |
282 |
\begin{tabular}{lcl} |
|
283 |
$\nullable(\ZERO)$ & $\dn$ & $\mathit{false}$ \\ |
|
284 |
$\nullable(\ONE)$ & $\dn$ & $\mathit{true}$ \\ |
|
285 |
$\nullable(c)$ & $\dn$ & $\mathit{false}$ \\ |
|
286 |
$\nullable(r_1 + r_2)$ & $\dn$ & $\nullable(r_1) \vee \nullable(r_2)$ \\ |
|
287 |
$\nullable(r_1\cdot r_2)$ & $\dn$ & $\nullable(r_1) \wedge \nullable(r_2)$ \\ |
|
288 |
$\nullable(r^*)$ & $\dn$ & $\mathit{true}$ \\ |
|
289 |
\end{tabular} |
|
290 |
\end{center} |
|
38 | 291 |
This function simply tests whether the empty string is in $L(r)$. |
36 | 292 |
He then defined |
30 | 293 |
the following operation on regular expressions, written |
294 |
$r\backslash c$ (the derivative of $r$ w.r.t.~the character $c$): |
|
295 |
||
296 |
\begin{center} |
|
297 |
\begin{tabular}{lcl} |
|
298 |
$\ZERO \backslash c$ & $\dn$ & $\ZERO$\\ |
|
299 |
$\ONE \backslash c$ & $\dn$ & $\ZERO$\\ |
|
300 |
$d \backslash c$ & $\dn$ & |
|
301 |
$\mathit{if} \;c = d\;\mathit{then}\;\ONE\;\mathit{else}\;\ZERO$\\ |
|
302 |
$(r_1 + r_2)\backslash c$ & $\dn$ & $r_1 \backslash c \,+\, r_2 \backslash c$\\ |
|
36 | 303 |
$(r_1 \cdot r_2)\backslash c$ & $\dn$ & $\mathit{if} \, nullable(r_1)$\\ |
30 | 304 |
& & $\mathit{then}\;(r_1\backslash c) \cdot r_2 \,+\, r_2\backslash c$\\ |
305 |
& & $\mathit{else}\;(r_1\backslash c) \cdot r_2$\\ |
|
306 |
$(r^*)\backslash c$ & $\dn$ & $(r\backslash c) \cdot r^*$\\ |
|
307 |
\end{tabular} |
|
308 |
\end{center} |
|
309 |
||
46 | 310 |
%Assuming the classic notion of a |
311 |
%\emph{language} of a regular expression, written $L(\_)$, t |
|
30 | 312 |
|
40 | 313 |
\noindent |
314 |
The main property of the derivative operation is that |
|
30 | 315 |
|
316 |
\begin{center} |
|
317 |
$c\!::\!s \in L(r)$ holds |
|
318 |
if and only if $s \in L(r\backslash c)$. |
|
319 |
\end{center} |
|
320 |
||
321 |
\noindent |
|
46 | 322 |
For us the main advantage is that derivatives can be |
38 | 323 |
straightforwardly implemented in any functional programming language, |
324 |
and are easily definable and reasoned about in theorem provers---the |
|
325 |
definitions just consist of inductive datatypes and simple recursive |
|
326 |
functions. Moreover, the notion of derivatives can be easily |
|
327 |
generalised to cover extended regular expression constructors such as |
|
328 |
the not-regular expression, written $\neg\,r$, or bounded repetitions |
|
329 |
(for example $r^{\{n\}}$ and $r^{\{n..m\}}$), which cannot be so |
|
330 |
straightforwardly realised within the classic automata approach. |
|
331 |
For the moment however, we focus only on the usual basic regular expressions. |
|
332 |
||
333 |
||
40 | 334 |
Now if we want to find out whether a string $s$ matches with a regular |
335 |
expression $r$, build the derivatives of $r$ w.r.t.\ (in succession) |
|
336 |
all the characters of the string $s$. Finally, test whether the |
|
337 |
resulting regular expression can match the empty string. If yes, then |
|
338 |
$r$ matches $s$, and no in the negative case. To implement this idea |
|
339 |
we can generalise the derivative operation to strings like this: |
|
46 | 340 |
|
30 | 341 |
\begin{center} |
342 |
\begin{tabular}{lcl} |
|
343 |
$r \backslash (c\!::\!s) $ & $\dn$ & $(r \backslash c) \backslash s$ \\ |
|
40 | 344 |
$r \backslash [\,] $ & $\dn$ & $r$ |
30 | 345 |
\end{tabular} |
346 |
\end{center} |
|
40 | 347 |
|
37 | 348 |
\noindent |
46 | 349 |
and then define as regular-expression matching algorithm: |
30 | 350 |
\[ |
351 |
match\;s\;r \;\dn\; nullable(r\backslash s) |
|
352 |
\] |
|
40 | 353 |
|
354 |
\noindent |
|
64 | 355 |
This algorithm looks graphically as follows: |
46 | 356 |
\begin{equation}\label{graph:*} |
357 |
\begin{tikzcd} |
|
358 |
r_0 \arrow[r, "\backslash c_0"] & r_1 \arrow[r, "\backslash c_1"] & r_2 \arrow[r, dashed] & r_n \arrow[r,"\textit{nullable}?"] & \;\textrm{YES}/\textrm{NO} |
|
38 | 359 |
\end{tikzcd} |
46 | 360 |
\end{equation} |
40 | 361 |
|
362 |
\noindent |
|
46 | 363 |
where we start with a regular expression $r_0$, build successive |
364 |
derivatives until we exhaust the string and then use \textit{nullable} |
|
365 |
to test whether the result can match the empty string. It can be |
|
366 |
relatively easily shown that this matcher is correct (that is given |
|
64 | 367 |
an $s = c_0...c_{n-1}$ and an $r_0$, it generates YES if and only if $s \in L(r_0)$). |
46 | 368 |
|
369 |
||
370 |
\section{Values and the Algorithm by Sulzmann and Lu} |
|
38 | 371 |
|
30 | 372 |
One limitation, however, of Brzozowski's algorithm is that it only |
373 |
produces a YES/NO answer for whether a string is being matched by a |
|
374 |
regular expression. Sulzmann and Lu~\cite{Sulzmann2014} extended this |
|
375 |
algorithm to allow generation of an actual matching, called a |
|
72 | 376 |
\emph{value} or sometimes lexical values. These values and regular expressions correspond to each |
46 | 377 |
other as illustrated in the following table: |
378 |
||
30 | 379 |
|
380 |
\begin{center} |
|
381 |
\begin{tabular}{c@{\hspace{20mm}}c} |
|
382 |
\begin{tabular}{@{}rrl@{}} |
|
383 |
\multicolumn{3}{@{}l}{\textbf{Regular Expressions}}\medskip\\ |
|
384 |
$r$ & $::=$ & $\ZERO$\\ |
|
385 |
& $\mid$ & $\ONE$ \\ |
|
386 |
& $\mid$ & $c$ \\ |
|
387 |
& $\mid$ & $r_1 \cdot r_2$\\ |
|
388 |
& $\mid$ & $r_1 + r_2$ \\ |
|
389 |
\\ |
|
390 |
& $\mid$ & $r^*$ \\ |
|
391 |
\end{tabular} |
|
392 |
& |
|
393 |
\begin{tabular}{@{\hspace{0mm}}rrl@{}} |
|
394 |
\multicolumn{3}{@{}l}{\textbf{Values}}\medskip\\ |
|
395 |
$v$ & $::=$ & \\ |
|
396 |
& & $\Empty$ \\ |
|
397 |
& $\mid$ & $\Char(c)$ \\ |
|
398 |
& $\mid$ & $\Seq\,v_1\, v_2$\\ |
|
399 |
& $\mid$ & $\Left(v)$ \\ |
|
400 |
& $\mid$ & $\Right(v)$ \\ |
|
401 |
& $\mid$ & $\Stars\,[v_1,\ldots\,v_n]$ \\ |
|
402 |
\end{tabular} |
|
403 |
\end{tabular} |
|
404 |
\end{center} |
|
405 |
||
406 |
\noindent |
|
64 | 407 |
No value corresponds to $\ZERO$; $\Empty$ corresponds to |
63 | 408 |
$\ONE$; $\Char$ to the character regular expression; $\Seq$ to the |
409 |
sequence regular expression and so on. The idea of values is to encode |
|
72 | 410 |
a kind of lexical value for how the sub-parts of a regular expression match |
64 | 411 |
the sub-parts of a string. To see this, suppose a \emph{flatten} operation, written |
72 | 412 |
$|v|$ for values. We can use this function to extract the underlying string of a value |
63 | 413 |
$v$. For example, $|\mathit{Seq} \, (\textit{Char x}) \, (\textit{Char |
414 |
y})|$ is the string $xy$. Using flatten, we can describe how values |
|
64 | 415 |
encode parse trees: $\Seq\,v_1\, v_2$ encodes a tree with 2 children nodes |
416 |
that tells how the string $|v_1| @ |
|
63 | 417 |
|v_2|$ matches the regex $r_1 \cdot r_2$ whereby $r_1$ matches the |
418 |
substring $|v_1|$ and, respectively, $r_2$ matches the substring |
|
419 |
$|v_2|$. Exactly how these two are matched is contained in the |
|
64 | 420 |
children nodes $v_1$ and $v_2$ of parent $\textit{Seq}$ . |
30 | 421 |
|
72 | 422 |
To give a concrete example of how values work, consider the string $xy$ |
46 | 423 |
and the regular expression $(x + (y + xy))^*$. We can view this regular |
30 | 424 |
expression as a tree and if the string $xy$ is matched by two Star |
46 | 425 |
``iterations'', then the $x$ is matched by the left-most alternative in |
426 |
this tree and the $y$ by the right-left alternative. This suggests to |
|
427 |
record this matching as |
|
30 | 428 |
|
429 |
\begin{center} |
|
430 |
$\Stars\,[\Left\,(\Char\,x), \Right(\Left(\Char\,y))]$ |
|
431 |
\end{center} |
|
432 |
||
433 |
\noindent |
|
72 | 434 |
where $\Stars \; [\ldots]$ records all the |
64 | 435 |
iterations; and $\Left$, respectively $\Right$, which |
30 | 436 |
alternative is used. The value for |
437 |
matching $xy$ in a single ``iteration'', i.e.~the POSIX value, |
|
438 |
would look as follows |
|
439 |
||
440 |
\begin{center} |
|
441 |
$\Stars\,[\Seq\,(\Char\,x)\,(\Char\,y)]$ |
|
442 |
\end{center} |
|
443 |
||
444 |
\noindent |
|
445 |
where $\Stars$ has only a single-element list for the single iteration |
|
446 |
and $\Seq$ indicates that $xy$ is matched by a sequence regular |
|
447 |
expression. |
|
448 |
||
449 |
The contribution of Sulzmann and Lu is an extension of Brzozowski's |
|
450 |
algorithm by a second phase (the first phase being building successive |
|
46 | 451 |
derivatives---see \eqref{graph:*}). In this second phase, a POSIX value |
72 | 452 |
is generated in case the regular expression matches the string. |
453 |
Pictorially, the Sulzmann and Lu algorithm is as follows: |
|
46 | 454 |
|
70 | 455 |
\begin{ceqn} |
59 | 456 |
\begin{equation}\label{graph:2} |
30 | 457 |
\begin{tikzcd} |
36 | 458 |
r_0 \arrow[r, "\backslash c_0"] \arrow[d] & r_1 \arrow[r, "\backslash c_1"] \arrow[d] & r_2 \arrow[r, dashed] \arrow[d] & r_n \arrow[d, "mkeps" description] \\ |
30 | 459 |
v_0 & v_1 \arrow[l,"inj_{r_0} c_0"] & v_2 \arrow[l, "inj_{r_1} c_1"] & v_n \arrow[l, dashed] |
460 |
\end{tikzcd} |
|
59 | 461 |
\end{equation} |
70 | 462 |
\end{ceqn} |
37 | 463 |
|
46 | 464 |
\noindent |
59 | 465 |
For convenience, we shall employ the following notations: the regular expression we |
58 | 466 |
start with is $r_0$, and the given string $s$ is composed of characters $c_0 c_1 |
64 | 467 |
\ldots c_{n-1}$. In the first phase, we build the derivatives $r_1$, $r_2$, \ldots according to |
72 | 468 |
the characters $c_0$, $c_1$ until we exhaust the string and |
469 |
obtain the derivative $r_n$. We test whether this derivative is |
|
46 | 470 |
$\textit{nullable}$ or not. If not, we know the string does not match |
471 |
$r$ and no value needs to be generated. If yes, we start building the |
|
72 | 472 |
values incrementally by \emph{injecting} back the characters into |
473 |
the earlier values $v_n, \ldots, v_0$. For the first value $v_0$, we call the function |
|
46 | 474 |
$\textit{mkeps}$, which builds the parse tree for how the empty string |
72 | 475 |
has been matched by the (nullable) regular expression $r_n$. This function is defined |
46 | 476 |
as |
30 | 477 |
|
51
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
478 |
\begin{center} |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
479 |
\begin{tabular}{lcl} |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
480 |
$\mkeps(\ONE)$ & $\dn$ & $\Empty$ \\ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
481 |
$\mkeps(r_{1}+r_{2})$ & $\dn$ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
482 |
& \textit{if} $\nullable(r_{1})$\\ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
483 |
& & \textit{then} $\Left(\mkeps(r_{1}))$\\ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
484 |
& & \textit{else} $\Right(\mkeps(r_{2}))$\\ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
485 |
$\mkeps(r_1\cdot r_2)$ & $\dn$ & $\Seq\,(\mkeps\,r_1)\,(\mkeps\,r_2)$\\ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
486 |
$mkeps(r^*)$ & $\dn$ & $\Stars\,[]$ |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
487 |
\end{tabular} |
5df7faf69238
added mkeps and pder, still have not proof read it
Chengsong
parents:
50
diff
changeset
|
488 |
\end{center} |
41 | 489 |
|
59 | 490 |
|
491 |
\noindent There are no cases for $\ZERO$ and $c$, since |
|
492 |
these regular expression cannot match the empty string. Note |
|
493 |
also that in case of alternatives we give preference to the |
|
494 |
regular expression on the left-hand side. This will become |
|
495 |
important later on. |
|
496 |
||
497 |
After this, we inject back the characters one by one in order to build |
|
63 | 498 |
the parse tree $v_i$ for how the regex $r_i$ matches the string $s_i$ |
64 | 499 |
($s_i = c_i \ldots c_{n-1}$ ) from the previous parse tree $v_{i+1}$. After |
63 | 500 |
injecting back $n$ characters, we get the parse tree for how $r_0$ |
501 |
matches $s$. For this Sulzmann and Lu defined a function that reverses |
|
502 |
the ``chopping off'' of characters during the derivative phase. The |
|
503 |
corresponding function is called $\textit{inj}$; it takes three |
|
504 |
arguments: the first one is a regular expression ${r_{i-1}}$, before the |
|
505 |
character is chopped off, the second is a character ${c_{i-1}}$, the |
|
506 |
character we want to inject and the third argument is the value |
|
64 | 507 |
${v_i}$, into which one wants to inject the character (it |
63 | 508 |
corresponds to the regular expression after the character has been |
509 |
chopped off). The result of this function is a new value. The definition |
|
510 |
of $\textit{inj}$ is as follows: |
|
59 | 511 |
|
512 |
\begin{center} |
|
513 |
\begin{tabular}{l@{\hspace{1mm}}c@{\hspace{1mm}}l} |
|
514 |
$\textit{inj}\,(c)\,c\,Empty$ & $\dn$ & $Char\,c$\\ |
|
515 |
$\textit{inj}\,(r_1 + r_2)\,c\,\Left(v)$ & $\dn$ & $\Left(\textit{inj}\,r_1\,c\,v)$\\ |
|
516 |
$\textit{inj}\,(r_1 + r_2)\,c\,Right(v)$ & $\dn$ & $Right(\textit{inj}\,r_2\,c\,v)$\\ |
|
517 |
$\textit{inj}\,(r_1 \cdot r_2)\,c\,Seq(v_1,v_2)$ & $\dn$ & $Seq(\textit{inj}\,r_1\,c\,v_1,v_2)$\\ |
|
518 |
$\textit{inj}\,(r_1 \cdot r_2)\,c\,\Left(Seq(v_1,v_2))$ & $\dn$ & $Seq(\textit{inj}\,r_1\,c\,v_1,v_2)$\\ |
|
519 |
$\textit{inj}\,(r_1 \cdot r_2)\,c\,Right(v)$ & $\dn$ & $Seq(\textit{mkeps}(r_1),\textit{inj}\,r_2\,c\,v)$\\ |
|
520 |
$\textit{inj}\,(r^*)\,c\,Seq(v,Stars\,vs)$ & $\dn$ & $Stars((\textit{inj}\,r\,c\,v)\,::\,vs)$\\ |
|
521 |
\end{tabular} |
|
522 |
\end{center} |
|
523 |
||
63 | 524 |
\noindent This definition is by recursion on the ``shape'' of regular |
525 |
expressions and values. To understands this definition better consider |
|
526 |
the situation when we build the derivative on regular expression $r_{i-1}$. |
|
527 |
For this we chop off a character from $r_{i-1}$ to form $r_i$. This leaves a |
|
72 | 528 |
``hole'' in $r_i$ and its corresponding value $v_i$. |
529 |
To calculate $v_{i-1}$, we need to |
|
64 | 530 |
locate where that hole is and fill it. |
531 |
We can find this location by |
|
63 | 532 |
comparing $r_{i-1}$ and $v_i$. For instance, if $r_{i-1}$ is of shape |
64 | 533 |
$r_a \cdot r_b$, and $v_i$ is of shape $\Left(Seq(v_1,v_2))$, we know immediately that |
63 | 534 |
% |
535 |
\[ (r_a \cdot r_b)\backslash c = (r_a\backslash c) \cdot r_b \,+\, r_b\backslash c,\] |
|
536 |
||
537 |
\noindent |
|
59 | 538 |
otherwise if $r_a$ is not nullable, |
63 | 539 |
\[ (r_a \cdot r_b)\backslash c = (r_a\backslash c) \cdot r_b,\] |
540 |
||
541 |
\noindent |
|
64 | 542 |
the value $v_i$ should be $\Seq(\ldots)$, contradicting the fact that |
543 |
$v_i$ is actually of shape $\Left(\ldots)$. Furthermore, since $v_i$ is of shape |
|
63 | 544 |
$\Left(\ldots)$ instead of $\Right(\ldots)$, we know that the left |
64 | 545 |
branch of \[ (r_a \cdot r_b)\backslash c = |
546 |
\bold{\underline{ (r_a\backslash c) \cdot r_b} }\,+\, r_b\backslash c,\](underlined) |
|
547 |
is taken instead of the right one. This means $c$ is chopped off |
|
548 |
from $r_a$ rather than $r_b$. |
|
549 |
We have therefore found out |
|
63 | 550 |
that the hole will be on $r_a$. So we recursively call $\inj\, |
64 | 551 |
r_a\,c\,v_a$ to fill that hole in $v_a$. After injection, the value |
63 | 552 |
$v_i$ for $r_i = r_a \cdot r_b$ should be $\Seq\,(\inj\,r_a\,c\,v_a)\,v_b$. |
60
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
553 |
Other clauses can be understood in a similar way. |
59 | 554 |
|
71 | 555 |
%\comment{Other word: insight?} |
556 |
The following example gives an insight of $\textit{inj}$'s effect |
|
65 | 557 |
and how Sulzmann and Lu's algorithm works as a whole. |
558 |
Suppose we have a |
|
559 |
regular expression $((((a+b)+ab)+c)+abc)^*$, and want to match it against |
|
63 | 560 |
the string $abc$ (when $abc$ is written as a regular expression, the most |
561 |
standard way of expressing it should be $a \cdot (b \cdot c)$. We omit |
|
65 | 562 |
the parentheses and dots here for readability). |
563 |
This algorithm returns a POSIX value, which means it |
|
564 |
will go for the longest matching, i.e.~it should match the string |
|
565 |
$abc$ in one star iteration, using the longest alternative $abc$ in the |
|
566 |
sub-expression $((((a+b)+ab)+c)+abc)$ (we use $r$ to denote this sub-expression |
|
64 | 567 |
for conciseness). |
65 | 568 |
Before $\textit{inj}$ comes into play, |
569 |
our lexer first builds derivative using string $abc$ (we simplified some regular expressions like |
|
570 |
$0 \cdot b$ to $0$ for conciseness; we also omit parentheses if |
|
63 | 571 |
they are clear from the context): |
60
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
572 |
%Similarly, we allow |
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
573 |
%$\textit{ALT}$ to take a list of regular expressions as an argument |
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
574 |
%instead of just 2 operands to reduce the nested depth of |
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
575 |
%$\textit{ALT}$ |
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
576 |
\begin{center} |
63 | 577 |
\begin{tabular}{lcl} |
72 | 578 |
$r^*$ & $\xrightarrow{\backslash a}$ & $r_1 = (\ONE+\ZERO+\ONE \cdot b + \ZERO + \ONE \cdot b \cdot c) \cdot r^*$\\ |
579 |
& $\xrightarrow{\backslash b}$ & $r_2 = (\ZERO+\ZERO+\ONE \cdot \ONE + \ZERO + \ONE \cdot \ONE \cdot c) \cdot r^* +(\ZERO+\ONE+\ZERO + \ZERO + \ZERO) \cdot r^*$\\ |
|
580 |
& $\xrightarrow{\backslash c}$ & $r_3 = ((\ZERO+\ZERO+\ZERO + \ZERO + \ONE \cdot \ONE \cdot \ONE) \cdot r^* + (\ZERO+\ZERO+\ZERO + \ONE + \ZERO) \cdot r^*) + $\\ |
|
581 |
& & $\phantom{r_3 = (} ((\ZERO+\ONE+\ZERO + \ZERO + \ZERO) \cdot r^* + (\ZERO+\ZERO+\ZERO + \ONE + \ZERO) \cdot r^* )$ |
|
63 | 582 |
\end{tabular} |
60
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
583 |
\end{center} |
63 | 584 |
|
585 |
\noindent |
|
72 | 586 |
In case $r_3$ is nullable, we can call $\textit{mkeps}$ |
60
c737a0259194
sorry not all done, need a few more mins for last few changes
Chengsong
parents:
59
diff
changeset
|
587 |
to construct a parse tree for how $r_3$ matched the string $abc$. |
72 | 588 |
$\textit{mkeps}$ gives the following value $v_3$: |
65 | 589 |
\begin{center} |
590 |
$\Left(\Left(\Seq(\Right(\Seq(\Empty, \Seq(\Empty,\Empty))), \Stars [])))$ |
|
591 |
\end{center} |
|
592 |
The outer $\Left(\Left(\ldots))$ tells us the leftmost nullable part of $r_3$(underlined): |
|
70 | 593 |
|
65 | 594 |
\begin{center} |
72 | 595 |
$( \underline{(\ZERO+\ZERO+\ZERO+ \ZERO+ \ONE \cdot \ONE \cdot \ONE) \cdot r^*} + (\ZERO+\ZERO+\ZERO + \ONE + \ZERO) |
596 |
\cdot r^*) +((\ZERO+\ONE+\ZERO + \ZERO + \ZERO) \cdot r^*+(\ZERO+\ZERO+\ZERO + \ONE + \ZERO) \cdot r^* ).$ |
|
65 | 597 |
\end{center} |
70 | 598 |
|
599 |
\noindent |
|
72 | 600 |
Note that the leftmost location of term $((\ZERO+\ZERO+\ZERO + \ZERO + \ONE \cdot \ONE \cdot |
601 |
\ONE) \cdot r^*$ (which corresponds to the initial sub-match $abc$) allows |
|
602 |
$\textit{mkeps}$ to pick it up because $\textit{mkeps}$ is defined to always choose the |
|
70 | 603 |
left one when it is nullable. In the case of this example, $abc$ is |
604 |
preferred over $a$ or $ab$. This $\Left(\Left(\ldots))$ location is |
|
605 |
naturally generated by two applications of the splitting clause |
|
606 |
||
607 |
\begin{center} |
|
65 | 608 |
$(r_1 \cdot r_2)\backslash c (when \; r_1 \; nullable) \, = (r_1\backslash c) \cdot r_2 \,+\, r_2\backslash c.$ |
70 | 609 |
\end{center} |
610 |
||
611 |
\noindent |
|
612 |
By this clause, we put $r_1 \backslash c \cdot r_2 $ at the |
|
613 |
$\textit{front}$ and $r_2 \backslash c$ at the $\textit{back}$. This |
|
72 | 614 |
allows $\textit{mkeps}$ to always pick up among two matches the one with a longer |
70 | 615 |
initial sub-match. Removing the outside $\Left(\Left(...))$, the inside |
616 |
sub-value |
|
617 |
||
618 |
\begin{center} |
|
65 | 619 |
$\Seq(\Right(\Seq(\Empty, \Seq(\Empty, \Empty))), \Stars [])$ |
70 | 620 |
\end{center} |
621 |
||
622 |
\noindent |
|
72 | 623 |
tells us how the empty string $[]$ is matched with $(\ZERO+\ZERO+\ZERO + \ZERO + \ONE \cdot |
624 |
\ONE \cdot \ONE) \cdot r^*$. We match $[]$ by a sequence of 2 nullable regular |
|
70 | 625 |
expressions. The first one is an alternative, we take the rightmost |
626 |
alternative---whose language contains the empty string. The second |
|
627 |
nullable regular expression is a Kleene star. $\Stars$ tells us how it |
|
628 |
generates the nullable regular expression: by 0 iterations to form |
|
72 | 629 |
$\ONE$. Now $\textit{inj}$ injects characters back and incrementally |
70 | 630 |
builds a parse tree based on $v_3$. Using the value $v_3$, the character |
631 |
c, and the regular expression $r_2$, we can recover how $r_2$ matched |
|
632 |
the string $[c]$ : $\textit{inj} \; r_2 \; c \; v_3$ gives us |
|
65 | 633 |
\begin{center} |
634 |
$v_2 = \Left(\Seq(\Right(\Seq(\Empty, \Seq(\Empty, c))), \Stars [])),$ |
|
635 |
\end{center} |
|
636 |
which tells us how $r_2$ matched $[c]$. After this we inject back the character $b$, and get |
|
637 |
\begin{center} |
|
638 |
$v_1 = \Seq(\Right(\Seq(\Empty, \Seq(b, c))), \Stars [])$ |
|
639 |
\end{center} |
|
61 | 640 |
for how |
65 | 641 |
\begin{center} |
72 | 642 |
$r_1= (\ONE+\ZERO+\ONE \cdot b + \ZERO + \ONE \cdot b \cdot c) \cdot r*$ |
65 | 643 |
\end{center} |
61 | 644 |
matched the string $bc$ before it split into 2 pieces. |
645 |
Finally, after injecting character $a$ back to $v_1$, |
|
65 | 646 |
we get the parse tree |
647 |
\begin{center} |
|
648 |
$v_0= \Stars [\Right(\Seq(a, \Seq(b, c)))]$ |
|
649 |
\end{center} |
|
650 |
for how $r$ matched $abc$. This completes the algorithm. |
|
651 |
||
61 | 652 |
%We omit the details of injection function, which is provided by Sulzmann and Lu's paper \cite{Sulzmann2014}. |
653 |
Readers might have noticed that the parse tree information |
|
654 |
is actually already available when doing derivatives. |
|
655 |
For example, immediately after the operation $\backslash a$ we know that if we want to match a string that starts with $a$, |
|
656 |
we can either take the initial match to be |
|
65 | 657 |
\begin{center} |
42 | 658 |
\begin{enumerate} |
659 |
\item[1)] just $a$ or |
|
660 |
\item[2)] string $ab$ or |
|
661 |
\item[3)] string $abc$. |
|
662 |
\end{enumerate} |
|
65 | 663 |
\end{center} |
70 | 664 |
|
665 |
\noindent |
|
666 |
In order to differentiate between these choices, we just need to |
|
667 |
remember their positions--$a$ is on the left, $ab$ is in the middle , |
|
668 |
and $abc$ is on the right. Which one of these alternatives is chosen |
|
669 |
later does not affect their relative position because our algorithm does |
|
670 |
not change this order. If this parsing information can be determined and |
|
671 |
does not change because of later derivatives, there is no point in |
|
672 |
traversing this information twice. This leads to an optimisation---if we |
|
673 |
store the information for parse trees inside the regular expression, |
|
674 |
update it when we do derivative on them, and collect the information |
|
72 | 675 |
when finished with derivatives and call $\textit{mkeps}$ for deciding which |
70 | 676 |
branch is POSIX, we can generate the parse tree in one pass, instead of |
677 |
doing the rest $n$ injections. This leads to Sulzmann and Lu's novel |
|
71 | 678 |
idea of using bitcodes in derivatives. |
42 | 679 |
|
72 | 680 |
In the next section, we shall focus on the bitcoded algorithm and the |
63 | 681 |
process of simplification of regular expressions. This is needed in |
30 | 682 |
order to obtain \emph{fast} versions of the Brzozowski's, and Sulzmann |
63 | 683 |
and Lu's algorithms. This is where the PhD-project aims to advance the |
684 |
state-of-the-art. |
|
30 | 685 |
|
686 |
||
687 |
\section{Simplification of Regular Expressions} |
|
63 | 688 |
|
70 | 689 |
Using bitcodes to guide parsing is not a novel idea. It was applied to |
63 | 690 |
context free grammars and then adapted by Henglein and Nielson for |
70 | 691 |
efficient regular expression parsing using DFAs~\cite{nielson11bcre}. |
692 |
Sulzmann and Lu took this idea of bitcodes a step further by integrating |
|
693 |
bitcodes into derivatives. The reason why we want to use bitcodes in |
|
694 |
this project is that we want to introduce more aggressive |
|
695 |
simplifications in order to keep the size of derivatives small |
|
696 |
throughout. This is because the main drawback of building successive |
|
697 |
derivatives according to Brzozowski's definition is that they can grow |
|
698 |
very quickly in size. This is mainly due to the fact that the derivative |
|
699 |
operation generates often ``useless'' $\ZERO$s and $\ONE$s in |
|
63 | 700 |
derivatives. As a result, if implemented naively both algorithms by |
70 | 701 |
Brzozowski and by Sulzmann and Lu are excruciatingly slow. For example |
702 |
when starting with the regular expression $(a + aa)^*$ and building 12 |
|
63 | 703 |
successive derivatives w.r.t.~the character $a$, one obtains a |
704 |
derivative regular expression with more than 8000 nodes (when viewed as |
|
705 |
a tree). Operations like derivative and $\nullable$ need to traverse |
|
706 |
such trees and consequently the bigger the size of the derivative the |
|
66 | 707 |
slower the algorithm. |
35 | 708 |
|
70 | 709 |
Fortunately, one can simplify regular expressions after each derivative |
710 |
step. Various simplifications of regular expressions are possible, such |
|
711 |
as the simplifications of $\ZERO + r$, $r + \ZERO$, $\ONE\cdot r$, $r |
|
712 |
\cdot \ONE$, and $r + r$ to just $r$. These simplifications do not |
|
713 |
affect the answer for whether a regular expression matches a string or |
|
714 |
not, but fortunately also do not affect the POSIX strategy of how |
|
715 |
regular expressions match strings---although the latter is much harder |
|
71 | 716 |
to establish. Some initial results in this regard have been |
70 | 717 |
obtained in \cite{AusafDyckhoffUrban2016}. |
718 |
||
719 |
Unfortunately, the simplification rules outlined above are not |
|
720 |
sufficient to prevent an explosion for all regular expression. We |
|
721 |
believe a tighter bound can be achieved that prevents an explosion in |
|
722 |
all cases. Such a tighter bound is suggested by work of Antimirov who |
|
723 |
proved that (partial) derivatives can be bound by the number of |
|
724 |
characters contained in the initial regular expression |
|
725 |
\cite{Antimirov95}. He defined the \emph{partial derivatives} of regular |
|
726 |
expressions as follows: |
|
727 |
||
52
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
728 |
\begin{center} |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
729 |
\begin{tabular}{lcl} |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
730 |
$\textit{pder} \; c \; 0$ & $\dn$ & $\emptyset$\\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
731 |
$\textit{pder} \; c \; 1$ & $\dn$ & $\emptyset$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
732 |
$\textit{pder} \; c \; d$ & $\dn$ & $\textit{if} \; c \,=\, d \; \{ 1 \} \; \textit{else} \; \emptyset$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
733 |
$\textit{pder} \; c \; r_1+r_2$ & $\dn$ & $pder \; c \; r_1 \cup pder \; c \; r_2$ \\ |
70 | 734 |
$\textit{pder} \; c \; r_1 \cdot r_2$ & $\dn$ & $\textit{if} \; nullable \; r_1 $\\ |
735 |
& & $\textit{then} \; \{ r \cdot r_2 \mid r \in pder \; c \; r_1 \} \cup pder \; c \; r_2 \;$\\ |
|
736 |
& & $\textit{else} \; \{ r \cdot r_2 \mid r \in pder \; c \; r_1 \} $ \\ |
|
52
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
737 |
$\textit{pder} \; c \; r^*$ & $\dn$ & $ \{ r' \cdot r^* \mid r' \in pder \; c \; r \} $ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
738 |
\end{tabular} |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
739 |
\end{center} |
70 | 740 |
|
741 |
\noindent |
|
742 |
A partial derivative of a regular expression $r$ is essentially a set of |
|
743 |
regular expressions that are either $r$'s children expressions or a |
|
744 |
concatenation of them. Antimirov has proved a tight bound of the size of |
|
71 | 745 |
partial derivatives. Roughly |
72 | 746 |
speaking the size will be quadruple in the size of the regular expression. |
747 |
If we want the size of derivatives |
|
71 | 748 |
to stay below this bound, we would need more aggressive simplifications |
749 |
such as opening up alternatives to achieve the maximum level of duplicates |
|
750 |
cancellation. |
|
751 |
For example, the parentheses in $(a+b) \cdot c + bc$ can be opened up to |
|
752 |
get $a\cdot c +b \cdot c |
|
753 |
+ b \cdot c$, and then simplified to $a \cdot c+b \cdot c$. Another example is from |
|
72 | 754 |
$(a^*+a) + (a^*+ \ONE) + (a +\ONE)$ to $a^*+a+\ONE$. |
71 | 755 |
Adding these more aggressive simplification rules |
756 |
helped us to achieve the same size bound as that of the partial derivatives. |
|
757 |
To introduce these "spilling out alternatives" simplifications |
|
758 |
and make the correctness proof easier, |
|
759 |
we used bitcodes. |
|
72 | 760 |
Bitcodes look like this: |
71 | 761 |
%This allows us to prove a tight |
762 |
%bound on the size of regular expression during the running time of the |
|
763 |
%algorithm if we can establish the connection between our simplification |
|
764 |
%rules and partial derivatives. |
|
35 | 765 |
|
766 |
%We believe, and have generated test |
|
767 |
%data, that a similar bound can be obtained for the derivatives in |
|
768 |
%Sulzmann and Lu's algorithm. Let us give some details about this next. |
|
30 | 769 |
|
72 | 770 |
|
67 | 771 |
\begin{center} |
772 |
$b ::= S \mid Z \; \;\; |
|
43 | 773 |
bs ::= [] \mid b:bs |
67 | 774 |
$ |
775 |
\end{center} |
|
71 | 776 |
They are just a string of bits, |
777 |
the names $S$ and $Z$ here are quite arbitrary, we can use 0 and 1 |
|
778 |
or any other set of binary symbols to substitute them. |
|
779 |
Bitcodes(or bit-sequences) are a compact form of parse trees. |
|
43 | 780 |
Bitcodes are essentially incomplete values. |
30 | 781 |
This can be straightforwardly seen in the following transformation: |
782 |
\begin{center} |
|
783 |
\begin{tabular}{lcl} |
|
784 |
$\textit{code}(\Empty)$ & $\dn$ & $[]$\\ |
|
785 |
$\textit{code}(\Char\,c)$ & $\dn$ & $[]$\\ |
|
786 |
$\textit{code}(\Left\,v)$ & $\dn$ & $\Z :: code(v)$\\ |
|
787 |
$\textit{code}(\Right\,v)$ & $\dn$ & $\S :: code(v)$\\ |
|
788 |
$\textit{code}(\Seq\,v_1\,v_2)$ & $\dn$ & $code(v_1) \,@\, code(v_2)$\\ |
|
68 | 789 |
$\textit{code}(\Stars\,[])$ & $\dn$ & $[\Z]$\\ |
790 |
$\textit{code}(\Stars\,(v\!::\!vs))$ & $\dn$ & $\S :: code(v) \;@\; |
|
30 | 791 |
code(\Stars\,vs)$ |
792 |
\end{tabular} |
|
793 |
\end{center} |
|
70 | 794 |
|
795 |
Here code encodes a value into a bit-sequence by converting Left into |
|
796 |
$\Z$, Right into $\S$, the start point of a non-empty star iteration |
|
797 |
into $\S$, and the border where a local star terminates into $\Z$. This |
|
798 |
conversion is apparently lossy, as it throws away the character |
|
799 |
information, and does not decode the boundary between the two operands |
|
800 |
of the sequence constructor. Moreover, with only the bitcode we cannot |
|
801 |
even tell whether the $\S$s and $\Z$s are for $\Left/\Right$ or |
|
802 |
$\Stars$. The reason for choosing this compact way of storing |
|
803 |
information is that the relatively small size of bits can be easily |
|
804 |
moved around. In order to recover the bitcode back into values, we will |
|
805 |
need the regular expression as the extra information and decode it back |
|
806 |
into value:\\ |
|
807 |
||
808 |
||
37 | 809 |
%\begin{definition}[Bitdecoding of Values]\mbox{} |
36 | 810 |
\begin{center} |
811 |
\begin{tabular}{@{}l@{\hspace{1mm}}c@{\hspace{1mm}}l@{}} |
|
812 |
$\textit{decode}'\,bs\,(\ONE)$ & $\dn$ & $(\Empty, bs)$\\ |
|
813 |
$\textit{decode}'\,bs\,(c)$ & $\dn$ & $(\Char\,c, bs)$\\ |
|
814 |
$\textit{decode}'\,(\Z\!::\!bs)\;(r_1 + r_2)$ & $\dn$ & |
|
815 |
$\textit{let}\,(v, bs_1) = \textit{decode}'\,bs\,r_1\;\textit{in}\; |
|
816 |
(\Left\,v, bs_1)$\\ |
|
817 |
$\textit{decode}'\,(\S\!::\!bs)\;(r_1 + r_2)$ & $\dn$ & |
|
818 |
$\textit{let}\,(v, bs_1) = \textit{decode}'\,bs\,r_2\;\textit{in}\; |
|
819 |
(\Right\,v, bs_1)$\\ |
|
820 |
$\textit{decode}'\,bs\;(r_1\cdot r_2)$ & $\dn$ & |
|
821 |
$\textit{let}\,(v_1, bs_1) = \textit{decode}'\,bs\,r_1\;\textit{in}$\\ |
|
822 |
& & $\textit{let}\,(v_2, bs_2) = \textit{decode}'\,bs_1\,r_2$\\ |
|
823 |
& & \hspace{35mm}$\textit{in}\;(\Seq\,v_1\,v_2, bs_2)$\\ |
|
824 |
$\textit{decode}'\,(\Z\!::\!bs)\,(r^*)$ & $\dn$ & $(\Stars\,[], bs)$\\ |
|
825 |
$\textit{decode}'\,(\S\!::\!bs)\,(r^*)$ & $\dn$ & |
|
826 |
$\textit{let}\,(v, bs_1) = \textit{decode}'\,bs\,r\;\textit{in}$\\ |
|
827 |
& & $\textit{let}\,(\Stars\,vs, bs_2) = \textit{decode}'\,bs_1\,r^*$\\ |
|
828 |
& & \hspace{35mm}$\textit{in}\;(\Stars\,v\!::\!vs, bs_2)$\bigskip\\ |
|
829 |
||
830 |
$\textit{decode}\,bs\,r$ & $\dn$ & |
|
831 |
$\textit{let}\,(v, bs') = \textit{decode}'\,bs\,r\;\textit{in}$\\ |
|
832 |
& & $\textit{if}\;bs' = []\;\textit{then}\;\textit{Some}\,v\; |
|
833 |
\textit{else}\;\textit{None}$ |
|
834 |
\end{tabular} |
|
835 |
\end{center} |
|
37 | 836 |
%\end{definition} |
30 | 837 |
|
71 | 838 |
Sulzmann and Lu's integrated the bitcodes into regular |
839 |
expressions to create annotated regular expressions. |
|
840 |
It is by attaching them to the head of every substructure of a |
|
841 |
regular expression\cite{Sulzmann2014}. Annotated regular expressions |
|
842 |
are defined by the following |
|
70 | 843 |
grammar: |
43 | 844 |
|
845 |
\begin{center} |
|
846 |
\begin{tabular}{lcl} |
|
847 |
$\textit{a}$ & $::=$ & $\textit{ZERO}$\\ |
|
848 |
& $\mid$ & $\textit{ONE}\;\;bs$\\ |
|
849 |
& $\mid$ & $\textit{CHAR}\;\;bs\,c$\\ |
|
72 | 850 |
& $\mid$ & $\textit{ALT}\;\;bs\,a_1 \, a_2$\\ |
43 | 851 |
& $\mid$ & $\textit{SEQ}\;\;bs\,a_1\,a_2$\\ |
852 |
& $\mid$ & $\textit{STAR}\;\;bs\,a$ |
|
853 |
\end{tabular} |
|
854 |
\end{center} |
|
72 | 855 |
%(in \textit{ALT}) |
43 | 856 |
\noindent |
72 | 857 |
where $bs$ stands for bit-sequences, and $a$ for $\bold{a}$nnotated regular expressions. These bit-sequences encode |
43 | 858 |
information about the (POSIX) value that should be generated by the |
859 |
Sulzmann and Lu algorithm. |
|
860 |
||
70 | 861 |
To do lexing using annotated regular expressions, we shall first |
862 |
transform the usual (un-annotated) regular expressions into annotated |
|
863 |
regular expressions. This operation is called \emph{internalisation} and |
|
864 |
defined as follows: |
|
865 |
||
37 | 866 |
%\begin{definition} |
36 | 867 |
\begin{center} |
868 |
\begin{tabular}{lcl} |
|
869 |
$(\ZERO)^\uparrow$ & $\dn$ & $\textit{ZERO}$\\ |
|
870 |
$(\ONE)^\uparrow$ & $\dn$ & $\textit{ONE}\,[]$\\ |
|
871 |
$(c)^\uparrow$ & $\dn$ & $\textit{CHAR}\,[]\,c$\\ |
|
872 |
$(r_1 + r_2)^\uparrow$ & $\dn$ & |
|
873 |
$\textit{ALT}\;[]\,(\textit{fuse}\,[\Z]\,r_1^\uparrow)\, |
|
874 |
(\textit{fuse}\,[\S]\,r_2^\uparrow)$\\ |
|
875 |
$(r_1\cdot r_2)^\uparrow$ & $\dn$ & |
|
876 |
$\textit{SEQ}\;[]\,r_1^\uparrow\,r_2^\uparrow$\\ |
|
877 |
$(r^*)^\uparrow$ & $\dn$ & |
|
878 |
$\textit{STAR}\;[]\,r^\uparrow$\\ |
|
879 |
\end{tabular} |
|
880 |
\end{center} |
|
37 | 881 |
%\end{definition} |
44
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
882 |
|
70 | 883 |
\noindent |
72 | 884 |
We use up arrows here to imply that the basic un-annotated regular expressions |
885 |
are "lifted up" into something slightly more complex. |
|
886 |
In the fourth clause, $\textit{fuse}$ is an auxiliary function that helps to attach bits to the |
|
70 | 887 |
front of an annotated regular expression. Its definition is as follows: |
888 |
||
44
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
889 |
\begin{center} |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
890 |
\begin{tabular}{lcl} |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
891 |
$\textit{fuse}\,bs\,(\textit{ZERO})$ & $\dn$ & $\textit{ZERO}$\\ |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
892 |
$\textit{fuse}\,bs\,(\textit{ONE}\,bs')$ & $\dn$ & |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
893 |
$\textit{ONE}\,(bs\,@\,bs')$\\ |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
894 |
$\textit{fuse}\,bs\,(\textit{CHAR}\,bs'\,c)$ & $\dn$ & |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
895 |
$\textit{CHAR}\,(bs\,@\,bs')\,c$\\ |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
896 |
$\textit{fuse}\,bs\,(\textit{ALT}\,bs'\,a_1\,a_2)$ & $\dn$ & |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
897 |
$\textit{ALT}\,(bs\,@\,bs')\,a_1\,a_2$\\ |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
898 |
$\textit{fuse}\,bs\,(\textit{SEQ}\,bs'\,a_1\,a_2)$ & $\dn$ & |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
899 |
$\textit{SEQ}\,(bs\,@\,bs')\,a_1\,a_2$\\ |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
900 |
$\textit{fuse}\,bs\,(\textit{STAR}\,bs'\,a)$ & $\dn$ & |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
901 |
$\textit{STAR}\,(bs\,@\,bs')\,a$ |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
902 |
\end{tabular} |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
903 |
\end{center} |
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
904 |
|
70 | 905 |
\noindent |
906 |
After internalise we do successive derivative operations on the |
|
907 |
annotated regular expression. This derivative operation is the same as |
|
908 |
what we previously have for the simple regular expressions, except that |
|
909 |
we take special care of the bits :\\ |
|
910 |
||
911 |
%\begin{definition}{bder} |
|
36 | 912 |
\begin{center} |
913 |
\begin{tabular}{@{}lcl@{}} |
|
914 |
$(\textit{ZERO})\backslash c$ & $\dn$ & $\textit{ZERO}$\\ |
|
915 |
$(\textit{ONE}\;bs)\backslash c$ & $\dn$ & $\textit{ZERO}$\\ |
|
916 |
$(\textit{CHAR}\;bs\,d)\backslash c$ & $\dn$ & |
|
917 |
$\textit{if}\;c=d\; \;\textit{then}\; |
|
918 |
\textit{ONE}\;bs\;\textit{else}\;\textit{ZERO}$\\ |
|
919 |
$(\textit{ALT}\;bs\,a_1\,a_2)\backslash c$ & $\dn$ & |
|
920 |
$\textit{ALT}\,bs\,(a_1\backslash c)\,(a_2\backslash c)$\\ |
|
921 |
$(\textit{SEQ}\;bs\,a_1\,a_2)\backslash c$ & $\dn$ & |
|
922 |
$\textit{if}\;\textit{bnullable}\,a_1$\\ |
|
923 |
& &$\textit{then}\;\textit{ALT}\,bs\,(\textit{SEQ}\,[]\,(a_1\backslash c)\,a_2)$\\ |
|
924 |
& &$\phantom{\textit{then}\;\textit{ALT}\,bs\,}(\textit{fuse}\,(\textit{bmkeps}\,a_1)\,(a_2\backslash c))$\\ |
|
925 |
& &$\textit{else}\;\textit{SEQ}\,bs\,(a_1\backslash c)\,a_2$\\ |
|
926 |
$(\textit{STAR}\,bs\,a)\backslash c$ & $\dn$ & |
|
927 |
$\textit{SEQ}\;bs\,(\textit{fuse}\, [\Z] (r\backslash c))\, |
|
928 |
(\textit{STAR}\,[]\,r)$ |
|
929 |
\end{tabular} |
|
930 |
\end{center} |
|
37 | 931 |
%\end{definition} |
74
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
932 |
|
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
933 |
For instance, when we unfold $STAR \; bs \; a$ into a sequence, we |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
934 |
attach an additional bit Z to the front of $r \backslash c$ to indicate |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
935 |
that there is one more star iteration. The other example, the $SEQ$ |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
936 |
clause is more subtle-- when $a_1$ is $bnullable$(here bnullable is |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
937 |
exactly the same as nullable, except that it is for annotated regular |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
938 |
expressions, therefore we omit the definition). Assume that $bmkeps$ |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
939 |
correctly extracts the bitcode for how $a_1$ matches the string prior to |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
940 |
character c(more on this later), then the right branch of $ALTS$, which |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
941 |
is $fuse \; bmkeps \; a_1 (a_2 \backslash c)$ will collapse the regular |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
942 |
expression $a_1$(as it has already been fully matched) and store the |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
943 |
parsing information at the head of the regular expression $a_2 |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
944 |
\backslash c$ by fusing to it. The bitsequence $bs$, which was initially |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
945 |
attached to the head of $SEQ$, has now been elevated to the top-level of |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
946 |
ALT, as this information will be needed whichever way the $SEQ$ is |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
947 |
matched--no matter whether c belongs to $a_1$ or $ a_2$. After carefully |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
948 |
doing these derivatives and maintaining all the parsing information, we |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
949 |
complete the parsing by collecting the bits using a special $mkeps$ |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
950 |
function for annotated regular expressions--$bmkeps$: |
44
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
951 |
|
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
952 |
|
37 | 953 |
%\begin{definition}[\textit{bmkeps}]\mbox{} |
36 | 954 |
\begin{center} |
955 |
\begin{tabular}{lcl} |
|
956 |
$\textit{bmkeps}\,(\textit{ONE}\,bs)$ & $\dn$ & $bs$\\ |
|
957 |
$\textit{bmkeps}\,(\textit{ALT}\,bs\,a_1\,a_2)$ & $\dn$ & |
|
958 |
$\textit{if}\;\textit{bnullable}\,a_1$\\ |
|
959 |
& &$\textit{then}\;bs\,@\,\textit{bmkeps}\,a_1$\\ |
|
960 |
& &$\textit{else}\;bs\,@\,\textit{bmkeps}\,a_2$\\ |
|
961 |
$\textit{bmkeps}\,(\textit{SEQ}\,bs\,a_1\,a_2)$ & $\dn$ & |
|
962 |
$bs \,@\,\textit{bmkeps}\,a_1\,@\, \textit{bmkeps}\,a_2$\\ |
|
963 |
$\textit{bmkeps}\,(\textit{STAR}\,bs\,a)$ & $\dn$ & |
|
964 |
$bs \,@\, [\S]$ |
|
965 |
\end{tabular} |
|
966 |
\end{center} |
|
37 | 967 |
%\end{definition} |
70 | 968 |
|
969 |
\noindent |
|
44
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
970 |
This function completes the parse tree information by |
45 | 971 |
travelling along the path on the regular expression that corresponds to a POSIX value snd collect all the bits, and |
72 | 972 |
using S to indicate the end of star iterations. If we take the bits produced by $bmkeps$ and decode it, |
44
4d674a971852
another changes. have written more. but havent typed them. tomorrow will continue.
Chengsong
parents:
43
diff
changeset
|
973 |
we get the parse tree we need, the working flow looks like this:\\ |
37 | 974 |
\begin{center} |
975 |
\begin{tabular}{lcl} |
|
976 |
$\textit{blexer}\;r\,s$ & $\dn$ & |
|
977 |
$\textit{let}\;a = (r^\uparrow)\backslash s\;\textit{in}$\\ |
|
978 |
& & $\;\;\textit{if}\; \textit{bnullable}(a)$\\ |
|
979 |
& & $\;\;\textit{then}\;\textit{decode}\,(\textit{bmkeps}\,a)\,r$\\ |
|
980 |
& & $\;\;\textit{else}\;\textit{None}$ |
|
981 |
\end{tabular} |
|
982 |
\end{center} |
|
53 | 983 |
Here $(r^\uparrow)\backslash s$ is similar to what we have previously defined for |
984 |
$r\backslash s$. |
|
30 | 985 |
|
71 | 986 |
The main point of the bit-sequences and annotated regular expressions |
30 | 987 |
is that we can apply rather aggressive (in terms of size) |
988 |
simplification rules in order to keep derivatives small. |
|
989 |
||
990 |
We have |
|
991 |
developed such ``aggressive'' simplification rules and generated test |
|
992 |
data that show that the expected bound can be achieved. Obviously we |
|
993 |
could only partially cover the search space as there are infinitely |
|
994 |
many regular expressions and strings. One modification we introduced |
|
995 |
is to allow a list of annotated regular expressions in the |
|
996 |
\textit{ALTS} constructor. This allows us to not just delete |
|
997 |
unnecessary $\ZERO$s and $\ONE$s from regular expressions, but also |
|
998 |
unnecessary ``copies'' of regular expressions (very similar to |
|
999 |
simplifying $r + r$ to just $r$, but in a more general |
|
35 | 1000 |
setting). |
49 | 1001 |
Another modification is that we use simplification rules |
1002 |
inspired by Antimirov's work on partial derivatives. They maintain the |
|
1003 |
idea that only the first ``copy'' of a regular expression in an |
|
1004 |
alternative contributes to the calculation of a POSIX value. All |
|
1005 |
subsequent copies can be pruned from the regular expression. |
|
1006 |
||
52
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1007 |
A recursive definition of simplification function that looks similar to scala code is given below:\\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1008 |
\begin{center} |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1009 |
\begin{tabular}{@{}lcl@{}} |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1010 |
$\textit{simp} \; a$ & $\dn$ & $\textit{a} \; \textit{if} \; a = (\textit{ONE} \; bs) \; or\; (\textit{CHAR} \, bs \; c) \; or\; (\textit{STAR}\; bs\; a_1)$\\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1011 |
|
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1012 |
$\textit{simp} \; \textit{SEQ}\;bs\,a_1\,a_2$ & $\dn$ & $ (\textit{simp} \; a_1, \textit{simp} \; a_2) \; \textit{match} $ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1013 |
&&$\textit{case} \; (0, \_) \Rightarrow 0$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1014 |
&&$ \textit{case} \; (\_, 0) \Rightarrow 0$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1015 |
&&$ \textit{case} \; (1, a_2') \Rightarrow \textit{fuse} \; bs \; a_2'$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1016 |
&&$ \textit{case} \; (a_1', 1) \Rightarrow \textit{fuse} \; bs \; a_1'$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1017 |
&&$ \textit{case} \; (a_1', a_2') \Rightarrow \textit{SEQ} \; bs \; a_1' \; a_2'$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1018 |
|
72 | 1019 |
$\textit{simp} \; \textit{ALTS}\;bs\,as$ & $\dn$ & $\textit{ distinct}( \textit{flatten} ( \textit{map simp as})) \; \textit{match} $ \\ |
52
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1020 |
&&$\textit{case} \; [] \Rightarrow 0$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1021 |
&&$ \textit{case} \; a :: [] \Rightarrow \textit{fuse bs a}$ \\ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1022 |
&&$ \textit{case} \; as' \Rightarrow \textit{ALT bs as'}$ |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1023 |
\end{tabular} |
25bbbb8b0e90
just in case of some accidents from erasing my work
Chengsong
parents:
51
diff
changeset
|
1024 |
\end{center} |
47 | 1025 |
|
1026 |
The simplification does a pattern matching on the regular expression. When it detected that |
|
72 | 1027 |
the regular expression is an alternative or sequence, |
1028 |
it will try to simplify its children regular expressions |
|
1029 |
recursively and then see if one of the children turn |
|
1030 |
into $\ZERO$ or $\ONE$, which might trigger further simplification |
|
1031 |
at the current level. The most involved part is the $\textit{ALTS}$ |
|
1032 |
clause, where we use two auxiliary functions |
|
1033 |
flatten and distinct to open up nested $\textit{ALTS}$ and |
|
1034 |
reduce as many duplicates as possible. |
|
1035 |
Function distinct keeps the first occurring copy only and |
|
1036 |
remove all later ones when detected duplicates. |
|
1037 |
Function flatten opens up nested \textit{ALT}. Its recursive |
|
1038 |
definition is given below: |
|
53 | 1039 |
\begin{center} |
1040 |
\begin{tabular}{@{}lcl@{}} |
|
70 | 1041 |
$\textit{flatten} \; (\textit{ALT}\;bs\,as) :: as'$ & $\dn$ & $(\textit{map} \; |
1042 |
(\textit{fuse}\;bs)\; \textit{as}) \; @ \; \textit{flatten} \; as' $ \\ |
|
53 | 1043 |
$\textit{flatten} \; \textit{ZERO} :: as'$ & $\dn$ & $ \textit{flatten} \; as' $ \\ |
70 | 1044 |
$\textit{flatten} \; a :: as'$ & $\dn$ & $a :: \textit{flatten} \; as'$ \quad(otherwise) |
53 | 1045 |
\end{tabular} |
1046 |
\end{center} |
|
1047 |
||
70 | 1048 |
\noindent |
71 | 1049 |
Here flatten behaves like the traditional functional programming flatten function, except that it also removes $\ZERO$s. |
1050 |
What it does is basically removing parentheses like changing $a+(b+c)$ into $a+b+c$. |
|
47 | 1051 |
|
53 | 1052 |
Suppose we apply simplification after each derivative step, |
1053 |
and view these two operations as an atomic one: $a \backslash_{simp} c \dn \textit{simp}(a \backslash c)$. |
|
1054 |
Then we can use the previous natural extension from derivative w.r.t character to derivative w.r.t string: |
|
1055 |
||
1056 |
\begin{center} |
|
1057 |
\begin{tabular}{lcl} |
|
1058 |
$r \backslash_{simp} (c\!::\!s) $ & $\dn$ & $(r \backslash_{simp} c) \backslash_{simp} s$ \\ |
|
1059 |
$r \backslash [\,] $ & $\dn$ & $r$ |
|
1060 |
\end{tabular} |
|
1061 |
\end{center} |
|
1062 |
||
1063 |
we get an optimized version of the algorithm: |
|
1064 |
\begin{center} |
|
1065 |
\begin{tabular}{lcl} |
|
1066 |
$\textit{blexer\_simp}\;r\,s$ & $\dn$ & |
|
1067 |
$\textit{let}\;a = (r^\uparrow)\backslash_{simp} s\;\textit{in}$\\ |
|
1068 |
& & $\;\;\textit{if}\; \textit{bnullable}(a)$\\ |
|
1069 |
& & $\;\;\textit{then}\;\textit{decode}\,(\textit{bmkeps}\,a)\,r$\\ |
|
1070 |
& & $\;\;\textit{else}\;\textit{None}$ |
|
1071 |
\end{tabular} |
|
1072 |
\end{center} |
|
48 | 1073 |
|
1074 |
This algorithm effectively keeps the regular expression size small, for example, |
|
1075 |
with this simplification our previous $(a + aa)^*$ example's 8000 nodes will be reduced to only 6 and stay constant, however long the input string is. |
|
35 | 1076 |
|
30 | 1077 |
|
35 | 1078 |
|
70 | 1079 |
\section{Current Work} |
1080 |
||
1081 |
We are currently engaged in two tasks related to this algorithm. |
|
1082 |
||
72 | 1083 |
|
49 | 1084 |
The first one is proving that our simplification rules |
30 | 1085 |
actually do not affect the POSIX value that should be generated by the |
49 | 1086 |
algorithm according to the specification of a POSIX value |
1087 |
and furthermore obtain a much |
|
1088 |
tighter bound on the sizes of derivatives. The result is that our |
|
1089 |
algorithm should be correct and faster on all inputs. The original |
|
1090 |
blow-up, as observed in JavaScript, Python and Java, would be excluded |
|
1091 |
from happening in our algorithm.For |
|
30 | 1092 |
this proof we use the theorem prover Isabelle. Once completed, this |
1093 |
result will advance the state-of-the-art: Sulzmann and Lu wrote in |
|
1094 |
their paper \cite{Sulzmann2014} about the bitcoded ``incremental |
|
1095 |
parsing method'' (that is the matching algorithm outlined in this |
|
1096 |
section): |
|
1097 |
||
1098 |
\begin{quote}\it |
|
1099 |
``Correctness Claim: We further claim that the incremental parsing |
|
1100 |
method in Figure~5 in combination with the simplification steps in |
|
1101 |
Figure 6 yields POSIX parse trees. We have tested this claim |
|
1102 |
extensively by using the method in Figure~3 as a reference but yet |
|
1103 |
have to work out all proof details.'' |
|
1104 |
\end{quote} |
|
1105 |
||
1106 |
\noindent |
|
74
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1107 |
We would settle the correctness claim. It is relatively straightforward |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1108 |
to establish that after one simplification step, the part of a nullable |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1109 |
derivative that corresponds to a POSIX value remains intact and can |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1110 |
still be collected, in other words, |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1111 |
|
71 | 1112 |
\begin{center} |
1113 |
$\textit{bmkeps} \; r = \textit{bmkeps} \; \textit{simp} \; r\;( r\; \textit{nullable})$ |
|
1114 |
\end{center} |
|
74
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1115 |
|
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1116 |
\noindent |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1117 |
as this basically comes down to proving actions like removing the |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1118 |
additional $r$ in $r+r$ does not delete important POSIX information in |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1119 |
a regular expression. The hardcore of this problem is to prove that |
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1120 |
|
71 | 1121 |
\begin{center} |
1122 |
$\textit{bmkeps} \; \textit{blexer}\_{simp} \; r = \textit{bmkeps} \; \textit{blexer} \; \textit{simp} \; r$ |
|
1123 |
\end{center} |
|
74
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1124 |
|
9e791ef6022f
just a merge - no changes
Christian Urban <urbanc@in.tum.de>
parents:
72
diff
changeset
|
1125 |
\noindent |
71 | 1126 |
That is, if we do derivative on regular expression r and the simplified version, |
1127 |
they can still provide the same POSIX value if there is one . |
|
1128 |
This is not as straightforward as the previous proposition, as the two regular expressions $r$ and $\textit{simp}\; r$ |
|
1129 |
might become very different regular expressions after repeated application of $\textit{simp}$ and derivative. |
|
1130 |
The crucial point is to find the indispensable information of |
|
1131 |
a regular expression and how it is kept intact during simplification so that it performs |
|
1132 |
as good as a regular expression that has not been simplified in the subsequent derivative operations. |
|
1133 |
To aid this, we use the helping function retrieve described by Sulzmann and Lu: |
|
49 | 1134 |
\\definition of retrieve\\ |
72 | 1135 |
This function assembled the bitcode that corresponds to a parse tree for how the current |
71 | 1136 |
derivative matches the suffix of the string(the characters that have not yet appeared, but is stored in the value). |
72 | 1137 |
Sulzmann and Lu used this to connect the bitcoded algorithm to the older algorithm by the following equation: |
1138 |
\begin{center} |
|
1139 |
$inj \;a\; c \; v = \textit{decode} \; (\textit{retrieve}\; ((\textit{internalise}\; r)\backslash_{simp} c) v)$ |
|
1140 |
\end{center} |
|
1141 |
A little fact that needs to be stated to help comprehension: |
|
1142 |
\begin{center} |
|
1143 |
$r^\uparrow = a$($a$ stands for $\textit{annotated}).$ |
|
1144 |
\end{center} |
|
1145 |
Ausaf and Urban also used this fact to prove the correctness of bitcoded algorithm without simplification. |
|
50 | 1146 |
Our purpose of using this, however, is try to establish \\ |
53 | 1147 |
$ \textit{retrieve} \; a \; v \;=\; \textit{retrieve} \; \textit{simp}(a) \; v'.$\\ |
1148 |
The idea is that using $v'$, |
|
71 | 1149 |
a simplified version of $v$ that possibly had gone through the same simplification step as $\textit{simp}(a)$ we are still able to extract the bit-sequence that gives the same parsing information as the unsimplified one. |
53 | 1150 |
After establishing this, we might be able to finally bridge the gap of proving\\ |
1151 |
$\textit{retrieve} \; r \backslash s \; v = \;\textit{retrieve} \; \textit{simp}(r) \backslash s \; v'$\\ |
|
1152 |
and subsequently\\ |
|
1153 |
$\textit{retrieve} \; r \backslash s \; v\; = \; \textit{retrieve} \; r \backslash_{simp} s \; v'$.\\ |
|
58 | 1154 |
This proves that our simplified version of regular expression still contains all the bitcodes needed. |
49 | 1155 |
|
72 | 1156 |
|
70 | 1157 |
The second task is to speed up the more aggressive simplification. |
1158 |
Currently it is slower than a naive simplification(the naive version as |
|
1159 |
implemented in ADU of course can explode in some cases). So it needs to |
|
1160 |
be explored how to make it faster. Our possibility would be to explore |
|
1161 |
again the connection to DFAs. This is very much work in progress. |
|
30 | 1162 |
|
1163 |
\section{Conclusion} |
|
1164 |
||
1165 |
In this PhD-project we are interested in fast algorithms for regular |
|
1166 |
expression matching. While this seems to be a ``settled'' area, in |
|
1167 |
fact interesting research questions are popping up as soon as one steps |
|
1168 |
outside the classic automata theory (for example in terms of what kind |
|
1169 |
of regular expressions are supported). The reason why it is |
|
1170 |
interesting for us to look at the derivative approach introduced by |
|
1171 |
Brzozowski for regular expression matching, and then much further |
|
1172 |
developed by Sulzmann and Lu, is that derivatives can elegantly deal |
|
1173 |
with some of the regular expressions that are of interest in ``real |
|
1174 |
life''. This includes the not-regular expression, written $\neg\,r$ |
|
1175 |
(that is all strings that are not recognised by $r$), but also bounded |
|
1176 |
regular expressions such as $r^{\{n\}}$ and $r^{\{n..m\}}$). There is |
|
1177 |
also hope that the derivatives can provide another angle for how to |
|
1178 |
deal more efficiently with back-references, which are one of the |
|
1179 |
reasons why regular expression engines in JavaScript, Python and Java |
|
1180 |
choose to not implement the classic automata approach of transforming |
|
1181 |
regular expressions into NFAs and then DFAs---because we simply do not |
|
1182 |
know how such back-references can be represented by DFAs. |
|
1183 |
||
1184 |
||
1185 |
\bibliographystyle{plain} |
|
1186 |
\bibliography{root} |
|
1187 |
||
1188 |
||
1189 |
\end{document} |