From 6e4e8251b1b3b6903ac91a3ff45807de6410c173 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 6 Dec 2014 14:51:51 -0800 Subject: Update to rust master Closes #34 --- src/lib.rs | 56 +++++++++++++++++++++++++--------------------------- src/parser.rs | 4 ++-- src/serialization.rs | 7 ++++--- src/show.rs | 4 ++-- 4 files changed, 35 insertions(+), 36 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index ea72630..6154144 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,8 +58,6 @@ pub use serialization::DecodeErrorKind::{ApplicationError, ExpectedField}; pub use serialization::DecodeErrorKind::{ExpectedMapElement, ExpectedMapKey, NoEnumVariants}; pub use serialization::DecodeErrorKind::{ExpectedType, NilTooLong}; -pub use Value::{String, Integer, Float, Boolean, Datetime, Array, Table}; - mod parser; mod show; mod serialization; @@ -73,8 +71,8 @@ pub enum Value { Float(f64), Boolean(bool), Datetime(string::String), - Array(TomlArray), - Table(TomlTable), + Array(Array), + Table(Table), } /// Type representing a TOML array, payload of the Value::Array variant @@ -87,13 +85,13 @@ impl Value { /// Tests whether this and another value have the same type. pub fn same_type(&self, other: &Value) -> bool { match (self, other) { - (&String(..), &String(..)) | - (&Integer(..), &Integer(..)) | - (&Float(..), &Float(..)) | - (&Boolean(..), &Boolean(..)) | - (&Datetime(..), &Datetime(..)) | - (&Array(..), &Array(..)) | - (&Table(..), &Table(..)) => true, + (&Value::String(..), &Value::String(..)) | + (&Value::Integer(..), &Value::Integer(..)) | + (&Value::Float(..), &Value::Float(..)) | + (&Value::Boolean(..), &Value::Boolean(..)) | + (&Value::Datetime(..), &Value::Datetime(..)) | + (&Value::Array(..), &Value::Array(..)) | + (&Value::Table(..), &Value::Table(..)) => true, _ => false, } @@ -102,34 +100,34 @@ impl Value { /// Returns a human-readable representation of the type of this value. pub fn type_str(&self) -> &'static str { match *self { - String(..) => "string", - Integer(..) => "integer", - Float(..) => "float", - Boolean(..) => "boolean", - Datetime(..) => "datetime", - Array(..) => "array", - Table(..) => "table", + Value::String(..) => "string", + Value::Integer(..) => "integer", + Value::Float(..) => "float", + Value::Boolean(..) => "boolean", + Value::Datetime(..) => "datetime", + Value::Array(..) => "array", + Value::Table(..) => "table", } } /// Extracts the string of this value if it is a string. pub fn as_str<'a>(&'a self) -> Option<&'a str> { - match *self { String(ref s) => Some(s.as_slice()), _ => None } + match *self { Value::String(ref s) => Some(s.as_slice()), _ => None } } /// Extracts the integer value if it is an integer. pub fn as_integer(&self) -> Option { - match *self { Integer(i) => Some(i), _ => None } + match *self { Value::Integer(i) => Some(i), _ => None } } /// Extracts the float value if it is a float. pub fn as_float(&self) -> Option { - match *self { Float(f) => Some(f), _ => None } + match *self { Value::Float(f) => Some(f), _ => None } } /// Extracts the boolean value if it is a boolean. pub fn as_bool(&self) -> Option { - match *self { Boolean(b) => Some(b), _ => None } + match *self { Value::Boolean(b) => Some(b), _ => None } } /// Extracts the datetime value if it is a datetime. @@ -141,17 +139,17 @@ impl Value { /// 1979-05-27T07:32:00Z /// ``` pub fn as_datetime<'a>(&'a self) -> Option<&'a str> { - match *self { Datetime(ref s) => Some(s.as_slice()), _ => None } + match *self { Value::Datetime(ref s) => Some(s.as_slice()), _ => None } } /// Extracts the array value if it is an array. pub fn as_slice<'a>(&'a self) -> Option<&'a [Value]> { - match *self { Array(ref s) => Some(s.as_slice()), _ => None } + match *self { Value::Array(ref s) => Some(s.as_slice()), _ => None } } /// Extracts the table value if it is a table. - pub fn as_table<'a>(&'a self) -> Option<&'a TomlTable> { - match *self { Table(ref s) => Some(s), _ => None } + pub fn as_table<'a>(&'a self) -> Option<&'a Table> { + match *self { Value::Table(ref s) => Some(s), _ => None } } /// Lookups for value at specified path. @@ -186,13 +184,13 @@ impl Value { let mut cur_value = self; for key in path.split('.') { match cur_value { - &Table(ref hm) => { + &Value::Table(ref hm) => { match hm.find_with(|k| key.cmp(k.as_slice())) { Some(v) => cur_value = v, _ => return None } }, - &Array(ref v) => { + &Value::Array(ref v) => { let idx: Option = FromStr::from_str(key); match idx { Some(idx) if idx < v.len() => cur_value = &v[idx], @@ -209,7 +207,7 @@ impl Value { impl FromStr for Value { fn from_str(s: &str) -> Option { - Parser::new(s).parse().map(Table) + Parser::new(s).parse().map(Value::Table) } } diff --git a/src/parser.rs b/src/parser.rs index 9db2cc9..892f173 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -4,8 +4,8 @@ use std::error::Error; use std::num::FromStrRadix; use std::str; -use {Value, TomlTable}; -use Value::{Array, Table, Float, Integer, Boolean, Datetime}; +use Table as TomlTable; +use Value::{mod, Array, Table, Float, Integer, Boolean, Datetime}; /// Parser for converting a string to a TOML `Value` instance. /// diff --git a/src/serialization.rs b/src/serialization.rs index e30de48..ba96f89 100644 --- a/src/serialization.rs +++ b/src/serialization.rs @@ -4,7 +4,8 @@ use std::fmt; use std::error::Error as StdError; use serialize; -use {Value, Parser, TomlTable}; +use {Value, Parser}; +use Table as TomlTable; use Value::{Table, Array, Integer, Float, Boolean}; use self::EncoderState::{Start, NextKey, NextArray, NextMapKey}; @@ -26,7 +27,7 @@ use self::DecodeErrorKind::{ExpectedMapElement, NoEnumVariants, NilTooLong}; /// extern crate toml; /// /// # fn main() { -/// use toml::{Encoder, Integer}; +/// use toml::{Encoder, Value}; /// use serialize::Encodable; /// /// #[deriving(Encodable)] @@ -36,7 +37,7 @@ use self::DecodeErrorKind::{ExpectedMapElement, NoEnumVariants, NilTooLong}; /// let mut e = Encoder::new(); /// my_struct.encode(&mut e).unwrap(); /// -/// assert_eq!(e.toml.get(&"foo".to_string()), Some(&Integer(4))) +/// assert_eq!(e.toml.get(&"foo".to_string()), Some(&Value::Integer(4))) /// # } /// ``` pub struct Encoder { diff --git a/src/show.rs b/src/show.rs index d754c7c..32485da 100644 --- a/src/show.rs +++ b/src/show.rs @@ -1,7 +1,7 @@ use std::fmt; -use {Value, TomlTable}; -use Value::{String, Integer, Float, Boolean, Datetime, Array, Table}; +use Table as TomlTable; +use Value::{mod, String, Integer, Float, Boolean, Datetime, Array, Table}; struct Printer<'a, 'b:'a> { output: &'a mut fmt::Formatter<'b>, -- cgit v1.2.3