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
|
// -*- c-basic-offset: 4 -*-
/*
Rosegarden
A sequencer and musical notation editor.
This program is Copyright 2000-2008
Guillaume Laurent <glaurent@telegraph-road.org>,
Chris Cannam <cannam@all-day-breakfast.com>,
Richard Bown <bownie@bownie.com>
The moral right of the authors to claim authorship of this work
has been asserted.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#ifndef ROSEDEBUG_H
#define ROSEDEBUG_H
#include <string>
#include <iostream>
#include <kdebug.h>
#include <kdeversion.h>
#if KDE_VERSION < KDE_MAKE_VERSION(3,2,0)
class TQDateTime;
class TQDate;
class TQTime;
class TQPoint;
class TQSize;
class TQRect;
class TQRegion;
class KURL;
class TQStringList;
class TQColor;
class TQPen;
class TQBrush;
#endif
namespace Rosegarden { class Event; class Segment; class RealTime; class Colour; namespace Guitar { class Chord; } }
#define KDEBUG_AREA 200000
#define KDEBUG_AREA_NOTATION 200001
#define KDEBUG_AREA_MATRIX 200002
#define KDEBUG_AREA_SEQUENCER 200003
#define KDEBUG_AREA_SEQUENCEMANAGER 200004
#define RG_DEBUG kdDebug(KDEBUG_AREA)
#define NOTATION_DEBUG kdDebug(KDEBUG_AREA_NOTATION)
#define MATRIX_DEBUG kdDebug(KDEBUG_AREA_MATRIX)
#define SEQUENCER_DEBUG kdDebug(KDEBUG_AREA_SEQUENCER)
#define SEQMAN_DEBUG kdDebug(KDEBUG_AREA_SEQUENCEMANAGER)
#ifndef NDEBUG
kdbgstream&
operator<<(kdbgstream&, const std::string&);
kdbgstream&
operator<<(kdbgstream&, const Rosegarden::Event&);
kdbgstream&
operator<<(kdbgstream&, const Rosegarden::Segment&);
kdbgstream&
operator<<(kdbgstream&, const Rosegarden::RealTime&);
kdbgstream&
operator<<(kdbgstream&, const Rosegarden::Colour&);
kdbgstream&
operator<<(kdbgstream&, const Rosegarden::Guitar::Chord&);
#else
inline kndbgstream&
operator<<(kndbgstream &s, const std::string&) { return s; }
inline kndbgstream&
operator<<(kndbgstream &s, const Rosegarden::Event&) { return s; }
inline kndbgstream&
operator<<(kndbgstream &s, const Rosegarden::Segment&) { return s; }
inline kndbgstream&
operator<<(kndbgstream &s, const Rosegarden::RealTime&) { return s; }
inline kndbgstream&
operator<<(kndbgstream &s, const Rosegarden::Colour&) { return s; }
inline kndbgstream&
operator<<(kndbgstream &s, const Rosegarden::Guitar::Chord&) { return s; }
#endif
#ifndef NO_TIMING
#include <iostream>
#include <ctime>
#define START_TIMING \
clock_t dbgStart = clock();
#define ELAPSED_TIME \
((clock() - dbgStart) * 1000 / CLOCKS_PER_SEC)
#define PRINT_ELAPSED(n) \
RG_DEBUG << n << ": " << ELAPSED_TIME << "ms elapsed" << endl;
#else
#define START_TIMING
#define ELAPSED_TIME 0
#define PRINT_ELAPSED(n)
#endif
// This doesn't work - keeping it just in case I somehow get it
// working someday
#ifdef NOT_DEFINED
// can't be bothered to even get this to compile with gcc-3.0 at the
// moment
class kdbgostreamAdapter : public std::ostream
{
public:
kdbgostreamAdapter(kdbgstream &e) : m_kdbgStream(e) {}
std::ostream& operator<<(bool i);
std::ostream& operator<<(short i);
std::ostream& operator<<(unsigned short i);
std::ostream& operator<<(char i);
std::ostream& operator<<(unsigned char i);
std::ostream& operator<<(int i);
std::ostream& operator<<(unsigned int i);
std::ostream& operator<<(long i);
std::ostream& operator<<(unsigned long i);
std::ostream& operator<<(const TQString& str);
std::ostream& operator<<(const char *str);
std::ostream& operator<<(const TQCString& str);
std::ostream& operator<<(void * p);
std::ostream& operator<<(KDBGFUNC f);
std::ostream& operator<<(double d);
kdbgstream& dbgStream() { return m_kdbgStream; }
protected:
kdbgstream &m_kdbgStream;
};
#endif
// std::ostream& endl(std::ostream& s);
void DBCheckThrow();
#endif
|