aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <aochagavia92@gmail.com>2014-10-30 21:47:21 +0100
committerAdolfo OchagavĂ­a <aochagavia92@gmail.com>2014-10-30 21:49:47 +0100
commit9f668fd5413793110566a4678d1de6aa3f3c2a5a (patch)
tree18807cd85bb7bf7b0a37b49d9b6d7580ca600a6a /src
parent35804927ef76cc5f24b04f2af25919c488a0992c (diff)
downloadmilf-rs-9f668fd5413793110566a4678d1de6aa3f3c2a5a.tar.gz
milf-rs-9f668fd5413793110566a4678d1de6aa3f3c2a5a.zip
Fix \r\n on multiline strings and add comments
Diffstat (limited to 'src')
-rw-r--r--src/parser.rs20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 3bd7a1c..ce3571e 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -84,6 +84,8 @@ impl<'a> Parser<'a> {
self.cur.clone().next().map(|p| p.val0()).unwrap_or(self.input.len())
}
+ // Returns true and consumes the next character if it matches `ch`,
+ // otherwise do nothing and return false
fn eat(&mut self, ch: char) -> bool {
match self.cur.clone().next() {
Some((_, c)) if c == ch => { self.cur.next(); true }
@@ -107,6 +109,7 @@ impl<'a> Parser<'a> {
false
}
+ // Consumes whitespace ('\t' and ' ') until another character (or EOF) is reached
fn ws(&mut self) {
loop {
match self.cur.clone().next() {
@@ -117,6 +120,7 @@ impl<'a> Parser<'a> {
}
}
+ // Consumes the rest of the line after a comment character
fn comment(&mut self) {
match self.cur.clone().next() {
Some((_, '#')) => {}
@@ -146,6 +150,8 @@ impl<'a> Parser<'a> {
Some((start, '[')) => {
self.cur.next();
let array = self.eat('[');
+
+ // Parse the name of the section
let mut section = String::new();
for (pos, ch) in self.cur {
if ch == ']' { break }
@@ -172,6 +178,7 @@ impl<'a> Parser<'a> {
return None
}
+ // Build the section table
let mut table = TreeMap::new();
if !self.values(&mut table) { return None }
if array {
@@ -189,6 +196,8 @@ impl<'a> Parser<'a> {
}
}
+ // Parses the values into the given TomlTable. Returns true in case of success
+ // and false in case of error.
fn values(&mut self, into: &mut TomlTable) -> bool {
loop {
self.ws();
@@ -236,6 +245,7 @@ impl<'a> Parser<'a> {
return true
}
+ // Parses a value
fn value(&mut self) -> Option<Value> {
self.ws();
match self.cur.clone().next() {
@@ -260,6 +270,7 @@ impl<'a> Parser<'a> {
}
}
+ // Parses a single or multi-line string
fn string(&mut self, start: uint) -> Option<Value> {
if !self.expect('"') { return None }
let mut multiline = false;
@@ -292,7 +303,8 @@ impl<'a> Parser<'a> {
None => {}
}
}
- Some((_, '\n')) if multiline => ret.push('\n'),
+ Some((_, '\n')) |
+ Some((_, '\r')) if multiline => ret.push('\n'),
Some((pos, ch)) if ch < '\u001f' => {
let mut escaped = String::new();
ch.escape_default(|c| escaped.push(c));
@@ -765,6 +777,12 @@ authors = [\"alex@crichton.co\"]\r\n\
\r\n\
path = \"lib.rs\"\r\n\
name = \"splay\"\r\n\
+description = \"\"\"\
+A Rust implementation of a TAR file reader and writer. This library does not\r\n\
+currently handle compression, but it is abstract over all I/O readers and\r\n\
+writers. Additionally, great lengths are taken to ensure that the entire\r\n\
+contents are never required to be entirely resident in memory all at once.\r\n\
+\"\"\"\
");
assert!(p.parse().is_some());
}