source: molecuilder/src/verbose.cpp@ 4af89b

Last change on this file since 4af89b was 543ce4, checked in by Frederik Heber <heber@…>, 16 years ago

Huge change from ofstream * (const) out --> Log().

  • first shift was done via regular expressions
  • then via error messages from the code
  • note that class atom, class element and class molecule kept in parts their output stream, was they print to file.
  • make check runs fine
  • MISSING: Verbosity is not fixed for everything (i.e. if no endl; is present and next has Verbose(0) ...)

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100755
File size: 2.1 KB
Line 
1using namespace std;
2
3#include "verbose.hpp"
4
5/** Prints the tabs according to verbosity stored in the temporary constructed class.
6 * \param &ost stream to extend with tabs
7 * \return &ost stream with tabs
8 */
9ostream& Verbose::print (ostream &ost) const
10{
11 for (int i=Verbosity;i--;)
12 ost.put('\t');
13 //Log() << Verbose(0) << "Verbose(.) called." << endl;
14 return ost;
15};
16
17/** States whether current output message should be print or not.
18 * Compares Verbose::Verbosity against \a verbosityLevel.
19 * \param verbosityLevel given global level of verbosity
20 * \return true - do output, false - don't
21 */
22bool Verbose::DoOutput(int verbosityLevel) const
23{
24 return (verbosityLevel >= Verbosity);
25};
26
27
28/** Operator for the Verbose(arg) call.
29 * Constructs temporary a Verbose class object, wherein the verbosity is stored.
30 * Then << is called, which calls Verbose's print which adds the tabs and returns the stream.
31 * \param &ost stream to extend
32 * \param &m pointer to created Verbose object
33 * \return &ost
34 */
35ostream& operator<<(ostream& ost,const Verbose& m)
36{
37 return m.print(ost);
38};
39
40/** Prints the tabs according to verbosity stored in the temporary constructed class.
41 * Note that highest bit is set artificially to give number of bits to print
42 * \param &ost stream to extend with tabs
43 * \return &ost stream with tabs
44 */
45ostream& Binary::print (ostream &ost) const
46{
47 int bits = 1, counter = 1;
48 while ((bits = 1 << counter) < BinaryNumber)
49 counter++;
50 for (int i=0;i<counter-1;i++) {
51 if ((BinaryNumber & (1 << i)) == 0)
52 ost.put('0');
53 else
54 ost.put('1');
55 }
56 ost.put('b');
57 //Log() << Verbose(0) << "Binary(.) called." << endl;
58 return ost;
59};
60
61/** Operator for the Binary(arg) call.
62 * Constructs temporary a Verbose class object, wherein the Binary is stored.
63 * Then << is called, which calls Binary's print which adds the tabs and returns the stream.
64 * \param &ost stream to extend
65 * \param &m pointer to created Binary object
66 * \return &ost
67 */
68ostream& operator<<(ostream& ost,const Binary& m)
69{
70 return m.print(ost);
71};
Note: See TracBrowser for help on using the repository browser.