/usr/include/ThePEG/Persistency/PersistentOStream.h is in libthepeg-dev 1.8.0-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 | // -*- C++ -*-
//
// PersistentOStream.h is a part of ThePEG - Toolkit for HEP Event Generation
// Copyright (C) 1999-2011 Leif Lonnblad
//
// ThePEG is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
#ifndef ThePEG_PersistentOStream_H
#define ThePEG_PersistentOStream_H
// This is the declaration of the PersistentOStream class.
#include "ThePEG/Config/ThePEG.h"
#include "ThePEG/Utilities/ClassDescription.h"
#include "ThePEG/Utilities/Exception.h"
#include "ThePEG/Utilities/Debug.h"
#include "PersistentOStream.fh"
#include "PersistentOStream.xh"
namespace ThePEG {
/** @ingroup Persistency
* PersistentOStream is used to write objects persistently
* to a stream from which they can be read in again with a
* PersistentIStream. Pointers to objects of classes
* derived from <code>PersistentBase</code> may be written out if a
* static ClassDescription object is present for the
* class. Also basic types may be written to the stream, as well as
* containers of pointers to persistent objects and basic types.
*
* The <code>PersistentOStream</code> keeps a list of all pointers to
* written persistent objects, so that if several pointers to the
* smame object is written, the object will only be written once.
*
* Each base class of a given object will be asked to write its
* members to the stream starting from the least derived class going to
* the most derived one. Members may be pointers to other persistent
* objects or basic types or containers of these. The output for each
* object part should be implemented by specializing the
* ClassTraits<T>::output method, which otherwise
* will call the non-virtual <code>persistentOutput</code> function of
* the class. Note that for diamond-shaped multiple inheritance
* structures, the virtual base classes will be written out several
* times for the same object.
*
* @see PersistentIStream
* @see ClassDescription
* @see ClassTraits
*/
class PersistentOStream {
public:
ThePEG_DECLARE_POINTERS(PersistentBase,BPtr);
/** A map of objects indexed by integers */
ThePEG_DECLARE_MAP(cBPtr, int, ObjectMap);
/** A map relating class descriptions to integers. */
ThePEG_DECLARE_MAP(const ClassDescriptionBase *, int, ClassMap);
/** A vector of bare pointers to InputDescription objects. */
typedef ClassDescriptionBase::DescriptionVector DescriptionVector;
public:
/**
* Constuctor giving an output stream. Optionally a vector of
* libraries to be loaded before the resulting file can be read in
* again can be given in \a libs.
*/
PersistentOStream(ostream &, const vector<string> & libs = vector<string>());
/**
* Constuctor giving a file name to read. If the first
* character in the string is a '|', the corresponding program is
* run and its standard input is used instead. If the filename ends
* in ".gz" the file is compressed with gzip. Optionally a vector of
* libraries to be loaded before the resulting file can be read in
* again can be given in \a libs.
*/
PersistentOStream(string, const vector<string> & libs = vector<string>());
/**
* The destructor
*/
~PersistentOStream();
/**
* Operator for writing persistent objects to the stream.
* @param p a pointer to the object to be written.
* @return a reference to the stream.
*/
template <typename T>
PersistentOStream & operator<<(const RCPtr<T> & p) {
return outputPointer(p);
}
/**
* Operator for writing persistent objects to the stream.
* @param p a pointer to the object to be written.
* @return a reference to the stream.
*/
template <typename T>
PersistentOStream & operator<<(const ConstRCPtr<T> & p) {
return outputPointer(p);
}
/**
* Operator for writing persistent objects to the stream.
* @param p a pointer to the object to be written.
* @return a reference to the stream.
*/
template <typename T>
PersistentOStream & operator<<(const TransientRCPtr<T> & p) {
return outputPointer(p);
}
/**
* Operator for writing persistent objects to the stream.
* @param p a pointer to the object to be written.
* @return a reference to the stream.
*/
template <typename T>
PersistentOStream & operator<<(const TransientConstRCPtr<T> & p) {
return outputPointer(p);
}
/** @name Operators for extracting built-in types from the stream. */
//@{
/**
* Write a character string.
*/
PersistentOStream & operator<<(string s) {
for ( string::const_iterator i = s.begin(); i < s.end(); ++i ) escape(*i);
put(tSep);
return *this;
}
/**
* Write a character.
*/
PersistentOStream & operator<<(char c) {
escape(c);
put(tSep);
return *this;
}
/**
* Write a signed character.
*/
PersistentOStream & operator<<(signed char c) {
return (*this) << static_cast<char>(c);
}
/**
* Write an unsigned character.
*/
PersistentOStream & operator<<(unsigned char c) {
return (*this) << static_cast<char>(c);
}
/**
* Write an integer.
*/
PersistentOStream & operator<<(int i) {
os() << i;
put(tSep);
return *this;
}
/**
* Write an unsigned integer.
*/
PersistentOStream & operator<<(unsigned int i) {
os() << i;
put(tSep);
return *this;
}
/**
* Write a long integer.
*/
PersistentOStream & operator<<(long i) {
os() << i;
put(tSep);
return *this;
}
/**
* Write an unsigned long integer.
*/
PersistentOStream & operator<<(unsigned long i) {
os() << i;
put(tSep);
return *this;
}
/**
* Write a short integer.
*/
PersistentOStream & operator<<(short i) {
os() << i;
put(tSep);
return *this;
}
/**
* Write an unsigned short integer.
*/
PersistentOStream & operator<<(unsigned short i) {
os() << i;
put(tSep);
return *this;
}
/**
* Write a double.
*/
PersistentOStream & operator<<(double d) {
if ( isnan(d) || isinf(d) )
throw WriteError()
<< "Tried to write a NaN or Inf double to a persistent stream."
<< Exception::runerror;
os() << setprecision(18) << d;
put(tSep);
return *this;
}
/**
* Write a float.
*/
PersistentOStream & operator<<(float f) {
if ( isnan(f) || isinf(f) )
throw WriteError()
<< "Tried to write a NaN or Inf float to a persistent stream."
<< Exception::runerror;
os() << setprecision(9) << f;
put(tSep);
return *this;
}
/**
* Write a boolean.
*/
PersistentOStream & operator<<(bool t) {
if (t) put(tYes);
else put(tNo);
// This is a workaround for a possible bug in gcc 4.0.0
// which inserts tYes and tNo as global symbols although
// they are private
// put(t? tYes: tNo);
put(tSep);
return *this;
}
/**
* Write a c-style character string (to be read in as a std::string).
*/
PersistentOStream & operator<<(const char * s) {
*this << string(s);
return *this;
}
/**
* Write a Complex.
*/
PersistentOStream & operator<<(Complex z) {
*this << z.real() << z.imag();
return *this;
}
//@}
/**
* Output of containers of streamable objects.
*/
template <typename Container>
void putContainer(const Container & c) {
*this << c.size();
for ( typename Container::const_iterator it = c.begin();
it != c.end() && good() ; ++it )
*this << *it;
}
/**
* Write out a persistent object given a pointer to it.
*/
PersistentOStream & outputPointer(tcBPtr);
/**
* For a given object, write the member variables corresponding to a
* given ClassDescriptionBase object.
* @param obj the object to be written.
* @param cd a pointer to a ClassDescriptionBase describing the
* (sub)class to written.
*/
void putObjectPart(tcBPtr obj, const ClassDescriptionBase * cd);
/**
* Remove all objects that have been written, except those which are
* to be saved, from the list of written objects.
*/
PersistentOStream & flush();
/**
* Instuct the stream to save the following objects (protecting them from
* being flushed).
*/
PersistentOStream & push() {
lastSavedObject.push(writtenObjects.size() - 1);
return *this;
}
/**
* Instuct the stream not to save the following objects.
*/
PersistentOStream & pop() {
lastSavedObject.pop();
return *this;
}
/**
* Check the state of the stream.
*/
bool good() const { return !badState && os(); }
/**
* Check the state of the stream.
*/
operator bool() const { return good(); }
/**
* Check the state of the stream.
*/
bool operator!() const { return !good(); }
private:
/** @cond EXCEPTIONCLASSES */
/** @ingroup Persistency
* Internal exception class.
*/
struct MissingClass: public Exception {};
/** @ingroup Persistency
* Internal exception class.
*/
struct WriteError: public Exception {};
/** @endcond */
/**
* The version of this PersistentOStream implementation.
*/
static const int version = 0;
/**
* The subversion of this PersistentOStream implementation.
*/
static const int subVersion = 3;
/** @name Special marker characters */
//@{
/**
* The special marker character indicating the beginning of an object.
*/
static const char tBegin = '{';
/**
* The special marker character indicating the end of an object.
*/
static const char tEnd = '}';
/**
* The marker character indicating the beginning of the next base
* class in case of multiple inheritance.
*/
/**
* The special marker character indicating an escaped marker character.
*/
static const char tNext = '|';
/**
* The special marker character indicating an escaped marker character.
*/
static const char tNull = '\\';
/**
* The special marker character indicating the end of a value.
*/
static const char tSep = '\n';
/**
* The special marker character used to avoid confusion with escaped
* tSep markers.
*/
static const char tNoSep = 'n';
/**
* The special marker character indicating a true boolean value.
*/
static const char tYes = 'y';
/**
* The special marker character indicating a false boolean value.
*/
static const char tNo = 'n';
//@}
/**
* Return true if the given character is aspecial marker character.
*/
bool isToken(char c) const {
return c == tBegin || c == tEnd || c == tNext || c == tSep || c == tNull;
}
/**
* Set the stream in a bad state.
*/
void setBadState() {
breakThePEG();
badState = true;
}
/**
* Check if the state is ok.
*/
void checkState() { if ( ! os() ) badState = true; }
/**
* Write out class information to the associated ostream.
*/
const ClassDescriptionBase * writeClassId(tcBPtr);
/**
* write out class information to the associated ostream.
*/
void writeClassDescription(const ClassDescriptionBase *);
/**
* Put a "begin object" marker on the associated ostream
*/
void beginObject() { put(tBegin); }
/**
* Put a "end of object" marker on the associated ostream
*/
void endObject() { put(tEnd); }
/**
* Put an "next base class" marker on the associated ostream
*/
void endBase() { put(tNext); }
/**
* Put a character on the associated ostream
*/
void put(char c) { os().put(c); }
/**
* Put a character on the associated ostream but escape it if it is
* a token.
*/
void escape(char c) {
if ( isToken(c) ) {
put(tNull);
put( c == tSep? tNoSep: c );
} else
put(c);
}
/**
* Return a reference to the associated ostream.
*/
ostream & os() { return *theOStream; }
/**
* Return a const reference to the associated ostream.
*/
const ostream & os() const { return *theOStream; }
/**
* Write out initial metainfo on the stream.
*/
void init(const vector<string> & libs);
/**
* List of written objects.
*/
ObjectMap writtenObjects;
/**
* List of written objects that are to be saved.
*/
stack<int> lastSavedObject;
/**
* List of written classes.
*/
ClassMap writtenClasses;
/**
* A pointer to the associated ostream.
*/
ostream * theOStream;
/**
* True if no errors has occurred.
*/
bool badState;
/**
* True if the associated ostream should be deleted in the destructor.
*/
bool allocStream;
private:
/**
* Standard ctors and assignment are private and not implemented.
*/
PersistentOStream();
/**
* Standard ctors and assignment are private and not implemented.
*/
PersistentOStream(const PersistentOStream &);
/**
* Standard ctors and assignment are private and not implemented.
*/
PersistentOStream & operator=(const PersistentOStream &);
};
/**
* Operator for applying manipulators to the stream.
*/
inline PersistentOStream &
operator<<(PersistentOStream & os, PersistentOManip func) {
return (*func)(os);
}
/**
* The manipulator for calling PersistentOStream::flush().
*/
inline PersistentOStream & flush(PersistentOStream & os) { return os.flush(); }
/**
* The manipulator for calling PersistentOStream::push().
*/
inline PersistentOStream & push(PersistentOStream & os) { return os.push(); }
/**
* The manipulator for calling PersistentOStream::pop().
*/
inline PersistentOStream & pop(PersistentOStream & os) { return os.pop(); }
/**
* @name Partial specializations of operator<< for output of
* std::containers.
*/
//@{
/** Output a pair of objects. */
template <typename T1, typename T2>
inline PersistentOStream & operator<<(PersistentOStream & os,
const pair<T1,T2> & p) {
return os << p.first << p.second;
}
/**
* Output a multimap of key/object pairs.
*/
template <typename Key, typename T, typename Cmp, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const multimap<Key,T,Cmp,A> & m) {
os.putContainer(m);
return os;
}
/**
* Output a map of key/object pairs.
*/
template <typename Key, typename T, typename Cmp, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const map<Key,T,Cmp,A> & m) {
os.putContainer(m);
return os;
}
/**
* Output a set of objects.
*/
template <typename Key, typename Cmp, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const set<Key,Cmp,A> & s) {
os.putContainer(s);
return os;
}
/**
* Output a multiset of objects.
*/
template <typename Key, typename Cmp, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const multiset<Key,Cmp,A> & s) {
os.putContainer(s);
return os;
}
/**
* Output a list of objects.
*/
template <typename T, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const list<T,A> & l) {
os.putContainer(l);
return os;
}
/**
* Output a vector of objects.
*/
template <typename T, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const vector<T,A> & v) {
os.putContainer(v);
return os;
}
/**
* Output a deque of objects.
*/
template <typename T, typename A>
inline PersistentOStream & operator<<(PersistentOStream & os,
const deque<T,A> & d) {
os.putContainer(d);
return os;
}
//@}
}
#endif /* ThePEG_PersistentOStream_H */
|