| [14de469] | 1 | /** \file helpers.hpp | 
|---|
|  | 2 | * | 
|---|
| [6ac7ee] | 3 | * Declaration of some auxiliary functions for memory dis-/allocation and so on | 
|---|
| [14de469] | 4 | */ | 
|---|
|  | 5 |  | 
|---|
|  | 6 | #ifndef HELPERS_HPP_ | 
|---|
|  | 7 | #define HELPERS_HPP_ | 
|---|
|  | 8 |  | 
|---|
|  | 9 | using namespace std; | 
|---|
|  | 10 |  | 
|---|
| [cd4ccc] | 11 | // include config.h | 
|---|
|  | 12 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 13 | #include <config.h> | 
|---|
|  | 14 | #endif | 
|---|
|  | 15 |  | 
|---|
| [14de469] | 16 | #include <iostream> | 
|---|
|  | 17 | #include <iomanip> | 
|---|
|  | 18 | #include <fstream> | 
|---|
|  | 19 | #include <sstream> | 
|---|
|  | 20 | #include <math.h> | 
|---|
|  | 21 | #include <string> | 
|---|
|  | 22 |  | 
|---|
|  | 23 | #include "defs.hpp" | 
|---|
| [cd4ccc] | 24 | #include "verbose.hpp" | 
|---|
| [6dea43] | 25 |  | 
|---|
| [14de469] | 26 | /********************************************** helpful functions *********************************/ | 
|---|
|  | 27 |  | 
|---|
| [d3a46d] | 28 | // taken out of TREMOLO | 
|---|
|  | 29 | /*@-namechecks@*/ | 
|---|
|  | 30 | #ifndef __GNUC__ | 
|---|
|  | 31 | # undef __attribute__ | 
|---|
|  | 32 | # define __attribute__(x) | 
|---|
|  | 33 | #endif | 
|---|
|  | 34 | /*@=namechecks@*/ | 
|---|
|  | 35 |  | 
|---|
|  | 36 | /* Behandelt aufgetretene Fehler. error ist der Fehlertyp(enum Errors) | 
|---|
| [042f82] | 37 | void *SpecialData ist ein untypisierter Zeiger auf Spezielle Daten zur Fehlerbehandlung. | 
|---|
|  | 38 | Man koennte auch noch einen Zeiger auf eine Funktion uebergeben */ | 
|---|
| [d3a46d] | 39 | extern void /*@exits@*/ debug(const char *output); | 
|---|
| [042f82] | 40 | //__attribute__ ((__return__)); | 
|---|
| [d3a46d] | 41 | #define debug(data) debug_in((data), __FILE__, __LINE__) | 
|---|
|  | 42 |  | 
|---|
|  | 43 | extern void /*@exits@*/ debug_in(const char *output, | 
|---|
| [042f82] | 44 | const char *file, const int line); | 
|---|
|  | 45 | //__attribute__ ((__return__)); | 
|---|
| [d3a46d] | 46 |  | 
|---|
| [14de469] | 47 | double ask_value(const char *text); | 
|---|
|  | 48 | bool check_bounds(double *x, double *cell_size); | 
|---|
|  | 49 | void bound(double *b, double lower_bound, double upper_bound); | 
|---|
|  | 50 | void flip(double *x, double *y); | 
|---|
|  | 51 | int pot(int base, int n); | 
|---|
|  | 52 | void * Malloc(size_t size, const char* output); | 
|---|
|  | 53 | void * Calloc(size_t size, const char* output); | 
|---|
|  | 54 | void * ReAlloc(void * OldPointer, size_t size, const char* output); | 
|---|
|  | 55 | char* MallocString(size_t size, const char* output); | 
|---|
|  | 56 | void Free(void ** buffer, const char* output); | 
|---|
|  | 57 | char *FixedDigitNumber(const int FragmentNumber, const int digits); | 
|---|
| [e198c7] | 58 | bool IsValidNumber( const char *string); | 
|---|
| [14de469] | 59 |  | 
|---|
| [6d35e4] | 60 | /********************************************** helpful template functions *********************************/ | 
|---|
|  | 61 |  | 
|---|
| [8f75a4] | 62 | /** Creates a lookup table for true father's Atom::Nr -> atom ptr. | 
|---|
|  | 63 | * \param *out output stream for debugging | 
|---|
|  | 64 | * \param *start begin of chain list | 
|---|
|  | 65 | * \paran *end end of chain list | 
|---|
|  | 66 | * \param **Lookuptable pointer to return allocated lookup table (should be NULL on start) | 
|---|
|  | 67 | * \param count optional predetermined count for table (otherwise we set the count to highest true father id) | 
|---|
|  | 68 | * \return true - success, false - failure | 
|---|
|  | 69 | */ | 
|---|
|  | 70 | template <typename T> bool CreateFatherLookupTable(ofstream *out, T *start, T *end, T **&LookupTable, int count = 0) | 
|---|
|  | 71 | { | 
|---|
| [042f82] | 72 | bool status = true; | 
|---|
|  | 73 | T *Walker = NULL; | 
|---|
|  | 74 | int AtomNo; | 
|---|
|  | 75 |  | 
|---|
|  | 76 | if (LookupTable != NULL) { | 
|---|
|  | 77 | *out << "Pointer for Lookup table is not NULL! Aborting ..." <<endl; | 
|---|
|  | 78 | return false; | 
|---|
|  | 79 | } | 
|---|
|  | 80 |  | 
|---|
|  | 81 | // count them | 
|---|
|  | 82 | if (count == 0) { | 
|---|
|  | 83 | Walker = start; | 
|---|
|  | 84 | while (Walker->next != end) { // create a lookup table (Atom::nr -> atom) used as a marker table lateron | 
|---|
|  | 85 | Walker = Walker->next; | 
|---|
|  | 86 | count = (count < Walker->GetTrueFather()->nr) ? Walker->GetTrueFather()->nr : count; | 
|---|
|  | 87 | } | 
|---|
|  | 88 | } | 
|---|
|  | 89 | if (count <= 0) { | 
|---|
|  | 90 | *out << "Count of lookup list is 0 or less." << endl; | 
|---|
|  | 91 | return false; | 
|---|
|  | 92 | } | 
|---|
|  | 93 |  | 
|---|
|  | 94 | // allocat and fill | 
|---|
|  | 95 | LookupTable = (T **) Malloc(sizeof(T *)*count, "CreateFatherLookupTable - **LookupTable"); | 
|---|
|  | 96 | if (LookupTable == NULL) { | 
|---|
|  | 97 | cerr << "LookupTable memory allocation failed!" << endl; | 
|---|
|  | 98 | status = false; | 
|---|
|  | 99 | } else { | 
|---|
|  | 100 | for (int i=0;i<count;i++) | 
|---|
|  | 101 | LookupTable[i] = NULL; | 
|---|
|  | 102 | Walker = start; | 
|---|
|  | 103 | while (Walker->next != end) { // create a lookup table (Atom::nr -> atom) used as a marker table lateron | 
|---|
|  | 104 | Walker = Walker->next; | 
|---|
|  | 105 | AtomNo = Walker->GetTrueFather()->nr; | 
|---|
|  | 106 | if ((AtomNo >= 0) && (AtomNo < count)) { | 
|---|
|  | 107 | //*out << "Setting LookupTable[" << AtomNo << "] to " << *Walker << endl; | 
|---|
|  | 108 | LookupTable[AtomNo] = Walker; | 
|---|
|  | 109 | } else { | 
|---|
|  | 110 | *out << "Walker " << *Walker << " exceeded range of nuclear ids [0, " << count << ")." << endl; | 
|---|
|  | 111 | status = false; | 
|---|
|  | 112 | break; | 
|---|
|  | 113 | } | 
|---|
|  | 114 | } | 
|---|
|  | 115 | } | 
|---|
|  | 116 |  | 
|---|
|  | 117 | return status; | 
|---|
| [8f75a4] | 118 | }; | 
|---|
|  | 119 |  | 
|---|
| [6d35e4] | 120 | /******************************** Some templates for list management ***********************************/ | 
|---|
|  | 121 |  | 
|---|
|  | 122 | /** Adds linking of an item to a list. | 
|---|
|  | 123 | * \param *walker | 
|---|
|  | 124 | * \return true - adding succeeded, false - error in list | 
|---|
|  | 125 | */ | 
|---|
|  | 126 | template <typename X> void link(X *walker, X *end) | 
|---|
|  | 127 | { | 
|---|
| [042f82] | 128 | X *vorher = end->previous; | 
|---|
|  | 129 | if (vorher != NULL) | 
|---|
|  | 130 | vorher->next = walker; | 
|---|
|  | 131 | end->previous = walker; | 
|---|
|  | 132 | walker->previous = vorher; | 
|---|
|  | 133 | walker->next = end; | 
|---|
| [6d35e4] | 134 | }; | 
|---|
|  | 135 |  | 
|---|
|  | 136 | /** Removes linking of an item in a list. | 
|---|
|  | 137 | * \param *walker | 
|---|
|  | 138 | * \return true - removing succeeded, false - given item not found in list | 
|---|
|  | 139 | */ | 
|---|
|  | 140 | template <typename X> void unlink(X *walker) | 
|---|
|  | 141 | { | 
|---|
| [042f82] | 142 | if (walker->next != NULL) | 
|---|
|  | 143 | walker->next->previous = walker->previous; | 
|---|
|  | 144 | if (walker->previous != NULL) | 
|---|
|  | 145 | walker->previous->next = walker->next; | 
|---|
| [6d35e4] | 146 | }; | 
|---|
|  | 147 |  | 
|---|
|  | 148 | /** Adds new item before an item \a *end in a list. | 
|---|
| [042f82] | 149 | * \param *pointer   item to be added | 
|---|
|  | 150 | * \param *end  end of list | 
|---|
| [6d35e4] | 151 | * \return true - addition succeeded, false - unable to add item to list | 
|---|
|  | 152 | */ | 
|---|
| [042f82] | 153 | template <typename X>  bool add(X *pointer, X *end) | 
|---|
| [6d35e4] | 154 | { | 
|---|
| [042f82] | 155 | if (end != NULL) { | 
|---|
|  | 156 | link(pointer, end); | 
|---|
|  | 157 | } else { | 
|---|
|  | 158 | pointer->previous = NULL; | 
|---|
|  | 159 | pointer->next = NULL; | 
|---|
|  | 160 | } | 
|---|
|  | 161 | return true; | 
|---|
| [6d35e4] | 162 | }; | 
|---|
|  | 163 |  | 
|---|
|  | 164 | /** Finds item in list | 
|---|
| [042f82] | 165 | * \param *suche  search criteria | 
|---|
|  | 166 | * \param *start  begin of list | 
|---|
|  | 167 | * \param *end  end of list | 
|---|
| [6d35e4] | 168 | * \return X - if found, NULL - if not found | 
|---|
|  | 169 | */ | 
|---|
|  | 170 | template <typename X, typename Y> X * find(Y *suche, X *start, X *end) | 
|---|
|  | 171 | { | 
|---|
| [042f82] | 172 | X *walker = start; | 
|---|
|  | 173 | while (walker->next != end) { // go through list | 
|---|
|  | 174 | walker = walker->next; // step onward beforehand | 
|---|
|  | 175 | if (*walker->sort == *suche) return (walker); | 
|---|
|  | 176 | } | 
|---|
|  | 177 | return NULL; | 
|---|
| [6d35e4] | 178 | }; | 
|---|
|  | 179 |  | 
|---|
|  | 180 | /** Removes an item from the list without check. | 
|---|
|  | 181 | * \param *walker item to be removed | 
|---|
|  | 182 | * \return true - removing succeeded, false - given item not found in list | 
|---|
|  | 183 | */ | 
|---|
|  | 184 | template <typename X> void removewithoutcheck(X *walker) | 
|---|
|  | 185 | { | 
|---|
| [042f82] | 186 | if (walker != NULL) { | 
|---|
|  | 187 | unlink(walker); | 
|---|
|  | 188 | delete(walker); | 
|---|
|  | 189 | walker = NULL; | 
|---|
|  | 190 | } | 
|---|
| [6d35e4] | 191 | }; | 
|---|
|  | 192 |  | 
|---|
|  | 193 | /** Removes an item from the list, checks if exists. | 
|---|
|  | 194 | * Checks beforehand if atom is really within molecule list. | 
|---|
| [042f82] | 195 | * \param *pointer   item to be removed | 
|---|
|  | 196 | * \param *start  begin of list | 
|---|
|  | 197 | * \param *end  end of list | 
|---|
| [6d35e4] | 198 | * \return true - removing succeeded, false - given item not found in list | 
|---|
|  | 199 | */ | 
|---|
|  | 200 | template <typename X> bool remove(X *pointer, X *start, X *end) | 
|---|
|  | 201 | { | 
|---|
| [042f82] | 202 | X *walker = find (pointer->sort, start, end); | 
|---|
|  | 203 | /*  while (walker->next != pointer) { // search through list | 
|---|
|  | 204 | walker = walker->next; | 
|---|
|  | 205 | if (walker == end) return false;  // item not found in list | 
|---|
|  | 206 | }*/ | 
|---|
|  | 207 | // atom found, now unlink | 
|---|
|  | 208 | if (walker != NULL) | 
|---|
|  | 209 | removewithoutcheck(walker); | 
|---|
|  | 210 | else | 
|---|
|  | 211 | return false; | 
|---|
|  | 212 | return true; | 
|---|
| [6d35e4] | 213 | }; | 
|---|
|  | 214 |  | 
|---|
|  | 215 | /** Cleans the whole list. | 
|---|
|  | 216 | * \param *start begin of list | 
|---|
|  | 217 | * \param *end end of list | 
|---|
|  | 218 | * \return true - list was cleaned successfully, false - error in list structure | 
|---|
|  | 219 | */ | 
|---|
|  | 220 | template <typename X> bool cleanup(X *start, X *end) | 
|---|
|  | 221 | { | 
|---|
| [042f82] | 222 | X *pointer = start->next; | 
|---|
|  | 223 | X *walker; | 
|---|
|  | 224 | while (pointer != end) { // go through list | 
|---|
|  | 225 | walker = pointer; // mark current | 
|---|
|  | 226 | pointer = pointer->next; // step onward beforehand | 
|---|
|  | 227 | // remove walker | 
|---|
|  | 228 | unlink(walker); | 
|---|
|  | 229 | delete(walker); | 
|---|
|  | 230 | walker = NULL; | 
|---|
|  | 231 | } | 
|---|
|  | 232 | return true; | 
|---|
| [6d35e4] | 233 | }; | 
|---|
|  | 234 |  | 
|---|
|  | 235 | /** Returns the first marker in a chain list. | 
|---|
|  | 236 | * \param *me one arbitrary item in chain list | 
|---|
|  | 237 | * \return poiner to first marker | 
|---|
|  | 238 | */ | 
|---|
|  | 239 | template <typename X> X *GetFirst(X *me) | 
|---|
|  | 240 | { | 
|---|
| [042f82] | 241 | X *Binder = me; | 
|---|
|  | 242 | while(Binder->previous != NULL) | 
|---|
|  | 243 | Binder = Binder->previous; | 
|---|
|  | 244 | return Binder; | 
|---|
| [6ac7ee] | 245 | }; | 
|---|
| [6d35e4] | 246 |  | 
|---|
|  | 247 | /** Returns the last marker in a chain list. | 
|---|
|  | 248 | * \param *me one arbitrary item in chain list | 
|---|
|  | 249 | * \return poiner to last marker | 
|---|
|  | 250 | */ | 
|---|
|  | 251 | template <typename X> X *GetLast(X *me) | 
|---|
|  | 252 | { | 
|---|
| [042f82] | 253 | X *Binder = me; | 
|---|
|  | 254 | while(Binder->next != NULL) | 
|---|
|  | 255 | Binder = Binder->next; | 
|---|
|  | 256 | return Binder; | 
|---|
| [6ac7ee] | 257 | }; | 
|---|
| [6d35e4] | 258 |  | 
|---|
|  | 259 | /** Frees a two-dimensional array. | 
|---|
|  | 260 | * \param *ptr pointer to array | 
|---|
|  | 261 | * \param dim first dim of array | 
|---|
|  | 262 | */ | 
|---|
|  | 263 | template <typename X> void Free2DArray(X **ptr, int dim) | 
|---|
|  | 264 | { | 
|---|
| [042f82] | 265 | int i; | 
|---|
|  | 266 | if (ptr != NULL) { | 
|---|
|  | 267 | for(i=dim;i--;) | 
|---|
|  | 268 | if (ptr[i] != NULL) | 
|---|
|  | 269 | free(ptr[i]); | 
|---|
|  | 270 | free(ptr); | 
|---|
|  | 271 | } | 
|---|
| [6d35e4] | 272 | }; | 
|---|
| [14de469] | 273 |  | 
|---|
|  | 274 |  | 
|---|
|  | 275 | #endif /*HELPERS_HPP_*/ | 
|---|