rust/src/libsyntax/ext/pipes/parse_proto.rs

109 lines
3.4 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Parsing pipes protocols from token trees.
use ext::pipes::pipec::*;
use parse::common::SeqSep;
2012-09-04 11:37:29 -07:00
use parse::parser;
use parse::token;
use core::prelude::*;
pub trait proto_parser {
fn parse_proto(&self, id: ~str) -> protocol;
fn parse_state(&self, proto: protocol);
fn parse_message(&self, state: state);
}
pub impl proto_parser for parser::Parser {
fn parse_proto(&self, id: ~str) -> protocol {
let proto = protocol(id, *self.span);
self.parse_seq_to_before_end(token::EOF, SeqSep {
sep: None,
trailing_sep_allowed: false
}, |self| self.parse_state(proto));
2012-08-01 17:30:05 -07:00
return proto;
}
fn parse_state(&self, proto: protocol) {
let id = self.parse_ident();
2012-07-18 16:18:02 -07:00
let name = *self.interner.get(id);
self.expect(token::COLON);
let dir = match *self.token {
2012-07-18 16:18:02 -07:00
token::IDENT(n, _) => self.interner.get(n),
_ => fail!()
};
self.bump();
2012-08-06 12:34:08 -07:00
let dir = match dir {
2012-08-03 19:59:04 -07:00
@~"send" => send,
@~"recv" => recv,
_ => fail!()
};
let typarms = if *self.token == token::LT {
2012-07-05 23:14:27 -07:00
self.parse_ty_params()
} else {
~[]
};
2012-07-05 23:14:27 -07:00
2012-07-18 16:18:02 -07:00
let state = proto.add_state_poly(name, id, dir, typarms);
2012-07-05 23:14:27 -07:00
// parse the messages
self.parse_unspanned_seq(
token::LBRACE, token::RBRACE, SeqSep {
sep: Some(token::COMMA),
trailing_sep_allowed: true
}, |self| self.parse_message(state));
}
fn parse_message(&self, state: state) {
2012-07-18 16:18:02 -07:00
let mname = *self.interner.get(self.parse_ident());
let args = if *self.token == token::LPAREN {
self.parse_unspanned_seq(token::LPAREN,
token::RPAREN, SeqSep {
sep: Some(token::COMMA),
trailing_sep_allowed: true
}, |p| p.parse_ty(false))
}
else { ~[] };
self.expect(token::RARROW);
let next = match *self.token {
2012-08-03 19:59:04 -07:00
token::IDENT(_, _) => {
2012-07-18 16:18:02 -07:00
let name = *self.interner.get(self.parse_ident());
let ntys = if *self.token == token::LT {
self.parse_unspanned_seq(token::LT,
token::GT, SeqSep {
sep: Some(token::COMMA),
trailing_sep_allowed: true
}, |p| p.parse_ty(false))
}
else { ~[] };
Some(next_state {state: name, tys: ntys})
}
2012-08-03 19:59:04 -07:00
token::NOT => {
// -> !
self.bump();
2012-08-20 12:23:37 -07:00
None
}
2012-08-03 19:59:04 -07:00
_ => self.fatal(~"invalid next state")
};
state.add_message(mname, *self.span, args, next);
}
}