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