forked from AbleOS/ableos
Compare commits
4 commits
86e1020bc7
...
923e8b7218
Author | SHA1 | Date | |
---|---|---|---|
923e8b7218 | |||
0e5d5f7de7 | |||
d0d6f0475e | |||
0775d0c70a |
|
@ -1,66 +1,72 @@
|
||||||
pub mod protocol;
|
|
||||||
mod parser;
|
mod parser;
|
||||||
|
mod types;
|
||||||
|
mod protocol;
|
||||||
|
|
||||||
|
use crate::idl::{parser::parse, types::get_protocols};
|
||||||
use std::io::Read;
|
use std::io::Read;
|
||||||
|
|
||||||
use self::parser::parse;
|
use logos::{Lexer, Logos, Skip};
|
||||||
|
|
||||||
use logos::Logos;
|
|
||||||
|
|
||||||
#[derive(Logos, Debug, PartialEq, Clone)]
|
#[derive(Logos, Debug, PartialEq, Clone)]
|
||||||
#[logos(skip r"[ \t\n\f]+")] // Ignore this regex pattern between tokens
|
#[logos(extras = (usize, usize))]
|
||||||
enum Token {
|
enum Token {
|
||||||
#[regex("//[^\n]*\n", logos::skip)]
|
#[regex("//[^\n]*", logos::skip)]
|
||||||
|
Comment,
|
||||||
|
|
||||||
|
#[regex(r"[ \t\f]+", logos::skip)]
|
||||||
Ignored,
|
Ignored,
|
||||||
|
|
||||||
// Tokens can be literal strings, of any length.
|
#[regex(r"\n", newline_callback)]
|
||||||
#[token("protocol")]
|
Newline,
|
||||||
Protocol,
|
|
||||||
|
|
||||||
// Tokens can be literal strings, of any length.
|
// Tokens can be literal strings, of any length.
|
||||||
#[token("type")]
|
#[token("protocol", get_token_position)]
|
||||||
Type,
|
Protocol((usize,usize)),
|
||||||
#[token("fn", priority = 5)]
|
|
||||||
Fn,
|
|
||||||
|
|
||||||
#[token("enum")]
|
// Tokens can be literal strings, of any length.
|
||||||
Enum,
|
#[token("type", get_token_position)]
|
||||||
|
Type((usize, usize)),
|
||||||
|
|
||||||
#[token("struct")]
|
#[token("fn", priority = 5, callback = get_token_position)]
|
||||||
Struct,
|
Fn((usize, usize)),
|
||||||
|
|
||||||
#[token("{")]
|
#[token("enum", get_token_position)]
|
||||||
LBrace,
|
Enum((usize, usize)),
|
||||||
|
|
||||||
#[token("}")]
|
#[token("struct", get_token_position)]
|
||||||
RBrace,
|
Struct((usize, usize)),
|
||||||
|
|
||||||
#[token("(")]
|
#[token("{", get_token_position)]
|
||||||
LParen,
|
LBrace((usize, usize)),
|
||||||
|
|
||||||
#[token(")")]
|
#[token("}", get_token_position)]
|
||||||
RParen,
|
RBrace((usize, usize)),
|
||||||
|
|
||||||
#[token(":")]
|
#[token("(", get_token_position)]
|
||||||
Colon,
|
LParen((usize, usize)),
|
||||||
|
|
||||||
#[token(";")]
|
#[token(")", get_token_position)]
|
||||||
SemiColon,
|
RParen((usize, usize)),
|
||||||
|
|
||||||
#[token(",")]
|
#[token(":", get_token_position)]
|
||||||
Comma,
|
Colon((usize, usize)),
|
||||||
|
|
||||||
#[token("=")]
|
#[token(";", get_token_position)]
|
||||||
Equal,
|
SemiColon((usize, usize)),
|
||||||
|
|
||||||
#[token("->")]
|
#[token(",", get_token_position)] Comma((usize, usize)),
|
||||||
RArrow,
|
|
||||||
|
|
||||||
#[regex("[a-zA-Z_][a-zA-Z_1234567890]+", |lex|{lex.slice().to_string()})]
|
#[token("=", get_token_position)]
|
||||||
Identifier(String),
|
Equal((usize, usize)),
|
||||||
|
|
||||||
#[regex("[1234567890]+", |lex|{lex.slice().parse::<u64>().unwrap()})]
|
#[token("->", get_token_position)]
|
||||||
Number(u64),
|
RArrow((usize, usize)),
|
||||||
|
|
||||||
|
#[regex("[a-zA-Z_][a-zA-Z_1234567890]+", |lex|{let text = lex.slice().to_string(); let (line, col) = get_token_position(lex); (line, col, text)})]
|
||||||
|
Identifier((usize, usize, String)),
|
||||||
|
|
||||||
|
#[regex("[1234567890]+", |lex|{let num = lex.slice().parse::<u64>().unwrap(); let (line, col) = get_token_position(lex); (line, col, num) })]
|
||||||
|
Number((usize, usize, u64)),
|
||||||
|
|
||||||
#[regex(r"@[a-zA-Z_]+", /*|lex|{lex.slice().to_string()}*/ logos::skip)]
|
#[regex(r"@[a-zA-Z_]+", /*|lex|{lex.slice().to_string()}*/ logos::skip)]
|
||||||
Decorator,
|
Decorator,
|
||||||
|
@ -76,14 +82,16 @@ pub fn build_idl(name: String) {
|
||||||
for x in lex {
|
for x in lex {
|
||||||
match x {
|
match x {
|
||||||
Ok(token) => {
|
Ok(token) => {
|
||||||
println!("{:?}", token);
|
|
||||||
tokens.push(token);
|
tokens.push(token);
|
||||||
}
|
}
|
||||||
Err(err) => println!("{:?}", err),
|
Err(err) => println!("{:?}", err),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
println!("{:#?}", parse(tokens));
|
let protocols = get_protocols(parse(tokens));
|
||||||
|
let data : Vec<u8> = vec![1, 5, 12, 12, 12, 12, 3, 28, 8, 28];
|
||||||
|
println!("{:#?}", &protocols);
|
||||||
|
protocols.validate("Foo", "bar" , data).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn open_protocol(name: String) -> String {
|
fn open_protocol(name: String) -> String {
|
||||||
|
@ -93,3 +101,17 @@ fn open_protocol(name: String) -> String {
|
||||||
file.read_to_string(&mut contents).unwrap();
|
file.read_to_string(&mut contents).unwrap();
|
||||||
contents
|
contents
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn get_token_position(lex : &mut Lexer<Token>) -> (usize, usize) {
|
||||||
|
let line = lex.extras.0;
|
||||||
|
let column = lex.span().start - lex.extras.1;
|
||||||
|
|
||||||
|
(line, column + 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Update the line count and the char index.
|
||||||
|
fn newline_callback(lex: &mut Lexer<Token>) -> Skip {
|
||||||
|
lex.extras.0 += 1;
|
||||||
|
lex.extras.1 = lex.span().end;
|
||||||
|
Skip
|
||||||
|
}
|
||||||
|
|
|
@ -2,66 +2,69 @@ use std::{iter::Peekable, slice::Iter};
|
||||||
use super::Token;
|
use super::Token;
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
pub struct AST(Vec<Declaration>);
|
pub struct AST(pub Vec<Declaration>);
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
enum Declaration{
|
pub enum Declaration{
|
||||||
EnumDeclaration(EnumDeclaration),
|
EnumDeclaration(EnumDeclaration),
|
||||||
StructDeclaration(StructDeclaration),
|
StructDeclaration(StructDeclaration),
|
||||||
TypeDeclaration(TypeDeclaration),
|
TypeDeclaration(TypeDeclaration),
|
||||||
ProtocolDeclaration(ProtocolDeclaration),
|
ProtocolDeclaration(ProtocolDeclaration),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct StructDeclaration {
|
pub struct StructDeclaration {
|
||||||
name : String,
|
pub name : String,
|
||||||
members : Vec<StructMember>,
|
pub members : Vec<StructMember>,
|
||||||
}
|
}
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct TypeDeclaration {
|
pub struct TypeDeclaration {
|
||||||
name : String,
|
pub name : String,
|
||||||
type_name : String,
|
pub type_name : String,
|
||||||
}
|
}
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct StructMember {
|
pub struct StructMember {
|
||||||
name : String,
|
pub name : String,
|
||||||
type_name : String,
|
pub type_name : String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct EnumDeclaration {
|
pub struct EnumDeclaration {
|
||||||
name : String,
|
pub name : String,
|
||||||
members : Vec<EnumMember>,
|
pub members : Vec<EnumMember>,
|
||||||
}
|
}
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct EnumMember {
|
pub struct EnumMember {
|
||||||
name : String,
|
pub name : String,
|
||||||
number: u64,
|
pub number: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct ProtocolDeclaration{
|
pub struct ProtocolDeclaration{
|
||||||
name : String,
|
pub name : String,
|
||||||
interface : Vec<FuncDeclaration>,
|
pub interface : Vec<FuncDeclaration>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
struct FuncDeclaration {
|
pub struct FuncDeclaration {
|
||||||
name : String,
|
pub name : String,
|
||||||
arg_list : Vec<String>,
|
pub arg_list : Vec<String>,
|
||||||
return_type : String,
|
pub return_type : String,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
macro_rules! consume {
|
||||||
/// Consume's a token that's expected. If the token that's consumed is not
|
($tokens:ident, $token_type:path) => {
|
||||||
/// the given expected token then panic
|
let a = $tokens.next();
|
||||||
fn consume(tokens : &mut Peekable<Iter<'_, Token>>, token : Token) {
|
match a {
|
||||||
let a = tokens.next();
|
None => panic!("Expected {}, Got End Of Tokens", stringify!($token_type)),
|
||||||
match a {
|
Some(t) => {
|
||||||
None => panic!("Expected {:?}, Got End Of File", token),
|
if matches!(t, $token_type(_)){}
|
||||||
Some(a) => if *a != token {
|
else {
|
||||||
panic!("Expected {:?}, Got {:?}", token, *a);
|
panic!("Expected {:?}, Got {:?}", stringify!($token_type), t);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn parse(tokens : Vec<Token>) -> AST{
|
pub fn parse(tokens : Vec<Token>) -> AST{
|
||||||
|
@ -84,29 +87,29 @@ fn declaration(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<Declaration> {
|
||||||
match tokens.peek(){
|
match tokens.peek(){
|
||||||
None => None,
|
None => None,
|
||||||
Some(tok) => match tok {
|
Some(tok) => match tok {
|
||||||
Token::Enum => Some(enum_decl(tokens)),
|
Token::Enum(_) => Some(enum_decl(tokens)),
|
||||||
Token::Struct => Some(struct_decl(tokens)),
|
Token::Struct(_) => Some(struct_decl(tokens)),
|
||||||
Token::Type => Some(type_declaration(tokens)),
|
Token::Type(_) => Some(type_declaration(tokens)),
|
||||||
Token::Protocol => Some(protocol_declaration(tokens)),
|
Token::Protocol(_) => Some(protocol_declaration(tokens)),
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn enum_decl(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
fn enum_decl(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
||||||
consume(tokens, Token::Enum);
|
consume!(tokens, Token::Enum);
|
||||||
let name = identifier(tokens).expect("Expected Identifier after `enum`");
|
let name = identifier(tokens).expect("Expected Identifier after `enum`");
|
||||||
consume(tokens, Token::LBrace);
|
consume!(tokens, Token::LBrace);
|
||||||
let mut members = Vec::new();
|
let mut members = Vec::new();
|
||||||
|
|
||||||
match tokens.peek().expect("Unexpected EOF after LBrace") {
|
match tokens.peek().expect("Unexpected EOF after LBrace") {
|
||||||
Token::RBrace => {}, // skip checking for enum_members if empty
|
Token::RBrace(_) => {}, // skip checking for enum_members if empty
|
||||||
_ => {
|
_ => {
|
||||||
enum_members(tokens, &mut members);
|
enum_members(tokens, &mut members);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
consume(tokens, Token::RBrace);
|
consume!(tokens, Token::RBrace);
|
||||||
|
|
||||||
Declaration::EnumDeclaration(EnumDeclaration{name, members})
|
Declaration::EnumDeclaration(EnumDeclaration{name, members})
|
||||||
}
|
}
|
||||||
|
@ -115,8 +118,8 @@ fn enum_members(tokens : &mut Peekable<Iter<'_, Token>>, members: &mut Vec<EnumM
|
||||||
members.push(enum_member(tokens).unwrap());
|
members.push(enum_member(tokens).unwrap());
|
||||||
loop {
|
loop {
|
||||||
match tokens.peek().expect("Unexpected EOF inside enum declaration") {
|
match tokens.peek().expect("Unexpected EOF inside enum declaration") {
|
||||||
Token::Comma => {
|
Token::Comma(_) => {
|
||||||
consume(tokens, Token::Comma);
|
consume!(tokens, Token::Comma);
|
||||||
if let Some(member) = enum_member(tokens) {
|
if let Some(member) = enum_member(tokens) {
|
||||||
members.push(member);
|
members.push(member);
|
||||||
} else {
|
} else {
|
||||||
|
@ -131,38 +134,38 @@ fn enum_members(tokens : &mut Peekable<Iter<'_, Token>>, members: &mut Vec<EnumM
|
||||||
fn enum_member(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<EnumMember> {
|
fn enum_member(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<EnumMember> {
|
||||||
let name = identifier(tokens);
|
let name = identifier(tokens);
|
||||||
if let Some(name) = name {
|
if let Some(name) = name {
|
||||||
consume(tokens, Token::Equal);
|
consume!(tokens, Token::Equal);
|
||||||
let number = parse_number(tokens).expect("Expected Number after `=`");
|
let number = parse_number(tokens).expect("Expected Number after `=`");
|
||||||
Some(EnumMember{name, number})
|
Some(EnumMember{name, number})
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn struct_decl(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
fn struct_decl(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
||||||
consume(tokens, Token::Struct);
|
consume!(tokens, Token::Struct);
|
||||||
let name = identifier(tokens).expect("Expected Identifier after `struct`");
|
let name = identifier(tokens).expect("Expected Identifier after `struct`");
|
||||||
consume(tokens, Token::LBrace);
|
consume!(tokens, Token::LBrace);
|
||||||
let mut members = Vec::new();
|
let mut members = Vec::new();
|
||||||
|
|
||||||
match tokens.peek().expect("Unexpected EOF after LBrace") {
|
match tokens.peek().expect("Unexpected EOF after LBrace") {
|
||||||
Token::RBrace => {}, // skip checking for struct_members if empty
|
Token::RBrace(_) => {}, // skip checking for struct_members if empty
|
||||||
_ => {
|
_ => {
|
||||||
struct_members(tokens, &mut members);
|
struct_members(tokens, &mut members);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
consume(tokens, Token::RBrace);
|
consume!(tokens, Token::RBrace);
|
||||||
|
|
||||||
Declaration::StructDeclaration(StructDeclaration{name, members})
|
Declaration::StructDeclaration(StructDeclaration{name, members})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn struct_members(tokens : &mut Peekable<Iter<'_, Token>>, members: &mut Vec<StructMember>) {
|
fn struct_members(tokens : &mut Peekable<Iter<'_, Token>>, members: &mut Vec<StructMember>) {
|
||||||
members.push(struct_member(tokens).unwrap());
|
members.push(struct_member(tokens).unwrap());
|
||||||
loop {
|
loop {
|
||||||
match tokens.peek().expect("Unexpected EOF inside struct declaration") {
|
match tokens.peek().expect("Unexpected EOF inside struct declaration") {
|
||||||
Token::Comma => {
|
Token::Comma(_) => {
|
||||||
consume(tokens, Token::Comma);
|
consume!(tokens, Token::Comma);
|
||||||
if let Some(member) = struct_member(tokens) {
|
if let Some(member) = struct_member(tokens) {
|
||||||
members.push(member);
|
members.push(member);
|
||||||
} else {
|
} else {
|
||||||
|
@ -176,23 +179,23 @@ fn struct_members(tokens : &mut Peekable<Iter<'_, Token>>, members: &mut Vec<Str
|
||||||
fn struct_member(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<StructMember> {
|
fn struct_member(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<StructMember> {
|
||||||
let name = identifier(tokens);
|
let name = identifier(tokens);
|
||||||
if let Some(name) = name {
|
if let Some(name) = name {
|
||||||
consume(tokens, Token::Colon);
|
consume!(tokens, Token::Colon);
|
||||||
let type_name = identifier(tokens).expect("Expected Type after Colon");
|
let type_name = identifier(tokens).expect("Expected Type after Colon");
|
||||||
Some(StructMember{name, type_name})
|
Some(StructMember{name, type_name})
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
}
|
||||||
fn type_declaration(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
fn type_declaration(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
||||||
consume(tokens, Token::Type);
|
consume!(tokens, Token::Type);
|
||||||
let name = identifier(tokens).expect("Expected Identifier after `type`");
|
let name = identifier(tokens).expect("Expected Identifier after `type`");
|
||||||
let type_name = identifier(tokens).expect("Expected type after Identifier");
|
let type_name = identifier(tokens).expect("Expected type after Identifier");
|
||||||
Declaration::TypeDeclaration(TypeDeclaration{name, type_name})
|
Declaration::TypeDeclaration(TypeDeclaration{name, type_name})
|
||||||
}
|
}
|
||||||
fn identifier(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<String> {
|
fn identifier(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<String> {
|
||||||
let result = tokens.peek().map_or(None, |x| match x {
|
let result = tokens.peek().map_or(None, |x| match x {
|
||||||
Token::Identifier(s) => {
|
Token::Identifier((_, _, s)) => {
|
||||||
Some(s.to_string())
|
Some(s.to_string())
|
||||||
},
|
},
|
||||||
_ => None
|
_ => None
|
||||||
|
@ -206,7 +209,7 @@ fn identifier(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<String> {
|
||||||
}
|
}
|
||||||
fn parse_number(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<u64> {
|
fn parse_number(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<u64> {
|
||||||
let result = tokens.peek().map_or(None, |x| match x {
|
let result = tokens.peek().map_or(None, |x| match x {
|
||||||
Token::Number(s) => Some(*s),
|
Token::Number((_, _, s)) => Some(*s),
|
||||||
_ => None
|
_ => None
|
||||||
});
|
});
|
||||||
if let Some(_) = result {
|
if let Some(_) = result {
|
||||||
|
@ -216,12 +219,12 @@ fn parse_number(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<u64> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn protocol_declaration(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
fn protocol_declaration(tokens : &mut Peekable<Iter<'_, Token>>) -> Declaration {
|
||||||
consume(tokens, Token::Protocol);
|
consume!(tokens, Token::Protocol);
|
||||||
let name = identifier(tokens).expect("Expected Identifier after `protocol`");
|
let name = identifier(tokens).expect("Expected Identifier after `protocol`");
|
||||||
consume(tokens, Token::LBrace);
|
consume!(tokens, Token::LBrace);
|
||||||
let mut interface = Vec::new();
|
let mut interface = Vec::new();
|
||||||
match tokens.peek().expect("Unexpected EOF after LBrace") {
|
match tokens.peek().expect("Unexpected EOF after LBrace") {
|
||||||
Token::RBrace => {},
|
Token::RBrace(_) => {},
|
||||||
_ => {
|
_ => {
|
||||||
functions(tokens, &mut interface);
|
functions(tokens, &mut interface);
|
||||||
},
|
},
|
||||||
|
@ -239,13 +242,13 @@ fn functions(tokens : &mut Peekable<Iter<'_, Token>>, interface : &mut Vec<FuncD
|
||||||
}
|
}
|
||||||
|
|
||||||
fn function(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<FuncDeclaration>{
|
fn function(tokens : &mut Peekable<Iter<'_, Token>>) -> Option<FuncDeclaration>{
|
||||||
if let Some(Token::Fn) = tokens.peek() {
|
if let Some(Token::Fn(_)) = tokens.peek() {
|
||||||
consume(tokens, Token::Fn);
|
consume!(tokens, Token::Fn);
|
||||||
let name = identifier(tokens).expect("Expected Identifier after `fn`");
|
let name = identifier(tokens).expect("Expected Identifier after `fn`");
|
||||||
consume(tokens, Token::LParen);
|
consume!(tokens, Token::LParen);
|
||||||
let arg_list = arg_list(tokens);
|
let arg_list = arg_list(tokens);
|
||||||
consume(tokens, Token::RParen);
|
consume!(tokens, Token::RParen);
|
||||||
consume(tokens, Token::RArrow);
|
consume!(tokens, Token::RArrow);
|
||||||
let return_type = identifier(tokens).expect("Expected return type after `->");
|
let return_type = identifier(tokens).expect("Expected return type after `->");
|
||||||
Some(FuncDeclaration{name, arg_list, return_type})
|
Some(FuncDeclaration{name, arg_list, return_type})
|
||||||
} else {
|
} else {
|
||||||
|
@ -260,8 +263,8 @@ fn arg_list(tokens : &mut Peekable<Iter<'_, Token>>) -> Vec<String> {
|
||||||
None => break,
|
None => break,
|
||||||
Some(i) =>{
|
Some(i) =>{
|
||||||
result.push(i);
|
result.push(i);
|
||||||
if **tokens.peek().expect("Unexpected EOF in argument list") == Token::Comma{
|
if let Token::Comma(_) = **tokens.peek().expect("Unexpected EOF in argument list"){
|
||||||
consume(tokens, Token::Comma);
|
consume!(tokens, Token::Comma);
|
||||||
match tokens.peek().expect("Unexpected EOF in argument list") {
|
match tokens.peek().expect("Unexpected EOF in argument list") {
|
||||||
Token::Identifier(_) => {},
|
Token::Identifier(_) => {},
|
||||||
_ => panic!("Unexpected symbol after Comma in argument list"),
|
_ => panic!("Unexpected symbol after Comma in argument list"),
|
||||||
|
|
|
@ -1,17 +1,167 @@
|
||||||
pub enum ProtocolTypes {
|
use std::collections::HashMap;
|
||||||
Byte,
|
use crate::idl::types::Type;
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
|
pub struct Function{
|
||||||
|
pub arguments : Vec<String>,
|
||||||
|
}
|
||||||
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
|
pub struct Protocol{
|
||||||
|
interface : HashMap<String, Function>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Protocol {}
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
impl Protocol {
|
pub struct Protocols {
|
||||||
pub fn is_empty(&self) -> bool {
|
protocols : HashMap<String, Protocol>,
|
||||||
true
|
symbol_table : HashMap<String, Type>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
|
pub enum ValidationError{
|
||||||
|
IncorrectVersion,
|
||||||
|
InvalidHeader,
|
||||||
|
FunctionDoesNotExist,
|
||||||
|
ProtocolDoesNotExist,
|
||||||
|
InvalidSize,
|
||||||
|
InvalidArgument,
|
||||||
|
NonExistentType(String),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Protocols {
|
||||||
|
pub fn new(symbol_table: HashMap<String, Type>) -> Self {
|
||||||
|
let protocols = HashMap::new();
|
||||||
|
Self { protocols, symbol_table }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn add_protocol(&mut self, name : String, interface : HashMap<String, Function>) {
|
||||||
|
self.protocols.insert(name, Protocol::new(interface));
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn validate_data(&self, data: Vec<u8>) -> bool {
|
pub fn validate(&self, protocol_name : &str, function_name : &str, data : Vec<u8>) -> Result<(), ValidationError>{
|
||||||
if !data.is_empty() && self.is_empty() {
|
match self.protocols.get(protocol_name) {
|
||||||
return false;
|
Some(s) => s.validate(function_name, data, &self.symbol_table),
|
||||||
|
None => Err(ValidationError::ProtocolDoesNotExist),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
impl Protocol {
|
||||||
|
pub fn new(interface: HashMap<String, Function>) -> Self {
|
||||||
|
Self {interface}
|
||||||
|
}
|
||||||
|
fn validate(&self, function_name : &str, data : Vec<u8>, symbols : &HashMap<String, Type>) -> Result<(), ValidationError> {
|
||||||
|
match self.interface.get(function_name){
|
||||||
|
Some(s) => s.validate(data, symbols),
|
||||||
|
None => Err(ValidationError::FunctionDoesNotExist),
|
||||||
}
|
}
|
||||||
true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Function {
|
||||||
|
fn validate(&self, data : Vec<u8>, symbols : &HashMap<String, Type>) -> Result<(), ValidationError> {
|
||||||
|
let mut types = Vec::new();
|
||||||
|
for arg in self.arguments.iter() {
|
||||||
|
let type_value = symbols.get(arg);
|
||||||
|
if let Some(type_value) = type_value {
|
||||||
|
types.push(type_value);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return Err(ValidationError::NonExistentType(arg.to_string()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let mut data = data.iter();
|
||||||
|
if let Some(ver) = data.next() {
|
||||||
|
if *ver == 1 {
|
||||||
|
// We got the correct version number
|
||||||
|
// Now to parse individual argumebts
|
||||||
|
let mut types = types.iter().peekable();
|
||||||
|
loop {
|
||||||
|
let type_byte = data.next();
|
||||||
|
if let Some(type_byte) = type_byte {
|
||||||
|
let type_value = types.next();
|
||||||
|
if type_value.is_none() {
|
||||||
|
return Err(ValidationError::InvalidSize);
|
||||||
|
}
|
||||||
|
let type_value = type_value.unwrap();
|
||||||
|
let data_type = match type_byte {
|
||||||
|
0 => Some(Type::U64),
|
||||||
|
1 => Some(Type::U32),
|
||||||
|
2 => Some(Type::U16),
|
||||||
|
3 => Some(Type::U8),
|
||||||
|
4 => Some(Type::I64),
|
||||||
|
5 => Some(Type::I32),
|
||||||
|
6 => Some(Type::I16),
|
||||||
|
7 => Some(Type::I8),
|
||||||
|
8 => Some(Type::Bool),
|
||||||
|
9 => Some(Type::F32),
|
||||||
|
10 => Some(Type::F64),
|
||||||
|
11 => Some(Type::Str),
|
||||||
|
_ => None,
|
||||||
|
};
|
||||||
|
if data_type.is_none() || data_type.as_ref().unwrap() != *type_value {
|
||||||
|
println!("{:#?}", *type_value);
|
||||||
|
return Err(ValidationError::InvalidArgument);
|
||||||
|
}
|
||||||
|
|
||||||
|
match data_type.unwrap(){
|
||||||
|
Type::U64 | Type::I64 | Type::F64 => {
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
},
|
||||||
|
Type::U32 | Type::I32 | Type::F32 => {
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
},
|
||||||
|
Type::U16 | Type::I16 => {
|
||||||
|
data.next();
|
||||||
|
data.next();
|
||||||
|
},
|
||||||
|
Type::U8 | Type::I8 | Type::Bool => {
|
||||||
|
data.next();
|
||||||
|
},
|
||||||
|
Type::Str => todo!(),
|
||||||
|
_ => panic!("Should not be possible"),
|
||||||
|
}
|
||||||
|
} else if types.peek().is_none() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return Err(ValidationError::IncorrectVersion);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return Err(ValidationError::InvalidHeader);
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
98
dev/src/idl/types.rs
Normal file
98
dev/src/idl/types.rs
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use crate::idl::parser::AST;
|
||||||
|
|
||||||
|
use super::protocol::{Function, Protocols};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
|
pub enum Type {
|
||||||
|
U64,
|
||||||
|
U32,
|
||||||
|
U16,
|
||||||
|
U8,
|
||||||
|
|
||||||
|
I64,
|
||||||
|
I32,
|
||||||
|
I16,
|
||||||
|
I8,
|
||||||
|
|
||||||
|
Bool,
|
||||||
|
|
||||||
|
F32,
|
||||||
|
F64,
|
||||||
|
Str,
|
||||||
|
|
||||||
|
Struct(StructType),
|
||||||
|
Enum(EnumType),
|
||||||
|
Alias(String),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
|
pub struct StructType {
|
||||||
|
members : HashMap<String, String>
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
|
pub struct EnumType {
|
||||||
|
members : HashMap<String, u8>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fn add_builtin_types(symbol_table : &mut HashMap<String, Type>) {
|
||||||
|
symbol_table.insert("u8".to_string(), Type::U8);
|
||||||
|
symbol_table.insert("u16".to_string(), Type::U16);
|
||||||
|
symbol_table.insert("u32".to_string(), Type::U32);
|
||||||
|
symbol_table.insert("u64".to_string(), Type::U64);
|
||||||
|
symbol_table.insert("i8".to_string(), Type::I8);
|
||||||
|
symbol_table.insert("i16".to_string(), Type::I16);
|
||||||
|
symbol_table.insert("i32".to_string(), Type::I32);
|
||||||
|
symbol_table.insert("i64".to_string(), Type::I64);
|
||||||
|
symbol_table.insert("bool".to_string(), Type::Bool);
|
||||||
|
symbol_table.insert("f32".to_string(), Type::F32);
|
||||||
|
symbol_table.insert("f64".to_string(), Type::F64);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_protocols(ast : AST) -> Protocols{
|
||||||
|
let mut symbol_table : HashMap<String, Type> = HashMap::new();
|
||||||
|
let declarations = ast.0;
|
||||||
|
add_builtin_types(&mut symbol_table);
|
||||||
|
// First Pass
|
||||||
|
// We just populate the symbol table here
|
||||||
|
for decl in declarations.iter() {
|
||||||
|
match decl{
|
||||||
|
super::parser::Declaration::EnumDeclaration(e) => {
|
||||||
|
let mut members = HashMap::new();
|
||||||
|
for m in e.members.iter(){
|
||||||
|
members.insert(m.name.to_string(), m.number as u8);
|
||||||
|
}
|
||||||
|
symbol_table.insert(e.name.to_string(), Type::Enum(EnumType{members}));
|
||||||
|
},
|
||||||
|
super::parser::Declaration::StructDeclaration(s) => {
|
||||||
|
let mut members = HashMap::new();
|
||||||
|
for m in s.members.iter() {
|
||||||
|
members.insert(m.name.to_string(), m.type_name.to_string());
|
||||||
|
}
|
||||||
|
symbol_table.insert(s.name.to_string(), Type::Struct(StructType{members}));
|
||||||
|
},
|
||||||
|
super::parser::Declaration::TypeDeclaration(t) => {
|
||||||
|
symbol_table.insert(t.name.to_string(), Type::Alias(t.type_name.to_string()));
|
||||||
|
},
|
||||||
|
super::parser::Declaration::ProtocolDeclaration(_) => {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut protocols = Protocols::new(symbol_table);
|
||||||
|
for decl in declarations.iter(){
|
||||||
|
match decl {
|
||||||
|
super::parser::Declaration::ProtocolDeclaration(p) => {
|
||||||
|
let mut funcs : HashMap<String, Function> = HashMap::new();
|
||||||
|
for i in p.interface.iter(){
|
||||||
|
funcs.insert(i.name.to_string(), Function{arguments : i.arg_list.clone()});
|
||||||
|
}
|
||||||
|
protocols.add_protocol(p.name.to_string(), funcs);
|
||||||
|
},
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
protocols
|
||||||
|
}
|
3
sysdata/idl/test/src/protocol.aldi
Normal file
3
sysdata/idl/test/src/protocol.aldi
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
protocol Foo{
|
||||||
|
fn bar(i32, u8, bool) -> void;
|
||||||
|
}
|
Loading…
Reference in a new issue