~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to server/src/storage/storagedebugger.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-11 17:38:58 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20131111173858-kltz6s4ebjishfej
Tags: 1.10.80-0ubuntu1
* New upstream release
 - Update install files
 - Update disable_dbus_requiring_tests.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013  Daniel Vrátil <dvratil@redhat.com>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef STORAGEDEBUGGER_H
 
21
#define STORAGEDEBUGGER_H
 
22
 
 
23
#include <QtCore/QObject>
 
24
#include <QtCore/QMutex>
 
25
#include <QtCore/QMap>
 
26
#include <QtCore/QVariant>
 
27
 
 
28
class QSqlQuery;
 
29
 
 
30
namespace Akonadi {
 
31
 
 
32
class StorageDebugger: public QObject
 
33
{
 
34
    Q_OBJECT
 
35
 
 
36
  public:
 
37
    static StorageDebugger *instance();
 
38
 
 
39
    ~StorageDebugger();
 
40
 
 
41
    void enableSQLDebugging( bool enable );
 
42
    inline bool isSQLDebuggingEnabled() const { return mEnabled; }
 
43
 
 
44
    void queryExecuted( const QSqlQuery &query, int duration );
 
45
 
 
46
    void incSequence() { ++mSequence; }
 
47
 
 
48
  Q_SIGNALS:
 
49
    void queryExecuted( double sequence, uint duration, const QString &query,
 
50
                        const QMap<QString,QVariant> &values,
 
51
                        int resultsCount,
 
52
                        const QList<QList<QVariant> > &result,
 
53
                        const QString &error );
 
54
 
 
55
  private:
 
56
    StorageDebugger();
 
57
 
 
58
    static StorageDebugger *mSelf;
 
59
    static QMutex mMutex;
 
60
 
 
61
    bool mEnabled;
 
62
    double mSequence;
 
63
 
 
64
};
 
65
 
 
66
}
 
67
 
 
68
#endif // STORAGEDEBUGGER_H