]> git.treefish.org Git - phys/latlib.git/blob - configcache.h
...
[phys/latlib.git] / configcache.h
1 #ifndef CONFIGCACHE_H
2 #define CONFIGCACHE_H
3
4 #include <vector>
5 #include <string>
6 #include <fstream>
7 #include <sstream>
8 #include <ostream>
9
10 #include <boost/iostreams/filtering_streambuf.hpp>
11 #include <boost/iostreams/stream.hpp>
12 #include <boost/iostreams/filter/bzip2.hpp>
13 #include <boost/iostreams/device/array.hpp>
14 #include <boost/iostreams/copy.hpp>
15
16 #define CACHE_MODE_DISABLED 0
17 #define CACHE_MODE_READ 1
18 #define CACHE_MODE_FULL 2
19
20 using namespace std;
21
22 struct parameter{
23   string id;
24   double val;
25 };
26
27 struct infiledesc {
28   string filename;
29   int nequi;
30   int nskip;
31   bool doVirtualEquilibration;
32   bool extended;
33 };
34
35 class configcache{
36  public:
37   ~configcache();
38   configcache(const string& cacheid, const int& nequi, const int& nskip, const string& datadir, char **configmem, const int& configMemSize, 
39               const int& cachemode=CACHE_MODE_FULL, ostream *_log=NULL);
40   int readConfig(vector<unsigned long> *excludeFileHashes=NULL);
41   void writeConfig();
42   void addPara(const string& parid, const double& val=0);
43   void setPara(const string& parid, const double& value);
44   void writeHeader(const string& headerid, const char *header, long unsigned int size);
45   void * getHeader(const string& headerid);
46   string getOutFileName() { return outFileName.str(); }
47   string getInFileName() { return DATADIR + "/" + openFileDesc.filename; }
48   static unsigned long hash(const string& str);
49
50  private:
51   ostream* log;
52   infiledesc openFileDesc;
53   void finishOutFile();
54   int getParIndex(const string& parid);
55   int NEQUI;
56   int NSKIP;
57   string DATADIR;
58   string CACHEID;
59   int MODE;
60   string getFileId(const bool& shortid=false);
61
62   ofstream outFile;
63   ifstream inFile;
64
65   stringstream outFileName;
66
67   int readnum;
68
69   boost::iostreams::filtering_istreambuf *inBuffer;
70   boost::iostreams::filtering_ostreambuf *outBuffer;
71
72   int inSize;
73
74   int configSize;
75   char *configMem;
76   char *tmpConfig;
77
78   bool refetchDataFiles;
79
80   void fetchDataFiles();
81   
82   bool isValidInFile(const string& infile, infiledesc *filedesc);
83
84   vector<infiledesc> inFiles;
85
86   vector<parameter> Paras;
87
88   int readDataToMem(char *tmpData, long unsigned int dataSize);
89
90   void openOutFile();
91
92   int readHeader();
93
94   bool headerWritten;
95
96   int readFullBlock(char *tmpData, long unsigned int dataSize);
97
98   vector< pair<unsigned long, void *> > headerStore;
99
100   void deleteHeaderStore();
101
102   bool readAllHeaders();
103 };
104
105 #endif