markab_parser

Crates.iomarkab_parser
lib.rsmarkab_parser
version0.7.0
sourcesrc
created_at2018-12-28 11:27:25.508305
updated_at2019-01-09 10:07:13.696798
descriptionA simple, copy-less and rich-error-message parser combinator library.
homepage
repositoryhttps://github.com/arkhe634/markab
max_upload_size
id104206
size48,743
arkhe (arkhe634)

documentation

README

markab_parser

This crate provides simple, copy-less and rich-error-message parser combinator for parsing string.

Create simple parser

You can create simple parser with character, character_class and string.

Each methods returns a class implementing Parser trait, CharacterParser, CharacterClassParser, StringParser, and returns a slice of the source string by calling the parse method of Parser trait.

use markab_parser::{
	string,
	Parser,
	};

let src = "requirement";
let mut pos = 0;
let parser = string("requirement");
let result = parser.parse(src, &mut pos);
assert!(result.is_ok());
assert_eq!(result.ok().unwrap(), "requirement");
assert_eq!(pos, 11);

Combinate parser

Parser trait has methods for parser combination.

use markab_parser::{
	character,
	character_class,
	Parser,
	};

// require "1" and return "1"
let parser = character('1');
// require "12" and return ("1","2")
let seq = parser.and_then(character('2'));
// require "1" or "2" and return Either("1","2")
let ord = character_class(false, &[], &['1'..'2']);
// require `0-9`+ and return as usize
let map = character_class(false, &[], &['0'..'9'])
	.one_or_more()
	.stringify()
	.map(|num| num.parse::<usize>().unwrap());

Create new parser

If the parser has parameters, you should implement Parser trait. If the parser does not have parameters, you should implement Parseable trait. Parseable trait provides static method Parseable::parse and Parseable::get_parser to get a parser instance for parser combination

Change Log

Version 0.1.0

  • add primitive parsers.

Version 0.2.0

  • add AndParser and NotParser.

Version 0.3.0

  • add Debug and Display implementations for types.

Version 0.4.0

  • remove Parser types from parameter types of Error types.
  • map_parser module become public.

Version 0.5.0

  • remove Parser type from parameter type of MapParserError.

Version 0.6.0

  • simplify lifetimes.
  • remove Error type from Parseable trait.(with boxing cost)

Version 0.7.0

  • remove functional parameter type from MapParser/GenParser.
  • Requirement/Error types has come to require Parser types as parameter.
  • add Error type to Parseable.(no more boxing)
  • add merge method to OrderParser.
Commit count: 107

cargo fmt