| [f66195] | 1 | using namespace std; | 
|---|
|  | 2 |  | 
|---|
|  | 3 | #include "verbose.hpp" | 
|---|
| [14de469] | 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 | */ | 
|---|
|  | 9 | ostream& Verbose::print (ostream &ost) const | 
|---|
|  | 10 | { | 
|---|
| [042f82] | 11 | for (int i=Verbosity;i--;) | 
|---|
|  | 12 | ost.put('\t'); | 
|---|
| [e138de] | 13 | //Log() << Verbose(0) << "Verbose(.) called." << endl; | 
|---|
| [042f82] | 14 | return ost; | 
|---|
| [14de469] | 15 | }; | 
|---|
|  | 16 |  | 
|---|
| [06c7a3] | 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 | */ | 
|---|
|  | 22 | bool Verbose::DoOutput(int verbosityLevel) const | 
|---|
|  | 23 | { | 
|---|
|  | 24 | return (verbosityLevel >= Verbosity); | 
|---|
|  | 25 | }; | 
|---|
|  | 26 |  | 
|---|
|  | 27 |  | 
|---|
| [14de469] | 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 | */ | 
|---|
|  | 35 | ostream& operator<<(ostream& ost,const Verbose& m) | 
|---|
|  | 36 | { | 
|---|
| [042f82] | 37 | return m.print(ost); | 
|---|
| [14de469] | 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 | */ | 
|---|
|  | 45 | ostream& Binary::print (ostream &ost) const | 
|---|
|  | 46 | { | 
|---|
| [042f82] | 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'); | 
|---|
| [e138de] | 57 | //Log() << Verbose(0) << "Binary(.) called." << endl; | 
|---|
| [042f82] | 58 | return ost; | 
|---|
| [14de469] | 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 | */ | 
|---|
|  | 68 | ostream& operator<<(ostream& ost,const Binary& m) | 
|---|
|  | 69 | { | 
|---|
| [042f82] | 70 | return m.print(ost); | 
|---|
| [14de469] | 71 | }; | 
|---|