aboutsummaryrefslogtreecommitdiff
path: root/examples/exp.lua
blob: 4afe83e7835a2865cf2806c79a44a1c1fb07989c (plain)
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
-- Matthew's recovery example 
lpeg = require'lpeglabel'

local R, S, P, V = lpeg.R, lpeg.S, lpeg.P, lpeg.V
local C, Cc, Ct, Cmt = lpeg.C, lpeg.Cc, lpeg.Ct, lpeg.Cmt
local T = lpeg.T

local labels = {
  NoExp = "no expression found",
  Extra = "extra characters found after the expression",
  ExpTerm = "expected a term after the operator",
  ExpExp = "expected an expression after the parenthesis",
  MisClose = "missing a closing ')' after the expression",
}

local errors = {}

local function expect(patt, labname)
  function recorderror(input, pos)
    table.insert(errors, {labname, pos})
    return true
  end
  return patt + Cmt("", recorderror) * T(labname)
end

local num = R("09")^1 / tonumber
local op = S("+-*/")

local function compute(tokens)
  local result = tokens[1]
  for i = 2, #tokens, 2 do
    if tokens[i] == '+' then
      result = result + tokens[i+1]
    elseif tokens[i] == '-' then
      result = result - tokens[i+1]
    elseif tokens[i] == '*' then
      result = result * tokens[i+1]
    elseif tokens[i] == '/' then
      result = result / tokens[i+1]
    else
      error('unknown operation: ' .. tokens[i])
    end
  end
  return result
end

local g = P {
  "Exp",
  Exp = Ct(V"Term" * (C(op) * V"Operand")^0) / compute;
  Operand = expect(V"Term", "ExpTerm");
  Term = num + V"Group";
  Group = "(" * V"InnerExp" * expect(")", "MisClose");
  InnerExp = expect(V"Exp", "ExpExp");
  ExpTerm = Cc(0);
  MisClose = P"";
  ExpExp = (P(1) - ")")^0 * Cc(0);
}

g = expect(g, "NoExp") * expect(-P(1), "Extra")

local function eval(input)
  local result, label, suffix = g:match(input)
  if #errors == 0 then
    return result
  else
    local out = {}
    for i, err in ipairs(errors) do
      local pos = err[2]
      local msg = labels[err[1]]
      table.insert(out, "syntax error: " .. msg .. " (at index " .. pos .. ")")
    end
    errors = {}
    return nil, table.concat(out, "\n")
  end
end

assert(eval "98-76*(54/32)" == 37.125)
--> 37.125

local e, msg = eval "(1+1-1*2/2"
assert(e == nil and msg == "syntax error: missing a closing ')' after the expression (at index 11)")

e, msg = eval "(1+)-1*(2/2)"
assert(e == nil and msg == "syntax error: expected a term after the operator (at index 4)")

e, msg = eval "(1+1)-1*(/2)"
assert(e == nil and msg == "syntax error: expected an expression after the parenthesis (at index 10)")

e, msg = eval "1+(1-(1*2))/2x"
assert(e == nil and msg == "syntax error: extra characters found after the expression (at index 14)")

e, msg = eval "-1+(1-(1*2))/2"
assert(e == nil and msg == "syntax error: no expression found (at index 1)")

e, msg = eval "(1+1-1*(2/2+)-():"
assert(e == nil and msg == "syntax error: expected a term after the operator (at index 13)\n" ..
                           "syntax error: expected an expression after the parenthesis (at index 16)\n" ..
                           "syntax error: missing a closing ')' after the expression (at index 17)\n" ..
                           "syntax error: extra characters found after the expression (at index 17)")