Simple regex-based lexer in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T16:28:35Z http://stackoverflow.com/feeds/question/133886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python 3 Simple regex-based lexer in Python eliben 2008-09-25T15:10:05Z 2009-06-05T04:57:13Z <p>Lexical analyzers are quite easy to write when you have regexes. Today I wanted to write a simple general analyzer in Python, and came up with:</p> <pre><code>import re import sys class Token(object): """ A simple Token structure. Contains the token type, value and position. """ def __init__(self, type, val, pos): self.type = type self.val = val self.pos = pos def __str__(self): return '%s(%s) at %s' % (self.type, self.val, self.pos) class LexerError(Exception): """ Lexer error exception. pos: Position in the input line where the error occurred. """ def __init__(self, pos): self.pos = pos class Lexer(object): """ A simple regex-based lexer/tokenizer. See below for an example of usage. """ def __init__(self, rules, skip_whitespace=True): """ Create a lexer. rules: A list of rules. Each rule is a `regex, type` pair, where `regex` is the regular expression used to recognize the token and `type` is the type of the token to return when it's recognized. skip_whitespace: If True, whitespace (\s+) will be skipped and not reported by the lexer. Otherwise, you have to specify your rules for whitespace, or it will be flagged as an error. """ self.rules = [] for regex, type in rules: self.rules.append((re.compile(regex), type)) self.skip_whitespace = skip_whitespace self.re_ws_skip = re.compile('\S') def input(self, buf): """ Initialize the lexer with a buffer as input. """ self.buf = buf self.pos = 0 def token(self): """ Return the next token (a Token object) found in the input buffer. None is returned if the end of the buffer was reached. In case of a lexing error (the current chunk of the buffer matches no rule), a LexerError is raised with the position of the error. """ if self.pos &gt;= len(self.buf): return None else: if self.skip_whitespace: m = self.re_ws_skip.search(self.buf[self.pos:]) if m: self.pos += m.start() else: return None for token_regex, token_type in self.rules: m = token_regex.match(self.buf[self.pos:]) if m: value = self.buf[self.pos + m.start():self.pos + m.end()] tok = Token(token_type, value, self.pos) self.pos += m.end() return tok # if we're here, no rule matched raise LexerError(self.pos) def tokens(self): """ Returns an iterator to the tokens found in the buffer. """ while 1: tok = self.token() if tok is None: break yield tok if __name__ == '__main__': rules = [ ('\d+', 'NUMBER'), ('[a-zA-Z_]\w+', 'IDENTIFIER'), ('\+', 'PLUS'), ('\-', 'MINUS'), ('\*', 'MULTIPLY'), ('\/', 'DIVIDE'), ('\(', 'LP'), ('\)', 'RP'), ('=', 'EQUALS'), ] lx = Lexer(rules, skip_whitespace=True) lx.input('erw = _abc + 12*(R4-623902) ') try: for tok in lx.tokens(): print tok except LexerError, err: print 'LexerError at position', err.pos </code></pre> <p>It works just fine, but I'm a bit worried that it's too inefficient. Are there any regex tricks that will allow me to write it in a more efficient / elegant way ? </p> <p>Specifically, is there a way to avoid looping over all the regex rules linearly to find one that fits ?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python/134065#134065 1 Answer by Armin Ronacher for Simple regex-based lexer in Python Armin Ronacher 2008-09-25T15:38:49Z 2008-09-25T15:38:49Z <p><code>re.match</code> is anchored. You can give it a position argument:</p> <pre><code>pos = 0 end = len(text) while pos &lt; end: match = regexp.match(text, pos) # do something with your match pos = match.end() </code></pre> <p>Have a look for pygments which ships a shitload of lexers for syntax highlighting purposes with different implementations, most based on regular expressions.</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python/134081#134081 1 Answer by Douglas Mayle for Simple regex-based lexer in Python Douglas Mayle 2008-09-25T15:40:47Z 2008-09-25T15:40:47Z <p>This isn't exactly a direct answer to your question, but you might want to look at <a href="http://www.antlr.org" rel="nofollow">ANTLR</a>. According to <a href="http://www.antlr.org/wiki/display/ANTLR3/Code+Generation+Targets" rel="nofollow">this</a> document the python code generation target should be up to date.</p> <p>As to your regexes, there are really two ways to go about speeding it up if you're sticking to regexes. The first would be to order your regexes in the order of the probability of finding them in a default text. You could figure adding a simple profiler to the code that collected token counts for each token type and running the lexer on a body of work. The other solution would be to bucket sort your regexes (since your key space, being a character, is relatively small) and then use a array or dictionary to perform the needed regexes after performing a single discrimination on the first character.</p> <p>However, I think that if you're going to go this route, you should really try something like <a href="http://www.antlr.org" rel="nofollow">ANTLR</a> which will be easier to maintain, faster, and less likely to have bugs.</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python/134168#134168 3 Answer by Rafał Dowgird for Simple regex-based lexer in Python Rafał Dowgird 2008-09-25T15:54:53Z 2008-09-25T15:54:53Z <p>You can merge all your regexes into one using the "|" operator and let the regex library do the work of discerning between tokens. Some care should be taken to ensure the preference of tokens (for example to avoid matching a keyword as an identifier).</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python/135421#135421 3 Answer by Andrew Gwozdziewycz for Simple regex-based lexer in Python Andrew Gwozdziewycz 2008-09-25T19:24:13Z 2008-09-26T13:21:19Z <p>It's possible that combining the token regexes will work, but you'd have to benchmark it. Something like:</p> <pre><code>x = re.compile('(?P&lt;NUMBER&gt;[0-9]+)|(?P&lt;VAR&gt;[a-z]+)') a = x.match('9999').groupdict() # =&gt; {'VAR': None, 'NUMBER': '9999'} if a: token = [a for a in a.items() if a[1] != None][0] </code></pre> <p>The filter is where you'll have to do some benchmarking...</p> <p><strong>Update:</strong> I tested this, and it seems as though if you combine all the tokens as stated and write a function like:</p> <pre><code>def find_token(lst): for tok in lst: if tok[1] != None: return tok raise Exception </code></pre> <p>You'll get roughly the same speed (maybe a teensy faster) for this. I believe the speedup must be in the number of calls to match, but the loop for token discrimination is still there, which of course kills it.</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python/953837#953837 0 Answer by Evgeny for Simple regex-based lexer in Python Evgeny 2009-06-05T01:04:16Z 2009-06-05T04:57:13Z <p>these are not so simple, but may be worth looking at...</p> <p>python module <strong>pyparsing</strong> (pyparsing.wikispaces.com) allows specifying grammar - then using it to parse text. Douglas, thanks for the post about <strong>ANTLR</strong> I haven't heard of it. Also there's <strong>PLY</strong> - python2 and python3 compatible implementation of lex/yacc.</p> <p>I've written an ad-hoc regex-based parser myself first, but later realized that I might benefit from using some mature parsing tool and learning concepts of context independent grammar, etc.</p> <p>The advantage of using grammar for parsing is that you can easily modify the rules and formalize quite complex syntax for whatever you are parsing.</p>