c++ ascii not poisonous parser. requires c++23. for examples see a section "examples" below.
the parser was created as struct template, so you can parametrize your method for create grammar by it, instead of include ascip file and depend on it. the template parameter, factory, can be the void type if you don't want to run the test method.
below, I've tried using examples for quick start. all of them leave in the examples directory in actual state. also I've tried to use the godbolt, but sometimes it can fail, unfortunately.
it is a header-only library: for start using it include ascip.hpp.
there is also build/ascip.hpp file, it is a whole library in single file.
the file is used in examples (the godbolt can't include other files from url).
the file is built by gcc, and cann't to be used with clang, so there is
build/ascip_clang.hpp file for use with clang.
after the ascip.hpp is included the parser is using parser = ascip;
in the root is flake.nix file. so you can use it as flake input and develop with nix develop.
more information about nix and nix flakes.
there is no make install target.
for install copy the ascip.hpp and ascip to directory where your compiler will find it,
or pass -I$(path_to_ascip_dir) to compiler.
there is three steps:
- pick a parser as
using parser = ascip;(it will be a few in future) - create a data source
- use a parse method
in most cases each step is just a single code line.
in most cases just we can create a data source for parser with parser::make_source() method. for example, if all data is in a std::string_view object named view we can create the data source as parser::make_source(view).
there is a few requirements on source type:
- it has to be lightweight copiable. the
parser::make_source()method can work withstd::string, but the parse process will be very slowly. - the
parser::make_source()method just creates a wrapper for data. any type can to be used as data source if it -
- has
operator()returning a next char (the next call of the operators returns a next symbol)
- has
-
- has
operator booltrue - there is a more input, false - there is no next character to parse
- has
-
- has
operator+=(int)increments current position of the source object
- has
there is a few parse methods (src parameter is a data source described above). all methods returns count of parsed symbols or -1 if parse fails:
parse(parser, src)try to parsesrcwith aparserand returns count of parsed symbolsparse(parser, src, result)do the same as above and try to store result into theresultparameterparse(parser, skip_parser, src, result)do the same as above and skip all what corresponds to theskip_parserparse(parser, skip_parser, src, result, error_handler)to the same as above and call theerror_handleron error in parse (see the>parser)continue_parse(ctx, parser, src, result)tries to get theskip_parseranderror_handlerfrom context. the method is for calling from external parser – a parser class created by user to hide big parser.
here is a list of available parsers. you can find examples below
int_an integer if it can to be stored to resultuint_an unsigned integer if it can to be stored to result, also notation can to be provied as template parameter, default is 10d10ordigitfor parser 0-9lowerandupperfor parse ascii lower or upper letters. andletteris alowerorupper.spacemeans spacesanyparses any character (if the character is not an ascii store (usepush_back) it in the result)nlparses new line characterquoted_stringparsers string in single or double-quoted with escaping character \. alsodquoted_stringparses only string and double quotes andsquoted_string- single.char_<'a'>char with concrete value (it can to be wide char and so on). and_char<'a'>is same with omitted value.lit<"string">is a string literal. please note the string literal right inside the template parameter. unfortunatly it can to be called only with template keyword, or, with same way as terms parsers, but usingsterminsead oftermortmpl.operator |for parse variant. the result will be created with 1)template<auto ind> create(auto& var)method or with 2)template<auto ind> constepxr auto& emplace(auto &var)3)template<auto ind> constexpr auto& emplace()method. or 4) the result will be used as isv_rec<number>for parse variant recursively. use the number to identify the variant which will be rerun (the current is 0, parent is 1 and so on).operator !for negate parserunary -for parse optional value. if there is no value, the default constructor will be used.binary -for parse one value except other*and+for lists.*- zero or more times,+- one or mote times. thefwd()method can to be used for tell list parser to just pass the result to inner parser and don't emplace back to the result.%for parse separated values()with lambda for the semantic action (semact) or for create the result. if the functor inside()receaves reference to the parser result and returns reference or pointer it's a result maker. in other case it's a semact. the semact can to receave nothing, or the returned value by parser and the result, or the returned value by parser, the parsing context, the source and the result.asmethod for treat some parser as valueomitmethod for skip valueadd_to_ctx,create_in_ctxandfrom_ctxmethods allows to store value in context and get it later in inner parser.result_from_ctxmethods allows to use value stored in context with mehtodadd_to_ctxas result, the original result will be passed as first parametor to the action.>>for sequence parser>for sequence parser. it causes an error if the parser fails with a message "unknown" (see must method).checkmethod checks that the parser got as a result exactly required typecastmethod try tostatic_castgotten a result to the required type. it is useful for parse to struct with inheritance as a result due to language limitations. see example below.rvmethod for parse reverse variant with left recursion. see example below. the result will be created same way as in the|operator.reparsemethod for parse and shift source position no zero, so the next parser will start from the same place.by_tablemethod for replace parser's result with a value gotten from the second parameter. the first parameter creates a temporary parser result, if success, the result is passed to the second parameter and the second's parameter result will be placed as the parser's result. see tests/tricky_parsers.cppby_indmethod for get a result to inner parser usingget<ind>()method, or try to get field from struct by index
with sequence parser can be used
cur_posjust stores to result current position, parse nothingcur_shiftfor store to its result current shift position from sequence startrec<number>for call the sequence (or parent sequence) recursively. therecparser also can be combined with()operator with lambda for create recursion result value.seq_enable_recursionparser enables recursion for sequence parser, without it therecparser won't work. the parser allow to speed up the compilation time (most of the sequence parsers won't have a recursion).++prefix or postfix for increase result's field number to store the parser result. prefix++will increase the number for current parser and postfix++- for next parser.--same as++but decrease the numberfinc<number>method. same as++or--but you can specify the number will be added to current position (the number can also to be negative). the parser should to be the most outter one: char_<'a'> >> -finc<3>(char_<'b'>) will not work.fnum<number>method. setts the resulting field position independently of the current one. this parser as thefincshould to be the most outer one.use_seq_resultmethod. use the result as it is inside the sequence parser instead of fields from that result.mustmethod. causes an error on fail. accepts a message as template parameter. it will be passed to error function, passed in parse method. parameters: result, source on start parser position, current line number, message. in a case if no error method is present, the parser throws a default exception (for fail tests only).
to parse something, we have to provide a data source. for ascip it's a class what has operator+=, operator bool and operator().
- the
operator()returns symbol and increments the position. - the
operator+=moves the position forward and - the
operator boolreturns true if there is next symbol - NOTE: the object has to be light wight: it will be copied many times
ascip::make_source can create such objects from string_view or string literal.
for example, we want to parse version number like v1.2. the major version is 1 and minor version is 2. code to parse it may looks like
struct version {
int major=0;
int minor=0;
};
static_assert( ({
version result;
parse(_char<'v'> >> int_ >> _char<'.'> >> ++int_, ascip::make_source("v1.2"), result);
// NOTE: -^-----------------------------------^^-----
result.major + result.minor; }) == 3 );
note
- prefix
++operator. it increases the result field number. firstint_will store result intomajorand secondint_stores result intominor. for store result to structure instead of single result (for example store tostd::string) it must to be at least one++prefix or postfix operator, orfinc<number>function for set shift from current field number. wihtout it the result will be treated as single variable. _charinstead ofchar_. the first one omits its value, the second one stores it to result.- there is no
lexeme(): we don't use skip parser here. (you can pass it as second argument.) - static_assert check works only inside constexpr
- see full example on godbolt
ok, but what about poison? ascip supports any compatibl type. for example std::vector and std::list can be used for same parser:
static_assert( ({
std::vector<char> r;
parse(+char_<'a'>, make_source("aaa"), r);
r.size(); }) == 3 );
std::list<char> r; // list is not constexpr :(
parse(+char_<'a'>, make_source("aaa"), r);
return r.size() != 3;
Generally, all types what implements emplace_back and pop_back (or emplace_back and pop_back in adl) can be used as an container.
what about recursion? we can write a class wrapper with redefined operator = for it can be used to create a value. or we can create recursion value in lambda. for example let's parse a type like box<list<string>, int>. i use a vector of unique_ptr for simplify this example. please see full example on godbolt
the parser is:
constexpr auto ident = lexeme(letter >> *(letter | d10 | char_<'_'>));
constexpr auto type_p = ident++ >> -(omit(char_<'<'>) >> ascip::rec<1>([](auto&r){r.reset(new type());return r.get();}) % ',' >> omit(char_<'>'>));
NOTE: lambda for create recursion holder has to return pointer (or smart pointer).
let's see the type_p parser closely
constexpr auto type_p =
ident++ // ident is a ident parser, ++ is a request for next field in structure on next sequence element.
// so the ident will be stored on first result field and next item to second
>> -( // - is an optional parser
omit(char_<'<'>) // omits a value
>> ascip::rec<1> // recursively calls parser. 1 - the number of sequence parsers (as current - number)
([](...){...}) // lambda for create object for store recursion. it get an empty unqie_ptr what emplace_back to result.
% ','
>> omit(char_<'>'>)
)
;
what is the <1>? let's rewrite the type_p parser like this:
constexpr auto constexpr auto subtype = omit(char_<'<'>) >> ascip::rec<1>([](auto&r){r.reset(new type());return r.get();}) % ',' >> omit(char_<'>'>);
constexpr auto type_p = ident++ >> -subtype;
as we can see the type_p parser contains two sequences:
identand- optional
subtypeparser definition.
the rec parser calls parser recursively by number starts from current. so rec<0> calls the subtype parser and rec<1> calls the type_p parser. (the numeration starts from zero.)
due to an language limitations we cannot parse into struct with inheritance same way as simple struct. here is example showing how to parse in such case.
primary code is
struct base { char a, b; };
struct child : base { char c; };
constexpr auto parser = cast<base>(char_<'a'>++ >> char_<'b'>) >> char_<'c'>([](auto&r)->char&{return r.c;});
please note:
castparserstatic_casts result intobasetype, so inner parser can work()operator is a special semact. the semact allows to transform the result (it's single argument). it is another method for parse with inheritance.- instead of casting the result we can provide a static method
struct_fields_count()in the type, returning the count of fields in the type
we can also use rv_lrec and rv_rrec parsers for left recursion. for example let's parse some expression. here is full example. the example seems to big, you can pay attention on make_grammar function only.
return rv( [](auto& r){ return std::unique_ptr<expr>( new expr{std::move(r)} ); }
, cast<ternary_expr>(gh::rv_lrec >> th<'?'>::_char >> ++gh::rv_rrec(result_maker) >> th<':'>::_char >> ++gh::rv_rrec(result_maker))
, cast<binary_expr>(gh::rv_lrec >> th<'+'>::_char >> ++gh::rv_rrec(result_maker))
, cast<binary_expr>(gh::rv_lrec >> th<'-'>::_char >> ++gh::rv_rrec(result_maker))
, cast<binary_expr>(gh::rv_lrec >> th<'*'>::_char >> ++gh::rv_rrec(result_maker))
, cast<binary_expr>(gh::rv_lrec >> th<'/'>::_char >> ++gh::rv_rrec(result_maker))
, cast<binary_expr>(gh::rv_lrec >> th<'%'>::_char >> ++gh::rv_rrec(result_maker))
, cast<binary_expr>(gh::rv_lrec >> gh::template lit<"**"> >> ++gh::rv_rrec(result_maker))
, rv_result(th<'('>::_char >> th<0>::rv_rec >> th<')'>::_char)
, term
);
please note:
- we use
rvfunction for create reversive variant. the variant parses from the last item to the first one. also, it dosen't stop on succssed parser (is stops only if parse terminals). note also, the most prioirty parser is on top. - we use
rv_lrecparser only on leftmost part of parser in the variant (before terminal) - we use
rv_rrecparser in other parts of parser (after terminal) in the variant. it just parses the next parser from the variant (from a expression parser). - we use
rv_recparser to run the wholervparser recursively. they parser accepts template parameter - a number of parser, the currentrvparser is 0, outter parser, if present, is 1 and so on. - the
rv_resultfunction is used for skip index in resulting variant. if it won't be called the resulting variant must to same sized as the parser. - any parser can have semantic action and result maker methods. here it's done as
gh::rv_rrec(result_maker). the result maker should accept single parameter, in our case it will be therightfield inbinary_exprstructure and returns theexpr. theresult_makerneeded becausestd::unique_ptris used and parser don't know how to create the field. but the field can has some type which creates result it self (for example in constructor and destroy result in descructor). in such case theresult_makercan to be omitted. the result maker returns pointer or reference to created result. - the first
rvparameter is also result creator. it creates the result forleftfield only. the result will be moved inside the parser. - we can parse plus and minus as single parser, so it will be all left recursive, but it can be like in the example: the minus operator is less priority then the plus operator (the expression (1+(2-3)) has same result as ((1+2)-3)).
rvparses asn*mwherenis symbols count andmis parsers count
- test, writing few parsers
- alfa release
- implement the same struct as the ascip, containg parsers for print a parser itself, as grammar documentation.
- implement good double parser
- beta release
- remove all std includes