X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinaryparser.cpp;h=25edd63a15060d96bb5bcc95775cc3241dc9ce36;hb=29fafaa2c570b0cf92f41eeb534cfb65a841a892;hp=c3d53d7241d4aaa069aeee617f98b16f6a504cb8;hpb=2f79370bffe0bac865dc97c5114dc87c1936fbb4;p=libs%2Fdatafile.git diff --git a/source/binaryparser.cpp b/source/binaryparser.cpp index c3d53d7..25edd63 100644 --- a/source/binaryparser.cpp +++ b/source/binaryparser.cpp @@ -1,13 +1,9 @@ -/* $Id$ - -This file is part of libmspdatafile -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - +#include #include -#include +#include +#include #include "binaryparser.h" +#include "binfloat.h" #include "input.h" using namespace std; @@ -15,155 +11,193 @@ using namespace std; namespace Msp { namespace DataFile { -BinaryParser::BinaryParser(Input &i, const string &s): - ParserMode(i, s), - first(true) +class bad_definition: public runtime_error { - dict[1]=DictEntry("__st", "iss"); - dict[2]=DictEntry("__enum", "is"); -} +public: + bad_definition(const std::string &w): + runtime_error(w) + { } -Statement BinaryParser::parse() -{ - while(1) - { - Statement st=parse_statement(); - if(st.keyword=="__st") - { - if(st.args.size()!=3) - throw TypeError(src+": Keyword definition must have three arguments"); + virtual ~bad_definition() throw() { } +}; - const unsigned id=st.args[0].get(); - const string &kw=st.args[1].get(); - const string &args=st.args[2].get(); - dict[id]=DictEntry(kw, args); - } - else if(st.keyword=="__enum") - { - if(st.args.size()!=2) - throw TypeError(src+": Enum definition must have three arguments"); - const unsigned id=st.args[0].get(); - enums[id]=st.args[1].get(); - } - else - return st; - } +BinaryParser::BinaryParser(Input &i, const string &s): + ParserMode(i, s), + first(true), + float_precision(32) +{ + dict[-1] = StatementKey("__kwd", "iss"); + dict[-2] = StatementKey("__str", "is"); + dict[-3] = StatementKey("__flt", "i"); } -Statement BinaryParser::parse_statement() +Statement BinaryParser::parse() { while(first && in.peek()=='\n') in.get(); - first=false; + first = false; - unsigned id=parse_int(); + int id = parse_int(); if(!in) return Statement(); - Dictionary::const_iterator i=dict.find(id); - if(i==dict.end()) - throw ParseError(format("%s: Unknown statement ID %d", src, id), src, 0); - const DictEntry &de=i->second; + const StatementKey &key = get_item(dict, id); Statement result; - result.keyword=de.keyword; - result.source=src; + result.keyword = key.keyword; + result.source = src; - 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; + unsigned bits = 0; while(in) { - int c=in.get(); + int c = in.get(); - result=result<<7 | c&0x7F; - bits+=7; + result = (result<<7) | (c&0x7F); + bits += 7; if(!(c&0x80)) break; } - const long long mask=1<<(bits-1); - result=(result^mask)-mask; + const IntType::Store mask = 1LL<<(bits-1); + result = (result^mask)-mask; return result; } -float BinaryParser::parse_float() +FloatType::Store BinaryParser::parse_float() { - union + UInt64 encoded = 0; + for(unsigned i=0; i::is_iec559) + return bf.compose_iec559(); + else { - float f; - char d[sizeof(float)]; - }; - -#if BYTE_ORDER == LITTLE_ENDIAN - for(unsigned i=sizeof(float); i--;) - d[i]=in.get(); -#else - for(unsigned i=0; i::has_infinity) + f = numeric_limits::infinity(); + else + f = numeric_limits::max(); + } + else + { + for(unsigned i=0; i<64; ++i) + { + f /= 2; + if(bf.mantissa&1) + f += 1; + bf.mantissa >>= 1; + } + for(int i=0; ibf.exponent; --i) + f /= 2; + } + if(bf.sign) + f = -f; + return f; + } } -bool BinaryParser::parse_bool() +BoolType::Store BinaryParser::parse_bool() { return in.get(); } -string BinaryParser::parse_string() +StringType::Store BinaryParser::parse_string() { - unsigned len=parse_int(); - string result; - result.reserve(len); - for(unsigned i=0; i=0) + { + string result; + result.reserve(len); + for(int i = 0; isecond; + return get_item(strings, parse_int()); } } // namespace DataFile