X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Fbinaryparser.cpp;h=25edd63a15060d96bb5bcc95775cc3241dc9ce36;hp=7d1591de77105264a3d59fc2506c4bd0c03a9739;hb=29fafaa2c570b0cf92f41eeb534cfb65a841a892;hpb=0d8df25704366f3576c417436c90fbac2e479632 diff --git a/source/binaryparser.cpp b/source/binaryparser.cpp index 7d1591d..25edd63 100644 --- a/source/binaryparser.cpp +++ b/source/binaryparser.cpp @@ -32,45 +32,7 @@ BinaryParser::BinaryParser(Input &i, const string &s): dict[-3] = StatementKey("__flt", "i"); } -Statement BinaryParser::parse(bool raw) -{ - while(1) - { - Statement st = parse_statement(raw); - if(st.keyword=="__kwd") - { - int id = st.args[0].get(); - if(id<=0) - throw bad_definition("__kwd"); - - const string &kw = st.args[1].get(); - const string &args = st.args[2].get(); - for(string::const_iterator i=args.begin(); i!=args.end(); ++i) - for(unsigned j=0; valid_signatures[j]!=*i; ++j) - if(!valid_signatures[j]) - throw bad_definition("__kwd"); - - dict[id] = StatementKey(kw, args); - } - else if(st.keyword=="__str") - { - int id = st.args[0].get(); - if(id<=0) - throw bad_definition("__str"); - - strings[id] = st.args[1].get(); - } - else if(st.keyword=="__flt") - float_precision = st.args[0].get(); - else - return st; - - if(raw) - return st; - } -} - -Statement BinaryParser::parse_statement(bool raw) +Statement BinaryParser::parse() { while(first && in.peek()=='\n') in.get(); @@ -110,13 +72,42 @@ Statement BinaryParser::parse_statement(bool raw) unsigned nsub = parse_int(); for(unsigned j = 0; j(); + if(id<=0) + throw bad_definition("__kwd"); + + const string &kw = st.args[1].get(); + const string &args = st.args[2].get(); + for(string::const_iterator i=args.begin(); i!=args.end(); ++i) + for(unsigned j=0; valid_signatures[j]!=*i; ++j) + if(!valid_signatures[j]) + throw bad_definition("__kwd"); + + dict[id] = StatementKey(kw, args); + } + else if(st.keyword=="__str") + { + int id = st.args[0].get(); + if(id<=0) + throw bad_definition("__str"); + + strings[id] = st.args[1].get(); + } + else if(st.keyword=="__flt") + float_precision = st.args[0].get(); +} + IntType::Store BinaryParser::parse_int() { IntType::Store result = 0;