| 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 |  * logger.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Oct 19, 2009
 | 
|---|
| 12 |  *      Author: metzler
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include "Helpers/MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include <fstream>
 | 
|---|
| 23 | #include <iostream>
 | 
|---|
| 24 | #include "Helpers/logger.hpp"
 | 
|---|
| 25 | #include "Helpers/Verbose.hpp"
 | 
|---|
| 26 | #include "Patterns/Singleton_impl.hpp"
 | 
|---|
| 27 | 
 | 
|---|
| 28 | ofstream nullStream("/dev/null");
 | 
|---|
| 29 | 
 | 
|---|
| 30 | int logger::verbosity = 2;
 | 
|---|
| 31 | ostream* logger::nix = &nullStream;
 | 
|---|
| 32 | 
 | 
|---|
| 33 | /**
 | 
|---|
| 34 |  * Constructor. Do not use this function. Use getInstance() instead.
 | 
|---|
| 35 |  *
 | 
|---|
| 36 |  * \return logger instance
 | 
|---|
| 37 |  */
 | 
|---|
| 38 | logger::logger()
 | 
|---|
| 39 | {};
 | 
|---|
| 40 | 
 | 
|---|
| 41 | /**
 | 
|---|
| 42 |  * Destructor. Better use purgeInstance().
 | 
|---|
| 43 |  */
 | 
|---|
| 44 | logger::~logger() {}
 | 
|---|
| 45 | 
 | 
|---|
| 46 | CONSTRUCT_SINGLETON(logger)
 | 
|---|
| 47 | 
 | 
|---|
| 48 | /**
 | 
|---|
| 49 |  * Sets the verbosity.
 | 
|---|
| 50 |  *
 | 
|---|
| 51 |  * \param verbosityLevel verbosity
 | 
|---|
| 52 |  */
 | 
|---|
| 53 | void logger::setVerbosity(int verbosityLevel) {
 | 
|---|
| 54 |   verbosity = verbosityLevel;
 | 
|---|
| 55 | }
 | 
|---|
| 56 | 
 | 
|---|
| 57 | /**
 | 
|---|
| 58 |  * Gets the verbosity.
 | 
|---|
| 59 |  *
 | 
|---|
| 60 |  * \return verbosity level
 | 
|---|
| 61 |  */
 | 
|---|
| 62 | int logger::getVerbosity()
 | 
|---|
| 63 | {
 | 
|---|
| 64 |   return verbosity;
 | 
|---|
| 65 | }
 | 
|---|
| 66 | 
 | 
|---|
| 67 | /**
 | 
|---|
| 68 |  * Operator for the Binary(arg) call.
 | 
|---|
| 69 |  * Constructs temporary a Verbose class object, wherein the Binary is stored.
 | 
|---|
| 70 |  * Then << is called, which calls Binary's print which adds the tabs and logs
 | 
|---|
| 71 |  * the stream.
 | 
|---|
| 72 |  * \param &ost stream to extend
 | 
|---|
| 73 |  * \param &m pointer to created Binary object
 | 
|---|
| 74 |  * \return &ost
 | 
|---|
| 75 |  */
 | 
|---|
| 76 | ostream& operator<<(class logger& l, const Verbose& v)
 | 
|---|
| 77 | {
 | 
|---|
| 78 |   int verbosityLevel = l.verbosity;
 | 
|---|
| 79 |   l.nix->clear();
 | 
|---|
| 80 |   if (v.DoOutput(verbosityLevel)) {
 | 
|---|
| 81 |     v.print(cout);
 | 
|---|
| 82 |     return cout;
 | 
|---|
| 83 |   } else
 | 
|---|
| 84 |     return *l.nix;
 | 
|---|
| 85 | };
 | 
|---|
| 86 | ostream& operator<<(class logger* l, const Verbose& v)
 | 
|---|
| 87 | {
 | 
|---|
| 88 |   int verbosityLevel = l->verbosity;
 | 
|---|
| 89 |   l->nix->clear();
 | 
|---|
| 90 |   if (v.DoOutput(verbosityLevel)) {
 | 
|---|
| 91 |     v.print(cout);
 | 
|---|
| 92 |     return cout;
 | 
|---|
| 93 |   } else
 | 
|---|
| 94 |     return *l->nix;
 | 
|---|
| 95 | };
 | 
|---|
| 96 | 
 | 
|---|