source: trunk/FACT++/src/Converter.h@ 14556

Last change on this file since 14556 was 12308, checked in by tbretz, 13 years ago
Added specilized template to make sure we do not have to convert floats to ints
File size: 5.5 KB
Line 
1#ifndef FACT_Converter
2#define FACT_Converter
3
4#include <math.h>
5
6#include <vector>
7#include <iomanip>
8#include <sstream>
9
10#include <boost/any.hpp>
11
12#include <stdexcept>
13
14#include <iostream>
15
16class Converter
17{
18public:
19 typedef std::pair<const std::type_info *, int> Type;
20 typedef std::pair<int, int> Offset;
21 typedef std::pair<Type, Offset> Format;
22 typedef std::vector<Format> FormatList;
23
24 struct O { };
25 struct W { };
26
27 static std::string Clean(std::string s);
28
29private:
30 std::ostream &wout; /// ostream to which output is redirected
31
32 const std::string fFormat; /// Original format string
33 const FormatList fList; /// Compiled format description
34
35 template <class T>
36 T Get(std::stringstream &line) const;
37
38 bool GetBool(std::stringstream &line) const;
39 std::string GetString(std::stringstream &line) const;
40 std::string GetStringEol(std::stringstream &line) const;
41
42 template<class T>
43 void GetBinImp(std::vector<char> &v, const T &val) const;
44 template<class T>
45 void GetBinImp(std::vector<boost::any> &v, const T &val) const;
46
47 void GetBinString(std::vector<char> &v, const std::string &val) const;
48 void GetBinString(std::vector<boost::any> &v, const std::string &val) const;
49
50 template<class T>
51 std::string GetString(const char *&data) const;
52 template<char>
53 std::string GetString(const char* &ptr) const;
54
55 template<class T>
56 static Type GetType();
57 template<class T>
58 static Type GetVoid();
59
60 template <class T>
61 std::vector<T> Get(const std::string &str) const;
62 template <class T>
63 T Get(const void *d, size_t size) const;
64
65
66
67 template<class T>
68 void Add(std::string &str, const char* &ptr) const;
69 void AddString(std::string &str, const char* &ptr) const;
70 template<class T>
71 void Add(std::vector<boost::any> &vec, const char* &ptr) const;
72 void AddString(std::vector<boost::any> &vec, const char* &ptr) const;
73
74
75public:
76 Converter(std::ostream &out, const std::string &fmt, bool strict=true);
77 Converter(const std::string &fmt, bool strict=true);
78
79 /// @returns whether the interpreted format was valid but empty ("")
80 bool empty() const { return fList.size()==1 && fList.back().first.second==0; }
81
82 /// @returns whether the compilation was successfull
83 bool valid() const { return !fList.empty() && fList.back().first.second==0; }
84
85 /// @returns true if the compilation failed
86 bool operator!() const { return !valid(); }
87
88 const FormatList &GetList() const { return fList; }
89 size_t GetSize() const { return fList.size()==0 ? 0 : fList.back().second.second; }
90
91 static FormatList Compile(std::ostream &out, const std::string &fmt, bool strict=false);
92 static FormatList Compile(const std::string &fmt, bool strict=false);
93
94 std::string GetString(const void *d, size_t size) const;
95 std::vector<char> GetVector(const void *d, size_t size) const;
96 std::vector<boost::any> GetAny(const void *d, size_t size) const;
97
98 std::vector<boost::any> GetAny(const std::string &str) const;
99 std::vector<char> GetVector(const std::string &str) const;
100
101 std::vector<std::string> ToStrings(const void *src/*, size_t size*/) const;
102 void ToFits(void* dest, const void* src, size_t size) const;
103
104 std::vector<char> ToFits(const void* src, size_t size) const;
105 std::vector<std::string> GetFitsFormat() const;
106
107 static std::string ToFormat(const std::vector<std::string> &fits);
108
109 template<typename T>
110 static std::string GetHex(const void *dat, size_t size, size_t col=0, bool prefix=true)
111 {
112 if (size%sizeof(T)!=0)
113 throw std::runtime_error("GetHex: Total not dividable by typesize.");
114
115 const T *ptr = reinterpret_cast<const T*>(dat);
116
117 std::ostringstream text;
118 text << std::hex;
119
120 const size_t w = nearbyint(ceil(log2(size+1)))/4+1;
121
122 for (size_t i=0; i<size/sizeof(T); i++)
123 {
124 if (prefix && col!=0 && i%col==0)
125 text << std::setfill('0') << std::setw(w) << i << "| ";
126
127 text << std::setfill('0') << std::setw(2*sizeof(T));
128 text << (unsigned int)ptr[i] << ':';
129
130 if (col!=0 && i%col==col-1)
131 text << '\n';
132
133 }
134
135 return text.str();
136 }
137
138 template<typename T, typename S>
139 static std::string GetHex(const S &s, size_t col=0, bool prefix=true)
140 {
141 return GetHex<T>(&s, sizeof(S), col, prefix);
142 }
143
144 void Print(std::ostream &out) const;
145 void Print() const;
146
147 static std::vector<std::string> Regex(const std::string &expr, const std::string &line);
148};
149
150#endif
151
152// ***************************************************************************
153/** @template GetHex(const void *dat, size_t size, size_t col, bool prefix)
154
155Converts from a binary block into a hex representation.
156
157@param dat
158 Pointer to the data block
159
160@param size
161 Size of the data block (in bytes)
162
163@param col
164 Number of columns before new line (zero <default> to write a
165 continous stream
166
167@param prefix
168 Boolean which defines whether each line should be prefixed with a counter,
169 the default is true. It is ignored if col==0
170
171@tparam T
172 type to which the data should be converted. Most usefull types are
173 unsigned byte, unsigned short, unsigned int, uint8_t, uint16_t, ...
174
175@returns
176 The string
177
178**/
179// ***************************************************************************
Note: See TracBrowser for help on using the repository browser.