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

« back to all changes in this revision

Viewing changes to src/usermetricsservice/database/DataSet.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/DataSet.h>
 
20
 
 
21
#include <QDjangoQuerySet.h>
 
22
 
 
23
using namespace UserMetricsService;
 
24
 
 
25
DataSet::DataSet(QObject *parent) :
 
26
                QDjangoModel(parent), m_id(0), m_data(), m_lastUpdated(
 
27
                                QDate::currentDate()) {
 
28
        setForeignKey("userData", new UserData(this));
 
29
        setForeignKey("dataSource", new DataSource(this));
 
30
}
 
31
 
 
32
DataSet::~DataSet() {
 
33
}
 
34
 
 
35
int DataSet::id() const {
 
36
        return m_id;
 
37
}
 
38
 
 
39
void DataSet::setId(int id) {
 
40
        m_id = id;
 
41
}
 
42
 
 
43
UserData * DataSet::userData() const {
 
44
        return qobject_cast<UserData*>(foreignKey("userData"));
 
45
}
 
46
 
 
47
void DataSet::setUserData(UserData *userData) {
 
48
        setForeignKey("userData", userData);
 
49
}
 
50
 
 
51
DataSource * DataSet::dataSource() const {
 
52
        return qobject_cast<DataSource*>(foreignKey("dataSource"));
 
53
}
 
54
 
 
55
void DataSet::setDataSource(DataSource *dataSource) {
 
56
        setForeignKey("dataSource", dataSource);
 
57
}
 
58
 
 
59
const QByteArray & DataSet::data() const {
 
60
        return m_data;
 
61
}
 
62
 
 
63
void DataSet::setData(const QByteArray &data) {
 
64
        m_data = data;
 
65
}
 
66
 
 
67
const QDate & DataSet::lastUpdated() const {
 
68
        return m_lastUpdated;
 
69
}
 
70
 
 
71
void DataSet::setLastUpdated(const QDate &lastUpdated) {
 
72
        m_lastUpdated = lastUpdated;
 
73
}
 
74
 
 
75
void DataSet::findById(int id, DataSet *dataSet) {
 
76
        QDjangoQuerySet<DataSet>().get(QDjangoWhere("id", QDjangoWhere::Equals, id),
 
77
                        dataSet);
 
78
}