[6f43ab] | 1 | /*
|
---|
| 2 | * Formula.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jul 21, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #include "Formula.hpp"
|
---|
| 9 |
|
---|
| 10 | #include <sstream>
|
---|
| 11 |
|
---|
| 12 | #include "World.hpp"
|
---|
| 13 | #include "periodentafel.hpp"
|
---|
| 14 | #include "element.hpp"
|
---|
| 15 | #include "Helpers/Assert.hpp"
|
---|
| 16 |
|
---|
| 17 | using namespace std;
|
---|
| 18 |
|
---|
| 19 | Formula::Formula() :
|
---|
| 20 | numElements(0)
|
---|
| 21 | {}
|
---|
| 22 |
|
---|
| 23 | Formula::Formula(const Formula &src) :
|
---|
| 24 | elementCounts(src.elementCounts),
|
---|
| 25 | numElements(src.numElements)
|
---|
| 26 | {}
|
---|
| 27 |
|
---|
[d03bb1] | 28 | Formula::Formula(const string &formula) :
|
---|
| 29 | numElements(0)
|
---|
| 30 | {
|
---|
| 31 | fromString(formula);
|
---|
| 32 | }
|
---|
| 33 |
|
---|
[6f43ab] | 34 | Formula::~Formula()
|
---|
| 35 | {}
|
---|
| 36 |
|
---|
| 37 | Formula &Formula::operator=(const Formula &rhs){
|
---|
| 38 | // No self-assignment check needed
|
---|
| 39 | elementCounts=rhs.elementCounts;
|
---|
| 40 | numElements=rhs.numElements;
|
---|
| 41 | return *this;
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | std::string Formula::toString() const{
|
---|
| 45 | stringstream sstr;
|
---|
[add42a] | 46 | for(const_iterator iter=end();iter!=begin();){
|
---|
| 47 | --iter;
|
---|
[a6d6a9] | 48 | sstr << (*iter).first->symbol;
|
---|
| 49 | if((*iter).second>1)
|
---|
| 50 | sstr << (*iter).second;
|
---|
[6f43ab] | 51 | }
|
---|
| 52 | return sstr.str();
|
---|
| 53 | }
|
---|
| 54 |
|
---|
[d03bb1] | 55 | // quick function used for parsing
|
---|
| 56 | bool isInRange(pair<char,char> range,char character){
|
---|
| 57 | return range.first<=character && character<=range.second;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | void Formula::fromString(const std::string &formula) throw(ParseError){
|
---|
| 61 | // some constants needed for parsing... Assumes ASCII, change if other encodings are used
|
---|
| 62 | static const pair<char,char> CapitalLetters = make_pair('A','Z');
|
---|
| 63 | static const pair<char,char> SmallLetters = make_pair('a','z');
|
---|
| 64 | static const pair<char,char> Numbers = make_pair('0','9');
|
---|
| 65 | // clean the formula
|
---|
| 66 | clear();
|
---|
| 67 | string::const_iterator end = formula.end(); // will be used frequently
|
---|
| 68 | for(string::const_iterator it=formula.begin();it!=end;){
|
---|
| 69 | string shorthand;
|
---|
| 70 | // Atom names start with a capital letter
|
---|
| 71 | if(!isInRange(CapitalLetters,(*it)))
|
---|
| 72 | throw(ParseError(__FILE__,__LINE__));
|
---|
| 73 | shorthand+=(*it++);
|
---|
| 74 | // the rest of the name follows
|
---|
| 75 | while(it!=end && isInRange(SmallLetters,(*it)))
|
---|
| 76 | shorthand+=(*it++);
|
---|
| 77 | // now we can count the occurences
|
---|
| 78 | int count = 0;
|
---|
| 79 | while(it!=end && isInRange(Numbers,(*it)))
|
---|
| 80 | count = (count*10) + ((*it++)-Numbers.first);
|
---|
| 81 | // one is implicit
|
---|
| 82 | count = (count!=0)?count:1;
|
---|
[fefe0d] | 83 | // test if the shorthand exists
|
---|
| 84 | if(!World::getInstance().getPeriode()->FindElement(shorthand))
|
---|
| 85 | throw(ParseError(__FILE__,__LINE__));
|
---|
[d03bb1] | 86 | // done, we can get the next one
|
---|
| 87 | addElements(shorthand,count);
|
---|
| 88 | }
|
---|
| 89 | }
|
---|
| 90 |
|
---|
[6f43ab] | 91 | bool Formula::checkOut(ostream *output) const{
|
---|
| 92 | bool result = true;
|
---|
| 93 | int No = 1;
|
---|
| 94 |
|
---|
| 95 | if (output != NULL) {
|
---|
| 96 | *output << "# Ion type data (PP = PseudoPotential, Z = atomic number)" << endl;
|
---|
| 97 | *output << "#Ion_TypeNr.\tAmount\tZ\tRGauss\tL_Max(PP)L_Loc(PP)IonMass\t# chemical name, symbol" << endl;
|
---|
| 98 | for(const_iterator iter=begin(); iter!=end();++iter){
|
---|
| 99 | (*iter).first->No = No;
|
---|
| 100 | result = result && (*iter).first->Checkout(output, No++, (*iter).second);
|
---|
| 101 | }
|
---|
| 102 | return result;
|
---|
| 103 | } else
|
---|
| 104 | return false;
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[a6d6a9] | 107 | unsigned int Formula::getElementCount() const{
|
---|
[6f43ab] | 108 | return numElements;
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | bool Formula::hasElement(const element *element) const{
|
---|
| 112 | ASSERT(element,"Invalid pointer in Formula::hasElement(element*)");
|
---|
| 113 | return hasElement(element->getNumber());
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | bool Formula::hasElement(atomicNumber_t Z) const{
|
---|
| 117 | ASSERT(Z>0,"Invalid atomic Number");
|
---|
| 118 | ASSERT(World::getInstance().getPeriode()->FindElement(Z),"No Element with this number in Periodentafel");
|
---|
| 119 | return elementCounts.size()>=Z && elementCounts[Z-1];
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | bool Formula::hasElement(const string &shorthand) const{
|
---|
| 123 | element * element = World::getInstance().getPeriode()->FindElement(shorthand);
|
---|
| 124 | return hasElement(element);
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | void Formula::operator+=(const element *element){
|
---|
| 128 | ASSERT(element,"Invalid pointer in increment of Formula");
|
---|
| 129 | operator+=(element->getNumber());
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | void Formula::operator+=(atomicNumber_t Z){
|
---|
| 133 | ASSERT(Z>0,"Invalid atomic Number");
|
---|
| 134 | ASSERT(World::getInstance().getPeriode()->FindElement(Z),"No Element with this number in Periodentafel");
|
---|
[fefe0d] | 135 | elementCounts.resize(max<atomicNumber_t>(Z,elementCounts.size()),0); // No-op when we already have the right size
|
---|
[6f43ab] | 136 | // might need to update number of elements
|
---|
| 137 | if(!elementCounts[Z-1]){
|
---|
| 138 | numElements++;
|
---|
| 139 | }
|
---|
| 140 | elementCounts[Z-1]++; // atomic numbers start at 1
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 | void Formula::operator+=(const string &shorthand){
|
---|
| 144 | element * element = World::getInstance().getPeriode()->FindElement(shorthand);
|
---|
| 145 | operator+=(element);
|
---|
| 146 | }
|
---|
| 147 |
|
---|
| 148 | void Formula::operator-=(const element *element){
|
---|
| 149 | ASSERT(element,"Invalid pointer in decrement of Formula");
|
---|
| 150 | operator-=(element->getNumber());
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 | void Formula::operator-=(atomicNumber_t Z){
|
---|
| 154 | ASSERT(Z>0,"Invalid atomic Number");
|
---|
| 155 | ASSERT(World::getInstance().getPeriode()->FindElement(Z),"No Element with this number in Periodentafel");
|
---|
| 156 | ASSERT(elementCounts.size()>=Z && elementCounts[Z-1], "Element not in Formula upon decrement");
|
---|
| 157 | elementCounts[Z-1]--; // atomic numbers start at 1
|
---|
| 158 | // might need to update number of elements
|
---|
| 159 | if(!elementCounts[Z-1]){
|
---|
| 160 | numElements--;
|
---|
[d8a0ec] | 161 | // resize the Array if this was at the last position
|
---|
| 162 | if(Z==elementCounts.size()){
|
---|
| 163 | // find the first element from the back that is not equal to zero
|
---|
| 164 | set_t::reverse_iterator riter = find_if(elementCounts.rbegin(),
|
---|
| 165 | elementCounts.rend(),
|
---|
| 166 | bind1st(not_equal_to<mapped_type>(),0));
|
---|
| 167 | // see how many elements are in this range
|
---|
| 168 | set_t::reverse_iterator::difference_type diff = riter - elementCounts.rbegin();
|
---|
| 169 | elementCounts.resize(elementCounts.size()-diff);
|
---|
| 170 | }
|
---|
[6f43ab] | 171 | }
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 | void Formula::operator-=(const string &shorthand){
|
---|
| 175 | element * element = World::getInstance().getPeriode()->FindElement(shorthand);
|
---|
| 176 | operator-=(element);
|
---|
| 177 | }
|
---|
| 178 |
|
---|
[d03bb1] | 179 | void Formula::addElements(const element *element,unsigned int count){
|
---|
| 180 | ASSERT(element,"Invalid pointer in Formula::addElements(element*)");
|
---|
| 181 | addElements(element->getNumber(),count);
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | void Formula::addElements(atomicNumber_t Z,unsigned int count){
|
---|
| 185 | if(count==0) return;
|
---|
| 186 | ASSERT(Z>0,"Invalid atomic Number");
|
---|
| 187 | ASSERT(World::getInstance().getPeriode()->FindElement(Z),"No Element with this number in Periodentafel");
|
---|
[fefe0d] | 188 | elementCounts.resize(max<atomicNumber_t>(Z,elementCounts.size()),0); // No-op when we already have the right size
|
---|
[d03bb1] | 189 | // might need to update number of elements
|
---|
| 190 | if(!elementCounts[Z-1]){
|
---|
| 191 | numElements++;
|
---|
| 192 | }
|
---|
| 193 | elementCounts[Z-1]+=count;
|
---|
| 194 | }
|
---|
| 195 |
|
---|
| 196 | void Formula::addElements(const string &shorthand,unsigned int count){
|
---|
| 197 | element * element = World::getInstance().getPeriode()->FindElement(shorthand);
|
---|
| 198 | addElements(element,count);
|
---|
| 199 | }
|
---|
| 200 |
|
---|
[a6d6a9] | 201 | const unsigned int Formula::operator[](const element *element) const{
|
---|
[6f43ab] | 202 | ASSERT(element,"Invalid pointer in access of Formula");
|
---|
| 203 | return operator[](element->getNumber());
|
---|
| 204 | }
|
---|
| 205 |
|
---|
[a6d6a9] | 206 | const unsigned int Formula::operator[](atomicNumber_t Z) const{
|
---|
[6f43ab] | 207 | ASSERT(Z>0,"Invalid atomic Number");
|
---|
| 208 | ASSERT(World::getInstance().getPeriode()->FindElement(Z),"No Element with this number in Periodentafel");
|
---|
[a6d6a9] | 209 | if(elementCounts.size()<Z)
|
---|
| 210 | return 0;
|
---|
[6f43ab] | 211 | return elementCounts[Z-1]; // atomic numbers start at 1
|
---|
| 212 | }
|
---|
| 213 |
|
---|
[a6d6a9] | 214 | const unsigned int Formula::operator[](string shorthand) const{
|
---|
[6f43ab] | 215 | element * element = World::getInstance().getPeriode()->FindElement(shorthand);
|
---|
| 216 | return operator[](element);
|
---|
| 217 | }
|
---|
| 218 |
|
---|
| 219 | bool Formula::operator==(const Formula &rhs) const{
|
---|
| 220 | // quick check... number of elements used
|
---|
| 221 | if(numElements != rhs.numElements){
|
---|
| 222 | return false;
|
---|
| 223 | }
|
---|
[d8a0ec] | 224 | // second quick check, size of vectors (== last element in formula)
|
---|
| 225 | if(elementCounts.size()!=rhs.elementCounts.size()){
|
---|
| 226 | return false;
|
---|
| 227 | }
|
---|
[6f43ab] | 228 | // slow check: all elements
|
---|
| 229 | // direct access to internal structure means all element-counts have to be compared
|
---|
| 230 | // this avoids access to periodentafel to find elements though and is probably faster
|
---|
| 231 | // in total
|
---|
| 232 | return equal(elementCounts.begin(),
|
---|
| 233 | elementCounts.end(),
|
---|
| 234 | rhs.elementCounts.begin());
|
---|
| 235 | }
|
---|
| 236 |
|
---|
| 237 | bool Formula::operator!=(const Formula &rhs) const{
|
---|
| 238 | return !operator==(rhs);
|
---|
| 239 | }
|
---|
| 240 |
|
---|
| 241 | Formula::iterator Formula::begin(){
|
---|
| 242 | return iterator(elementCounts,0);
|
---|
| 243 | }
|
---|
| 244 | Formula::const_iterator Formula::begin() const{
|
---|
[d8a0ec] | 245 | // this is the only place where this is needed, so this is better than making it mutable
|
---|
| 246 | return const_iterator(const_cast<set_t&>(elementCounts),0);
|
---|
[6f43ab] | 247 | }
|
---|
| 248 | Formula::iterator Formula::end(){
|
---|
| 249 | return iterator(elementCounts);
|
---|
| 250 | }
|
---|
| 251 | Formula::const_iterator Formula::end() const{
|
---|
[d8a0ec] | 252 | // this is the only place where this is needed, so this is better than making it mutable
|
---|
| 253 | return const_iterator(const_cast<set_t&>(elementCounts));
|
---|
[6f43ab] | 254 | }
|
---|
| 255 |
|
---|
[d03bb1] | 256 | void Formula::clear(){
|
---|
| 257 | elementCounts.clear();
|
---|
| 258 | numElements = 0;
|
---|
| 259 | }
|
---|
| 260 |
|
---|
[6f43ab] | 261 | /**************** Iterator structure ********************/
|
---|
| 262 |
|
---|
| 263 | template <class result_type>
|
---|
| 264 | Formula::_iterator<result_type>::_iterator(set_t &_set) :
|
---|
| 265 | set(&_set)
|
---|
| 266 | {
|
---|
| 267 | pos=set->size();
|
---|
| 268 | }
|
---|
| 269 |
|
---|
| 270 | template <class result_type>
|
---|
| 271 | Formula::_iterator<result_type>::_iterator(set_t &_set,size_t _pos) :
|
---|
| 272 | set(&_set),pos(_pos)
|
---|
| 273 | {
|
---|
| 274 | ASSERT(pos<=set->size(),"invalid position in iterator construction");
|
---|
[a6d6a9] | 275 | while(pos<set->size() && (*set)[pos]==0) ++pos;
|
---|
[6f43ab] | 276 | }
|
---|
| 277 |
|
---|
[a6d6a9] | 278 | template <class result_type>
|
---|
| 279 | Formula::_iterator<result_type>::_iterator(const _iterator &rhs) :
|
---|
| 280 | set(rhs.set),pos(rhs.pos)
|
---|
| 281 | {}
|
---|
| 282 |
|
---|
[6f43ab] | 283 | template <class result_type>
|
---|
| 284 | Formula::_iterator<result_type>::~_iterator(){}
|
---|
| 285 |
|
---|
| 286 | template <class result_type>
|
---|
| 287 | Formula::_iterator<result_type>&
|
---|
| 288 | Formula::_iterator<result_type>::operator=(const _iterator<result_type> &rhs){
|
---|
| 289 | set=rhs.set;
|
---|
| 290 | pos=rhs.pos;
|
---|
| 291 | return *this;
|
---|
| 292 | }
|
---|
| 293 |
|
---|
| 294 | template <class result_type>
|
---|
| 295 | bool
|
---|
| 296 | Formula::_iterator<result_type>::operator==(const _iterator<result_type> &rhs){
|
---|
| 297 | return set==rhs.set && pos==rhs.pos;
|
---|
| 298 | }
|
---|
| 299 |
|
---|
| 300 | template <class result_type>
|
---|
| 301 | bool
|
---|
| 302 | Formula::_iterator<result_type>::operator!=(const _iterator<result_type> &rhs){
|
---|
| 303 | return !operator==(rhs);
|
---|
| 304 | }
|
---|
| 305 |
|
---|
| 306 | template <class result_type>
|
---|
| 307 | Formula::_iterator<result_type>
|
---|
| 308 | Formula::_iterator<result_type>::operator++(){
|
---|
| 309 | ASSERT(pos!=set->size(),"Incrementing Formula::iterator beyond end");
|
---|
[a6d6a9] | 310 | pos++;
|
---|
| 311 | while(pos<set->size() && (*set)[pos]==0) ++pos;
|
---|
[6f43ab] | 312 | return *this;
|
---|
| 313 | }
|
---|
| 314 |
|
---|
[a6d6a9] | 315 | template <class result_type>
|
---|
| 316 | Formula::_iterator<result_type>
|
---|
| 317 | Formula::_iterator<result_type>::operator++(int){
|
---|
| 318 | Formula::_iterator<result_type> retval = *this;
|
---|
| 319 | ++(*this);
|
---|
| 320 | return retval;
|
---|
| 321 | }
|
---|
| 322 |
|
---|
[6f43ab] | 323 | template <class result_type>
|
---|
| 324 | Formula::_iterator<result_type>
|
---|
| 325 | Formula::_iterator<result_type>::operator--(){
|
---|
[a6d6a9] | 326 | ASSERT(pos!=0,"Decrementing Formula::iterator beyond begin");
|
---|
| 327 | pos--;
|
---|
| 328 | while(pos>0 && (*set)[pos]==0) --pos;
|
---|
[6f43ab] | 329 | return *this;
|
---|
| 330 | }
|
---|
| 331 |
|
---|
[a6d6a9] | 332 | template <class result_type>
|
---|
| 333 | Formula::_iterator<result_type>
|
---|
| 334 | Formula::_iterator<result_type>::operator--(int){
|
---|
| 335 | Formula::_iterator<result_type> retval = *this;
|
---|
| 336 | --(*this);
|
---|
| 337 | return retval;
|
---|
| 338 | }
|
---|
| 339 |
|
---|
[6f43ab] | 340 | template <class result_type>
|
---|
| 341 | result_type
|
---|
| 342 | Formula::_iterator<result_type>::operator*(){
|
---|
| 343 | element *element = World::getInstance().getPeriode()->FindElement(pos+1);
|
---|
| 344 | ASSERT(element,"Element with position of iterator not found");
|
---|
| 345 | return make_pair(element,(*set)[pos]);
|
---|
| 346 | }
|
---|
| 347 |
|
---|
| 348 | template <class result_type>
|
---|
| 349 | result_type*
|
---|
| 350 | Formula::_iterator<result_type>::operator->(){
|
---|
| 351 | // no one can keep this value around, so a static is ok to avoid temporaries
|
---|
| 352 | static value_type value=make_pair(reinterpret_cast<element*>(0),0); // no default constructor for std::pair
|
---|
| 353 | element *element = World::getInstance().getPeriode()->FindElement(pos+1);
|
---|
| 354 | ASSERT(element,"Element with position of iterator not found");
|
---|
| 355 | value = make_pair(element,(*set)[pos]);
|
---|
| 356 | return &value;
|
---|
| 357 | }
|
---|
| 358 |
|
---|
[a6d6a9] | 359 | // explicit instantiation of all iterator template methods
|
---|
| 360 | // this is quite ugly, but there is no better way unless we expose iterator implementation
|
---|
| 361 |
|
---|
| 362 | // instantiate Formula::iterator
|
---|
| 363 | template Formula::_iterator<Formula::value_type>::_iterator(set_t&);
|
---|
| 364 | template Formula::_iterator<Formula::value_type>::_iterator(set_t&,size_t);
|
---|
| 365 | template Formula::_iterator<Formula::value_type>::_iterator(const Formula::_iterator<Formula::value_type>&);
|
---|
| 366 | template Formula::_iterator<Formula::value_type>::~_iterator();
|
---|
| 367 | template Formula::_iterator<Formula::value_type> &Formula::_iterator<Formula::value_type>::operator=(const _iterator &);
|
---|
| 368 | template bool Formula::_iterator<Formula::value_type>::operator==(const _iterator&);
|
---|
| 369 | template bool Formula::_iterator<Formula::value_type>::operator!=(const _iterator&);
|
---|
| 370 | template Formula::_iterator<Formula::value_type> Formula::_iterator<Formula::value_type>::operator++();
|
---|
| 371 | template Formula::_iterator<Formula::value_type> Formula::_iterator<Formula::value_type>::operator++(int);
|
---|
| 372 | template Formula::_iterator<Formula::value_type> Formula::_iterator<Formula::value_type>::operator--();
|
---|
| 373 | template Formula::_iterator<Formula::value_type> Formula::_iterator<Formula::value_type>::operator--(int);
|
---|
| 374 | template Formula::value_type Formula::_iterator<Formula::value_type>::operator*();
|
---|
| 375 | template Formula::value_type *Formula::_iterator<Formula::value_type>::operator->();
|
---|
| 376 |
|
---|
| 377 | // instantiate Formula::const_iterator
|
---|
| 378 | template Formula::_iterator<const Formula::value_type>::_iterator(set_t&);
|
---|
| 379 | template Formula::_iterator<const Formula::value_type>::_iterator(set_t&,size_t);
|
---|
| 380 | template Formula::_iterator<const Formula::value_type>::_iterator(const Formula::_iterator<const Formula::value_type>&);
|
---|
| 381 | template Formula::_iterator<const Formula::value_type>::~_iterator();
|
---|
| 382 | template Formula::_iterator<const Formula::value_type> &Formula::_iterator<const Formula::value_type>::operator=(const _iterator &);
|
---|
| 383 | template bool Formula::_iterator<const Formula::value_type>::operator==(const _iterator&);
|
---|
| 384 | template bool Formula::_iterator<const Formula::value_type>::operator!=(const _iterator&);
|
---|
| 385 | template Formula::_iterator<const Formula::value_type> Formula::_iterator<const Formula::value_type>::operator++();
|
---|
| 386 | template Formula::_iterator<const Formula::value_type> Formula::_iterator<const Formula::value_type>::operator++(int);
|
---|
| 387 | template Formula::_iterator<const Formula::value_type> Formula::_iterator<const Formula::value_type>::operator--();
|
---|
| 388 | template Formula::_iterator<const Formula::value_type> Formula::_iterator<const Formula::value_type>::operator--(int);
|
---|
| 389 | template const Formula::value_type Formula::_iterator<const Formula::value_type>::operator*();
|
---|
| 390 | template const Formula::value_type *Formula::_iterator<const Formula::value_type>::operator->();
|
---|
| 391 |
|
---|
[6f43ab] | 392 | /********************** I/O of Formulas ************************************************/
|
---|
| 393 |
|
---|
| 394 | std::ostream &operator<<(std::ostream &ost,const Formula &formula){
|
---|
| 395 | ost << formula.toString();
|
---|
| 396 | return ost;
|
---|
| 397 | }
|
---|