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

« back to all changes in this revision

Viewing changes to src/libusermetricsoutput/UserDataStore.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 library is free software; you can redistribute it and/or modify it under
5
 
 * the terms of version 3 of the GNU Lesser General Public License as published
6
 
 * by the Free Software Foundation.
7
 
 *
8
 
 * This library is distributed in the hope that it will be useful, but WITHOUT
9
 
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10
 
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11
 
 * details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser 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 <libusermetricsoutput/UserDataStore.h>
20
 
 
21
 
using namespace UserMetricsOutput;
22
 
 
23
 
UserDataStore::UserDataStore(QObject *parent) :
24
 
                QObject(parent) {
25
 
}
26
 
 
27
 
UserDataStore::~UserDataStore() {
28
 
}
29
 
 
30
 
UserDataStore::const_iterator UserDataStore::constFind(
31
 
                const QString &username) const {
32
 
        return m_userData.constFind(username);
33
 
}
34
 
 
35
 
UserDataStore::const_iterator UserDataStore::constEnd() const {
36
 
        return m_userData.constEnd();
37
 
}
38
 
 
39
 
UserDataStore::iterator UserDataStore::find(const QString &username) {
40
 
        iterator data(m_userData.find(username));
41
 
 
42
 
        if (data == m_userData.end()) {
43
 
                UserDataPtr userData(new UserData());
44
 
                data = m_userData.insert(username, userData);
45
 
        }
46
 
 
47
 
        return data;
48
 
}