~ubuntu-branches/ubuntu/trusty/libusermetrics/trusty-proposed

« back to all changes in this revision

Viewing changes to src/usermetricsservice/database/DataSource.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Pete Woods, Ubuntu daily release
  • Date: 2013-07-02 02:02:52 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130702020252-53yuhnlabsq1cq8x
Tags: 1.0.1+13.10.20130702-0ubuntu1
[ Pete Woods ]
* Implement most of storage service and wire up input API.
* Wire up the output API to the storage service.

[ Ubuntu daily release ]
* Automatic snapshot from revision 80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
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; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Pete Woods <pete.woods@canonical.com>
 
17
 */
 
18
 
 
19
#include <usermetricsservice/database/DataSource.h>
 
20
 
 
21
#include <QDjangoQuerySet.h>
 
22
 
 
23
using namespace UserMetricsService;
 
24
 
 
25
DataSource::DataSource(QObject *parent) :
 
26
                QDjangoModel(parent), m_id(0) {
 
27
}
 
28
 
 
29
DataSource::~DataSource() {
 
30
}
 
31
 
 
32
int DataSource::id() const {
 
33
        return m_id;
 
34
}
 
35
 
 
36
void DataSource::setId(int id) {
 
37
        m_id = id;
 
38
}
 
39
 
 
40
const QString & DataSource::name() const {
 
41
        return m_name;
 
42
}
 
43
 
 
44
void DataSource::setName(const QString &name) {
 
45
        m_name = name;
 
46
}
 
47
 
 
48
const QString & DataSource::formatString() const {
 
49
        return m_formatString;
 
50
}
 
51
 
 
52
void DataSource::setFormatString(const QString &formatString) {
 
53
        m_formatString = formatString;
 
54
}
 
55
 
 
56
void DataSource::findById(int id, DataSource *dataSource) {
 
57
        QDjangoQuerySet<DataSource>().get(
 
58
                        QDjangoWhere("id", QDjangoWhere::Equals, id), dataSource);
 
59
}
 
60
 
 
61
void DataSource::findByName(const QString &name, DataSource *dataSource) {
 
62
        QDjangoQuerySet<DataSource>().get(
 
63
                        QDjangoWhere("name", QDjangoWhere::Equals, name), dataSource);
 
64
}
 
65
 
 
66
bool DataSource::exists(const QString &name) {
 
67
        return QDjangoQuerySet<DataSource>().filter(
 
68
                        QDjangoWhere("name", QDjangoWhere::Equals, name)).limit(0, 1).size()
 
69
                        > 0;
 
70
}