1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
pub mod object;
pub mod sdc;
pub mod util;

use crate::sdc::{sdc, sdc_strict, Sdc};
use combine::error::ParseResult;
use combine::{Parser, Stream};
use failure::{Backtrace, Context, Fail};
use std::fmt::{self, Display};
use std::marker::PhantomData;

// -----------------------------------------------------------------------------

/// Parse SDC string
///
/// This function always successes.
/// Any line failed to parse ( include vendor extension ) is contained as `sdc::Command::Unknown`.
///
/// # Examples
///
/// ```
/// use sdc_parser::{self, sdc};
///
/// let result = sdc_parser::parse("current_instance duv");
///
/// let expect = sdc::Sdc {
///     commands: vec![sdc::Command::CurrentInstance(
///         sdc::CurrentInstance {
///             instance: Some(String::from("duv"))
///         }
///     )]
/// };
/// assert_eq!(expect, result);
/// ```
pub fn parse(s: &str) -> Sdc {
    let mut parser = sdc_parser();
    parser.parse(s).unwrap().0
}

/// Parse SDC string strictly
///
/// This function fails if the input is not valid SDC.
///
/// # Examples
///
/// ```
/// use sdc_parser::{self, sdc};
///
/// let result = sdc_parser::parse_strict("current_instance duv").unwrap();
///
/// let expect = sdc::Sdc {
///     commands: vec![sdc::Command::CurrentInstance(
///         sdc::CurrentInstance {
///             instance: Some(String::from("duv"))
///         }
///     )]
/// };
/// assert_eq!(expect, result);
/// ```
pub fn parse_strict(s: &str) -> Result<Sdc, Error> {
    let mut parser = sdc_parser_strict();
    let (ret, rest) = parser
        .parse(s)
        .map_err::<combine::error::StringStreamError, _>(Into::into)?;

    if rest.is_empty() {
        Ok(ret)
    } else {
        Err(Error {
            inner: Context::new(ErrorKind::Interrupt(InterruptError {
                parsed: ret,
                rest: String::from(rest),
            })),
        })
    }
}

// -----------------------------------------------------------------------------

#[derive(Fail, Debug)]
pub enum ErrorKind {
    #[fail(display = "Parse failed {:?}", 0)]
    Parse(ParseError),

    #[fail(display = "Parse interruptted {:?}", 0)]
    Interrupt(InterruptError),
}

#[derive(Debug)]
pub struct ParseError {
    pub message: String,
}

#[derive(Debug)]
pub struct InterruptError {
    pub parsed: Sdc,
    pub rest: String,
}

// -----------------------------------------------------------------------------

#[derive(Debug)]
pub struct Error {
    inner: Context<ErrorKind>,
}

impl Fail for Error {
    fn cause(&self) -> Option<&Fail> {
        self.inner.cause()
    }

    fn backtrace(&self) -> Option<&Backtrace> {
        self.inner.backtrace()
    }
}

impl Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        Display::fmt(&self.inner, f)
    }
}

impl Error {
    pub fn new(inner: Context<ErrorKind>) -> Error {
        Error { inner }
    }

    pub fn kind(&self) -> &ErrorKind {
        self.inner.get_context()
    }
}

impl From<ErrorKind> for Error {
    fn from(kind: ErrorKind) -> Error {
        Error {
            inner: Context::new(kind),
        }
    }
}

impl From<Context<ErrorKind>> for Error {
    fn from(inner: Context<ErrorKind>) -> Error {
        Error { inner }
    }
}

// -----------------------------------------------------------------------------

impl From<combine::error::StringStreamError> for Error {
    fn from(error: combine::error::StringStreamError) -> Error {
        let message = format!("{:?}", error);

        Error {
            inner: Context::new(ErrorKind::Parse(ParseError { message })),
        }
    }
}

// -----------------------------------------------------------------------------

struct SdcParser<I>(PhantomData<fn(I) -> I>);

impl<I> Parser for SdcParser<I>
where
    I: Stream<Item = char>,
    I::Error: combine::error::ParseError<I::Item, I::Range, I::Position>,
{
    type Input = I;
    type Output = Sdc;
    type PartialState = ();
    #[inline]
    fn parse_stream(&mut self, input: &mut I) -> ParseResult<Self::Output, Self::Input> {
        let mut parser = sdc();
        parser.parse_stream(input)
    }
}

fn sdc_parser<I>() -> SdcParser<I>
where
    I: Stream<Item = char>,
    I::Error: combine::error::ParseError<I::Item, I::Range, I::Position>,
{
    SdcParser(PhantomData)
}

// -----------------------------------------------------------------------------

struct SdcParserStrict<I>(PhantomData<fn(I) -> I>);

impl<I> Parser for SdcParserStrict<I>
where
    I: Stream<Item = char>,
    I::Error: combine::error::ParseError<I::Item, I::Range, I::Position>,
{
    type Input = I;
    type Output = Sdc;
    type PartialState = ();
    #[inline]
    fn parse_stream(&mut self, input: &mut I) -> ParseResult<Self::Output, Self::Input> {
        let mut parser = sdc_strict();
        parser.parse_stream(input)
    }
}

fn sdc_parser_strict<I>() -> SdcParserStrict<I>
where
    I: Stream<Item = char>,
    I::Error: combine::error::ParseError<I::Item, I::Range, I::Position>,
{
    SdcParserStrict(PhantomData)
}

// -----------------------------------------------------------------------------

#[cfg(test)]
mod test {
    use super::*;
    use combine::stream::state::State;
    use std::fs::File;
    use std::io::Read;
    use walkdir::WalkDir;

    #[test]
    fn test_parse() {
        let result = parse("current_instance duv");

        let expect = Sdc {
            commands: vec![sdc::Command::CurrentInstance(sdc::CurrentInstance {
                instance: Some(String::from("duv")),
            })],
        };
        assert_eq!(expect, result);
    }

    #[test]
    fn test_by_testcase() {
        for entry in WalkDir::new("./testcase") {
            if let Ok(entry) = entry {
                if entry.file_type().is_dir() {
                    continue;
                }
                let file = entry.path();
                let mut f = File::open(&file).unwrap();
                let mut buf = String::new();
                let _ = f.read_to_string(&mut buf);

                let file = dbg!(file);

                let mut parser = sdc_parser();
                let ret = parser.parse(State::new(buf.as_str()));

                assert!(ret.is_ok(), "Parse is failed at {:?}: {:?}", file, ret);
                assert_eq!("", ret.unwrap().1.input, "Input is Remained at {:?}", file);
            }
        }
    }
}