[f66195] | 1 | using namespace std;
|
---|
| 2 |
|
---|
[112b09] | 3 | #include "Helpers/MemDebug.hpp"
|
---|
| 4 |
|
---|
[8725ed] | 5 | #include "info.hpp"
|
---|
[f66195] | 6 | #include "verbose.hpp"
|
---|
[14de469] | 7 |
|
---|
| 8 | /** Prints the tabs according to verbosity stored in the temporary constructed class.
|
---|
| 9 | * \param &ost stream to extend with tabs
|
---|
| 10 | * \return &ost stream with tabs
|
---|
| 11 | */
|
---|
| 12 | ostream& Verbose::print (ostream &ost) const
|
---|
| 13 | {
|
---|
[8725ed] | 14 | for (int i=Verbosity+Info::verbosity;i--;)
|
---|
[042f82] | 15 | ost.put('\t');
|
---|
[e138de] | 16 | //Log() << Verbose(0) << "Verbose(.) called." << endl;
|
---|
[042f82] | 17 | return ost;
|
---|
[14de469] | 18 | };
|
---|
| 19 |
|
---|
[06c7a3] | 20 | /** States whether current output message should be print or not.
|
---|
[90f680] | 21 | * Compares Verbose::Verbosity plus Info::verbosity against \a verbosityLevel.
|
---|
[06c7a3] | 22 | * \param verbosityLevel given global level of verbosity
|
---|
| 23 | * \return true - do output, false - don't
|
---|
| 24 | */
|
---|
| 25 | bool Verbose::DoOutput(int verbosityLevel) const
|
---|
| 26 | {
|
---|
[8725ed] | 27 | return (verbosityLevel >= Verbosity+Info::verbosity);
|
---|
[06c7a3] | 28 | };
|
---|
| 29 |
|
---|
[90f680] | 30 | /** States whether current error output message should be print or not.
|
---|
| 31 | * Compares Verbose::Verbosity against \a verbosityLevel.
|
---|
| 32 | * \param verbosityLevel given global level of verbosity
|
---|
| 33 | * \return true - do output, false - don't
|
---|
| 34 | */
|
---|
| 35 | bool Verbose::DoErrorOutput(int verbosityLevel) const
|
---|
| 36 | {
|
---|
| 37 | return (verbosityLevel >= Verbosity);
|
---|
| 38 | };
|
---|
[06c7a3] | 39 |
|
---|
[14de469] | 40 | /** Operator for the Verbose(arg) call.
|
---|
| 41 | * Constructs temporary a Verbose class object, wherein the verbosity is stored.
|
---|
| 42 | * Then << is called, which calls Verbose's print which adds the tabs and returns the stream.
|
---|
| 43 | * \param &ost stream to extend
|
---|
| 44 | * \param &m pointer to created Verbose object
|
---|
| 45 | * \return &ost
|
---|
| 46 | */
|
---|
| 47 | ostream& operator<<(ostream& ost,const Verbose& m)
|
---|
| 48 | {
|
---|
[042f82] | 49 | return m.print(ost);
|
---|
[14de469] | 50 | };
|
---|
| 51 |
|
---|
| 52 | /** Prints the tabs according to verbosity stored in the temporary constructed class.
|
---|
| 53 | * Note that highest bit is set artificially to give number of bits to print
|
---|
| 54 | * \param &ost stream to extend with tabs
|
---|
| 55 | * \return &ost stream with tabs
|
---|
| 56 | */
|
---|
| 57 | ostream& Binary::print (ostream &ost) const
|
---|
| 58 | {
|
---|
[042f82] | 59 | int bits = 1, counter = 1;
|
---|
| 60 | while ((bits = 1 << counter) < BinaryNumber)
|
---|
| 61 | counter++;
|
---|
| 62 | for (int i=0;i<counter-1;i++) {
|
---|
| 63 | if ((BinaryNumber & (1 << i)) == 0)
|
---|
| 64 | ost.put('0');
|
---|
| 65 | else
|
---|
| 66 | ost.put('1');
|
---|
| 67 | }
|
---|
| 68 | ost.put('b');
|
---|
[e138de] | 69 | //Log() << Verbose(0) << "Binary(.) called." << endl;
|
---|
[042f82] | 70 | return ost;
|
---|
[14de469] | 71 | };
|
---|
| 72 |
|
---|
| 73 | /** Operator for the Binary(arg) call.
|
---|
| 74 | * Constructs temporary a Verbose class object, wherein the Binary is stored.
|
---|
| 75 | * Then << is called, which calls Binary's print which adds the tabs and returns the stream.
|
---|
| 76 | * \param &ost stream to extend
|
---|
| 77 | * \param &m pointer to created Binary object
|
---|
| 78 | * \return &ost
|
---|
| 79 | */
|
---|
| 80 | ostream& operator<<(ostream& ost,const Binary& m)
|
---|
| 81 | {
|
---|
[042f82] | 82 | return m.print(ost);
|
---|
[14de469] | 83 | };
|
---|