1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * ConfigFileBuffer.cpp
|
---|
10 | *
|
---|
11 | * Created on: 12.06.2010
|
---|
12 | * Author: heber
|
---|
13 | */
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | #include "CodePatterns/MemDebug.hpp"
|
---|
21 |
|
---|
22 | #include <iostream>
|
---|
23 | #include <boost/tokenizer.hpp>
|
---|
24 | #include <string>
|
---|
25 |
|
---|
26 | #include "ConfigFileBuffer.hpp"
|
---|
27 | #include "Helpers/helpers.hpp"
|
---|
28 | #include "CodePatterns/Verbose.hpp"
|
---|
29 | #include "CodePatterns/Log.hpp"
|
---|
30 | #include "World.hpp"
|
---|
31 |
|
---|
32 | /******************************** Functions for class ConfigFileBuffer **********************/
|
---|
33 |
|
---|
34 | /** Structure containing compare function for Ion_Type sorting.
|
---|
35 | */
|
---|
36 | struct IonTypeCompare {
|
---|
37 | bool operator()(std::string s1, std::string s2) const {
|
---|
38 | ConvertTo<int> toInt;
|
---|
39 | boost::char_separator<char> sep("_");
|
---|
40 | tokenizer tokens1(s1,sep);
|
---|
41 | tokenizer tokens2(s2,sep);
|
---|
42 | tokenizer::iterator tok_iter1 = tokens1.begin();
|
---|
43 | tokenizer::iterator tok_iter2 = tokens2.begin();
|
---|
44 | ++tok_iter1;
|
---|
45 | ++tok_iter2;
|
---|
46 |
|
---|
47 | std::string element1(*tok_iter1++);
|
---|
48 | std::string element2(*tok_iter2++);
|
---|
49 | int elementno1 = toInt(element1.substr(4,string::npos));
|
---|
50 | int elementno2 = toInt(element2.substr(4,string::npos));
|
---|
51 | if (elementno1 != elementno2)
|
---|
52 | return elementno1 < elementno2;
|
---|
53 | else {
|
---|
54 | std::string atom1(*tok_iter1);
|
---|
55 | std::string atom2(*tok_iter2);
|
---|
56 | int atomno1 = toInt(atom1);
|
---|
57 | int atomno2 = toInt(atom2);
|
---|
58 | return atomno1 < atomno2;
|
---|
59 | }
|
---|
60 |
|
---|
61 | // char number1[8];
|
---|
62 | // char number2[8];
|
---|
63 | // const char *dummy1 = s1.c_str();
|
---|
64 | // const char *dummy2 = s2.c_str();
|
---|
65 | // //Log() << Verbose(0) << s1 << " " << s2 << endl;
|
---|
66 | // dummy1 = strchr(s1, '_')+sizeof(char)*5; // go just after "Ion_Type"
|
---|
67 | // dummy2 = strchr(dummy1, '_');
|
---|
68 | // strncpy(number1, dummy1, dummy2-dummy1); // copy the number
|
---|
69 | // number1[dummy2-dummy1]='\0';
|
---|
70 | // dummy1 = strchr(s2, '_')+sizeof(char)*5; // go just after "Ion_Type"
|
---|
71 | // dummy2 = strchr(dummy1, '_');
|
---|
72 | // strncpy(number2, dummy1, dummy2-dummy1); // copy the number
|
---|
73 | // number2[dummy2-dummy1]='\0';
|
---|
74 | // if (atoi(number1) != atoi(number2))
|
---|
75 | // return (atoi(number1) < atoi(number2));
|
---|
76 | // else {
|
---|
77 | // dummy1 = strchr(s1, '_')+sizeof(char);
|
---|
78 | // dummy1 = strchr(dummy1, '_')+sizeof(char);
|
---|
79 | // dummy2 = strchr(dummy1, ' ') < strchr(dummy1, '\t') ? strchr(dummy1, ' ') : strchr(dummy1, '\t');
|
---|
80 | // strncpy(number1, dummy1, dummy2-dummy1); // copy the number
|
---|
81 | // number1[dummy2-dummy1]='\0';
|
---|
82 | // dummy1 = strchr(s2, '_')+sizeof(char);
|
---|
83 | // dummy1 = strchr(dummy1, '_')+sizeof(char);
|
---|
84 | // dummy2 = strchr(dummy1, ' ') < strchr(dummy1, '\t') ? strchr(dummy1, ' ') : strchr(dummy1, '\t');
|
---|
85 | // strncpy(number2, dummy1, dummy2-dummy1); // copy the number
|
---|
86 | // number2[dummy2-dummy1]='\0';
|
---|
87 | // return (atoi(number1) < atoi(number2));
|
---|
88 | // }
|
---|
89 | }
|
---|
90 |
|
---|
91 | typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
|
---|
92 | };
|
---|
93 |
|
---|
94 |
|
---|
95 | /** Constructor for ConfigFileBuffer class.
|
---|
96 | */
|
---|
97 | ConfigFileBuffer::ConfigFileBuffer() :
|
---|
98 | buffer(NULL),
|
---|
99 | LineMapping(NULL),
|
---|
100 | CurrentLine(0),
|
---|
101 | NoLines(0)
|
---|
102 | {
|
---|
103 | };
|
---|
104 |
|
---|
105 | /** Constructor for ConfigFileBuffer class with filename to be parsed.
|
---|
106 | * \param *filename file name
|
---|
107 | */
|
---|
108 | ConfigFileBuffer::ConfigFileBuffer(const char * const filename) :
|
---|
109 | buffer(NULL),
|
---|
110 | LineMapping(NULL),
|
---|
111 | CurrentLine(0),
|
---|
112 | NoLines(0)
|
---|
113 | {
|
---|
114 | InitFileBuffer(filename);
|
---|
115 | }
|
---|
116 |
|
---|
117 | void ConfigFileBuffer::InitFileBuffer(const char * const filename)
|
---|
118 | {
|
---|
119 | ifstream *file= new ifstream(filename);
|
---|
120 | InitFileBuffer(file);
|
---|
121 | }
|
---|
122 |
|
---|
123 | void ConfigFileBuffer::InitFileBuffer(istream *file)
|
---|
124 | {
|
---|
125 | char line[MAXSTRINGSIZE];
|
---|
126 |
|
---|
127 | RemoveMapping();
|
---|
128 |
|
---|
129 | // prescan number of lines
|
---|
130 | if (file->fail()) {
|
---|
131 | DoeLog(1) && (eLog()<< Verbose(1) << "config file missing!" << endl);
|
---|
132 | return;
|
---|
133 | }
|
---|
134 | NoLines = 0; // we're overcounting by one
|
---|
135 | long file_position = file->tellg(); // mark current position
|
---|
136 | do {
|
---|
137 | file->getline(line, MAXSTRINGSIZE-1);
|
---|
138 | NoLines++;
|
---|
139 | } while (!file->eof());
|
---|
140 | file->clear();
|
---|
141 | file->seekg(file_position, ios::beg);
|
---|
142 | DoLog(1) && (Log() << Verbose(1) << NoLines-1 << " lines were recognized." << endl);
|
---|
143 |
|
---|
144 | // allocate buffer's 1st dimension
|
---|
145 | if (buffer != NULL) {
|
---|
146 | DoeLog(1) && (eLog()<< Verbose(1) << "FileBuffer->buffer is not NULL!" << endl);
|
---|
147 | return;
|
---|
148 | } else
|
---|
149 | buffer = new char *[NoLines];
|
---|
150 |
|
---|
151 | // scan each line and put into buffer
|
---|
152 | int lines=0;
|
---|
153 | int i;
|
---|
154 | do {
|
---|
155 | buffer[lines] = new char[MAXSTRINGSIZE];
|
---|
156 | file->getline(buffer[lines], MAXSTRINGSIZE-1);
|
---|
157 | i = strlen(buffer[lines]);
|
---|
158 | buffer[lines][i] = '\n';
|
---|
159 | buffer[lines][i+1] = '\0';
|
---|
160 | lines++;
|
---|
161 | } while((!file->eof()) && (lines < NoLines));
|
---|
162 | DoLog(1) && (Log() << Verbose(1) << lines-1 << " lines were read into the buffer." << endl);
|
---|
163 | file->clear();
|
---|
164 | file->seekg(file_position, ios::beg);
|
---|
165 |
|
---|
166 | InitMapping();
|
---|
167 | }
|
---|
168 |
|
---|
169 | /** Destructor for ConfigFileBuffer class.
|
---|
170 | */
|
---|
171 | ConfigFileBuffer::~ConfigFileBuffer()
|
---|
172 | {
|
---|
173 | RemoveBuffer();
|
---|
174 | RemoveMapping();
|
---|
175 | }
|
---|
176 |
|
---|
177 |
|
---|
178 | /** Create trivial mapping.
|
---|
179 | */
|
---|
180 | void ConfigFileBuffer::InitMapping()
|
---|
181 | {
|
---|
182 | LineMapping = new int[NoLines];
|
---|
183 | for (int i=0;i<NoLines;i++)
|
---|
184 | LineMapping[i] = i;
|
---|
185 | MappingAllocated = true;
|
---|
186 | }
|
---|
187 |
|
---|
188 | /** Remove allocated mapping.
|
---|
189 | */
|
---|
190 | void ConfigFileBuffer::RemoveMapping()
|
---|
191 | {
|
---|
192 | delete[](LineMapping);
|
---|
193 | MappingAllocated = false;
|
---|
194 | }
|
---|
195 |
|
---|
196 | /** Remove allocated mapping.
|
---|
197 | */
|
---|
198 | void ConfigFileBuffer::RemoveBuffer()
|
---|
199 | {
|
---|
200 | for(int i=0;i<NoLines;++i)
|
---|
201 | delete[](buffer[i]);
|
---|
202 | delete[](buffer);
|
---|
203 | }
|
---|
204 |
|
---|
205 |
|
---|
206 | /** Creates a mapping for the \a *FileBuffer's lines containing the Ion_Type keyword such that they are sorted.
|
---|
207 | * \a *map on return contains a list of NoAtom entries such that going through the list, yields indices to the
|
---|
208 | * lines in \a *FileBuffer in a sorted manner of the Ion_Type?_? keywords. We assume that ConfigFileBuffer::CurrentLine
|
---|
209 | * points to first Ion_Type entry.
|
---|
210 | * \param *FileBuffer pointer to buffer structure
|
---|
211 | * \param NoAtoms of subsequent lines to look at
|
---|
212 | */
|
---|
213 | void ConfigFileBuffer::MapIonTypesInBuffer(const int NoAtoms)
|
---|
214 | {
|
---|
215 | std::multimap<std::string, int, IonTypeCompare> IonTypeLineMap;
|
---|
216 | if (!MappingAllocated) {
|
---|
217 | InitMapping();
|
---|
218 | }
|
---|
219 |
|
---|
220 | typedef boost::tokenizer<boost::char_separator<char> >
|
---|
221 | tokenizer;
|
---|
222 | boost::char_separator<char> sep("\t ");
|
---|
223 |
|
---|
224 | // put all into hashed map
|
---|
225 | for (int i=CurrentLine; i<NoLines; ++i) {
|
---|
226 | std::string line(buffer[i]);
|
---|
227 | tokenizer tokens(line, sep);
|
---|
228 | if (tokens.begin() != tokens.end()) {
|
---|
229 | const std::string token = *tokens.begin();
|
---|
230 | if (token.find("Ion_Type") != string::npos) {
|
---|
231 | IonTypeLineMap.insert(pair<std::string, int> (token, i));
|
---|
232 | }
|
---|
233 | }
|
---|
234 | }
|
---|
235 |
|
---|
236 | // fill map (aka IonType1_1, IonType1_1, IonType1_1, IonType1_2, IonType1_2, IonType1_2, ...
|
---|
237 | // ..., IonType2_1, IonType2_1, IonType2_1, ...)
|
---|
238 | int nr=0;
|
---|
239 | for (map<std::string, int, IonTypeCompare>::iterator runner = IonTypeLineMap.begin(); runner != IonTypeLineMap.end(); ++runner) {
|
---|
240 | if (CurrentLine+nr < NoLines)
|
---|
241 | LineMapping[CurrentLine+(nr++)] = runner->second;
|
---|
242 | else {
|
---|
243 | DoeLog(0) && (eLog()<< Verbose(0) << "config::MapIonTypesInBuffer - NoLines is wrong: We are past the end of the file!" << endl);
|
---|
244 | performCriticalExit();
|
---|
245 | }
|
---|
246 | }
|
---|
247 | }
|
---|