00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #if !defined FILE_PARSER_HPP
00024 #define FILE_PARSER_HPP
00025
00026 #include <map>
00027 #include <vector>
00028 #include <fstream>
00029 #include <stdexcept>
00030 #include <string>
00031 #include <cctype>
00032 #include <sstream>
00033 #include "udefs.hpp"
00034
00076 namespace eqn_cruncher
00077 {
00084 struct file_error : std::runtime_error
00085 {
00086 file_error(std::string const& str = "file_error")
00087 : std::runtime_error(str)
00088 { }
00089 };
00090
00091
00099 struct parse_error : std::runtime_error
00100 {
00101 parse_error(std::string const& str = "parse_error")
00102 : std::runtime_error(str)
00103 { }
00104 };
00105
00106
00113 void
00114 eat_ws(std::istream& in);
00115
00116
00128 std::string
00129 suffix_from_number(unsigned int num);
00130
00131
00149 void
00150 parse_file(std::string const& file_name,
00151 std::vector<std::string>& var_list,
00152 matrix_t& mat,
00153 std::vector<double>& rhs_list);
00154 }
00155
00156 #endif // FILE_PARSER_HPP