Home

Awesome

LexLuthor

Build Status Hex.pm Hippocratic License HL3-FULL

LexLuthor is a Lexer in Elixir (say that 10 times fast) which uses macros to generate a reusable lexers. Good times.

LexLuthor is a state based lexer, meaning that it keeps a state stack which you can push states on and pop states off the stack, which are used to filter the applicable rules for a given state. For example:

defmodule StringLexer do
  use LexLuthor

  defrule ~r/^'/,              fn(_) -> :STRING end
  defrule ~r/^[^']+/, :STRING, fn(e) -> { :string, e } end
  defrule ~r/^'/,     :STRING, fn(_) -> nil end
end

Rules are defined by a regular expression, an optional state (as an atom) and an action in the form of an anonymous function.

When passed the string 'foo', the lexer starts in the :default state, so it filters for rules in the default state (the first rule, as it doesn't specify a state), then it filters the available rules by the longest matching regular expression. In this case, since we have only one rule (which happens to match) it's automatically the longest match.

Once the longest match is found, then it's action is executed and the return value matched:

If lexing succeeds then you will receive an :ok tuple with the second value being a list of LexLuthor.Token structs.

If lexing fails then you will receive an :error tuple which a reason and position.

Installation

LexLuthor is available in Hex, the package can be installed by adding lex_luthor to your list of dependencies in mix.exs:

def deps do
  [
    {:lex_luthor, "~> 0.1.2"}
  ]
end

Documentation for the latest release can be found on HexDocs and for the main branch on docs.harton.nz.

Github Mirror

This repository is mirrored on Github from it's primary location on my Forgejo instance. Feel free to raise issues and open PRs on Github.