X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=tool%2Ftool.cpp;h=b816ee33cd1e8d916d65c2b7d9315a7d8773db70;hb=bbb5a5b00b4008684d5c32b3ea2fd21f7a5fad54;hp=ca415d30a0d9dc7d996d84b62021be90bc054f9e;hpb=db9c49893c2a9475cb5efa4a53bc481a5f66231f;p=libs%2Fdatafile.git diff --git a/tool/tool.cpp b/tool/tool.cpp index ca415d3..b816ee3 100644 --- a/tool/tool.cpp +++ b/tool/tool.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspdatafile -Copyright © 2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include #include #include @@ -12,6 +5,7 @@ Distributed under the LGPL #include #include #include +#include "compiler.h" #include "tool.h" using namespace std; @@ -19,47 +13,66 @@ using namespace Msp; DataTool::DataTool(int argc, char **argv): in_fn("-"), - out_fn("-") + out_fn("-"), + binary(false), + compile(false), + float_size(0), + compress(false) { GetOpt getopt; - getopt.add_option('o', "output", out_fn, GetOpt::REQUIRED_ARG); getopt.add_option('b', "binary", binary, GetOpt::NO_ARG); + getopt.add_option('c', "compile", compile, GetOpt::NO_ARG); + getopt.add_option('f', "float-size", float_size, GetOpt::REQUIRED_ARG); + getopt.add_option('o', "output", out_fn, GetOpt::REQUIRED_ARG); + getopt.add_option('z', "compress", compress, GetOpt::NO_ARG); getopt(argc, argv); - const vector &args=getopt.get_args(); + const vector &args = getopt.get_args(); if(!args.empty()) - in_fn=args[0]; + in_fn = args[0]; } int DataTool::main() { IO::Base *in; if(in_fn=="-") - in=&IO::cin; + in = &IO::cin; else - in=new IO::File(in_fn); + in = new IO::File(in_fn); IO::Base *out; if(out_fn=="-") - out=&IO::cout; + out = &IO::cout; else - out=new IO::File(out_fn, IO::M_WRITE); + out = new IO::File(out_fn, IO::M_WRITE); { IO::Buffered in_buf(*in); DataFile::Parser parser(in_buf, in_fn); IO::Buffered out_buf(*out); DataFile::Writer writer(out_buf); + if(compress) + writer.set_compressed(); if(binary) writer.set_binary(true); + if(float_size) + writer.set_float_precision(float_size); - while(parser) + if(compile) { - DataFile::Statement st=parser.parse(); - if(st.valid) + Compiler compiler(writer); + compiler.load(parser); + } + else + { + while(parser) { - writer.write(st); - out_buf.flush(); + DataFile::Statement st = parser.parse(); + if(st.valid) + { + writer.write(st); + out_buf.flush(); + } } } } @@ -71,5 +84,3 @@ int DataTool::main() return 0; } - -Application::RegApp DataTool::reg;