Debian packaging for Harmattan
[harmattan/cameraplus] / src / trackerstore.cpp
1 /*!
2  * This file is part of CameraPlus.
3  *
4  * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #include "trackerstore.h"
22 #include <QSparqlConnection>
23 #include <QSparqlQuery>
24 #include <QUrl>
25 #include <QDeclarativeInfo>
26 #include <QSparqlResult>
27 #include <QScopedPointer>
28 #include <QSparqlError>
29 #include <QDebug>
30 #include <QDateTime>
31
32 #define BEGIN_IMAGE "INSERT { _:x a nfo:Image, nmm:Photo"
33 #define BEGIN_VIDEO "INSERT { _:x a nfo:Video, nmm:Video"
34 #define QUERY_END ", nie:DataObject, nie:InformationElement, nfo:Media, nfo:Visual ; nie:url ?:file_url ; nfo:equipment ?:equipment^^xsd:string ; nie:contentCreated ?:contentCreated . }"
35
36 #define IMAGE_QUERY BEGIN_IMAGE QUERY_END
37 #define VIDEO_QUERY BEGIN_VIDEO QUERY_END
38
39 #define ADD_FAVORITE_QUERY "INSERT { ?u nao:hasTag nao:predefined-tag-favorite . } WHERE {?u nie:url <file://%1> . }"
40 #define REMOVE_FAVORITE_QUERY "DELETE { ?u nao:hasTag nao:predefined-tag-favorite . } WHERE {?u nie:url <file://%1> . }"
41
42 TrackerStore::TrackerStore(QObject *parent) :
43   QObject(parent),
44   m_connection(0) {
45
46 }
47
48 TrackerStore::~TrackerStore() {
49
50 }
51
52 bool TrackerStore::isActive() const {
53   return m_connection != 0;
54 }
55
56 void TrackerStore::setActive(bool active) {
57   if (isActive() == active) {
58     return;
59   }
60
61   if (active) {
62     m_connection = new QSparqlConnection("QTRACKER_DIRECT", QSparqlConnectionOptions(), this);
63   }
64   else {
65     m_connection->deleteLater();
66     m_connection = 0;
67   }
68
69   emit activeChanged();
70 }
71
72 QString TrackerStore::manufacturer() const {
73   return m_manufacturer;
74 }
75
76 void TrackerStore::setManufacturer(const QString& manufacturer) {
77   if (m_manufacturer != manufacturer) {
78     m_manufacturer = manufacturer;
79     emit manufacturerChanged();
80   }
81 }
82
83 QString TrackerStore::model() const {
84   return m_model;
85 }
86
87 void TrackerStore::setModel(const QString& model) {
88   if (m_model != model) {
89     m_model = model;
90     emit modelChanged();
91   }
92 }
93
94 bool TrackerStore::storeImage(const QString& path) {
95   return execQuery(IMAGE_QUERY, path);
96 }
97
98 bool TrackerStore::storeVideo(const QString& path) {
99   return execQuery(VIDEO_QUERY, path);
100 }
101
102 bool TrackerStore::execQuery(const QString& query, const QString& path) {
103   QDateTime dateTime = QDateTime::currentDateTime();
104
105   if (!isActive()) {
106     qmlInfo(this) << "TrackerStore is not active";
107     return false;
108   }
109
110   QString equipment = QString("urn:equipment:%1:%2:").arg(m_manufacturer).arg(m_model);
111
112   QSparqlQuery q(query, QSparqlQuery::InsertStatement);
113   q.bindValue("file_url", QUrl::fromLocalFile(path));
114   q.bindValue("equipment", equipment);
115   q.bindValue("contentCreated", dateTime.toString(Qt::ISODate) +
116                   "." + QString().sprintf("%.3d", dateTime.time().msec()));
117
118   return exec(q);
119 }
120
121 bool TrackerStore::addToFavorites(const QUrl& url) {
122   QString query = QString(ADD_FAVORITE_QUERY).arg(url.toLocalFile());
123
124   QSparqlQuery q(query, QSparqlQuery::InsertStatement);
125
126   return exec(q);
127 }
128
129 bool TrackerStore::removeFromFavorites(const QUrl& url) {
130   QString query = QString(REMOVE_FAVORITE_QUERY).arg(url.toLocalFile());
131
132   QSparqlQuery q(query, QSparqlQuery::DeleteStatement);
133
134   return exec(q);
135 }
136
137 bool TrackerStore::exec(QSparqlQuery& q) {
138   QScopedPointer<QSparqlResult> r(m_connection->syncExec(q));
139
140   if (!r->hasError()) {
141     return true;
142   }
143
144   while (r->next()) {
145     // Nothing
146   }
147
148   qmlInfo(this) << "QtSparql error:" << r->lastError().message();
149
150   return false;
151 }