mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
29 lines
No EOL
659 B
Elixir
29 lines
No EOL
659 B
Elixir
defmodule Search.IntParser do
|
|
import NimbleParsec
|
|
import Search.Helpers
|
|
|
|
space =
|
|
choice([string(" "), string("\t"), string("\n"), string("\r"), string("\v"), string("\f")])
|
|
|> ignore()
|
|
|
|
fuzz =
|
|
string("~")
|
|
|> ignore()
|
|
|
|
int =
|
|
optional(ascii_char('-+'))
|
|
|> ascii_string([?0..?9], min: 1)
|
|
|> reduce({List, :to_string, []})
|
|
|> reduce(:to_int)
|
|
|
|
int_parser =
|
|
choice([
|
|
int |> concat(fuzz) |> integer(min: 1) |> reduce(:range) |> unwrap_and_tag(:int_range),
|
|
int |> unwrap_and_tag(:int)
|
|
])
|
|
|> repeat(space)
|
|
|> eos()
|
|
|> label("an integer, like `3' or `-10'")
|
|
|
|
defparsec :parse, int_parser
|
|
end |