/usr/include/basicqueryprovider.h is in plasma-active-dev 1:0.5-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | /*
Copyright 2011 Marco Martin <notmart@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef BASICQUERYPROVIDER_H
#define BASICQUERYPROVIDER_H
#include "abstractqueryprovider.h"
#include "nepomukdatamodel_export.h"
#include <QObject>
#include <QDate>
#include <QStringList>
#include <QUrl>
#include <QDeclarativePropertyMap>
#include <QPersistentModelIndex>
#include "nso.h"
#include "kao.h"
#include <Nepomuk2/Query/Query>
#include <Nepomuk2/Query/Result>
#include <Nepomuk2/Vocabulary/NIE>
#include <Nepomuk2/Vocabulary/NFO>
#include <Nepomuk2/Vocabulary/NCO>
#include <Nepomuk2/Vocabulary/NMO>
#include <Nepomuk2/Vocabulary/NDO>
#include <Nepomuk2/Vocabulary/NCAL>
#include <Nepomuk2/Vocabulary/NEXIF>
#include <Nepomuk2/Vocabulary/NUAO>
#include <Nepomuk2/Vocabulary/PIMO>
#include <Nepomuk2/Vocabulary/NMM>
#include <Nepomuk2/Vocabulary/TMO>
#include <Soprano/Vocabulary/NAO>
#include <Soprano/Vocabulary/RDF>
#include <Soprano/Vocabulary/RDFS>
#include <Soprano/Vocabulary/NRL>
namespace Nepomuk2 {
class ResourceWatcher;
}
class QTimer;
class BasicQueryProviderPrivate;
/**
* This is the base class for the standard Nepomuk query providers.
*
* The properties of this class will be used to build a query.
* The string properties can have a ! as prefix to negate the match.
*
* @author Marco Martin <mart@kde.org>
*/
class NEPOMUKDATAMODEL_EXPORT BasicQueryProvider : public AbstractQueryProvider
{
Q_OBJECT
/**
* @property string restrict results to just this resource type such as nfo:Document
*/
Q_PROPERTY(QString resourceType READ resourceType WRITE setResourceType NOTIFY resourceTypeChanged)
/**
* @property string restrict results to just this mime types in OR, such as image/jpeg
*/
Q_PROPERTY(QVariantList mimeTypes READ mimeTypesList WRITE setMimeTypesList NOTIFY mimeTypesChanged)
/**
* @property string only resources that are related to this activity id. It's the numerical id of the activity that is unique, not the activity name.
*/
Q_PROPERTY(QString activityId READ activityId WRITE setActivityId NOTIFY activityIdChanged)
/**
* @property Array Only resources that have all of those tags.
*/
Q_PROPERTY(QVariantList tags READ tags WRITE setTags NOTIFY tagsChanged)
//HACK: should be a qdate, but the qml management of qdates is horrible++
/**
* @property string Only resources that have a creation date equal or more recent than this date, in the format YYYY-MM-DD
*/
Q_PROPERTY(QString startDate READ startDateString WRITE setStartDateString NOTIFY startDateChanged)
/**
* @property string Only resources that have a creation date more recent or equal to this date, in the format YYYY-MM-DD
*/
Q_PROPERTY(QString endDate READ endDateString WRITE setEndDateString NOTIFY endDateChanged)
/**
* @property int Only resources that have a rating equal or more than this
*/
Q_PROPERTY(int minimumRating READ minimumRating WRITE setMinimumRating NOTIFY minimumRatingChanged)
/**
* @property int Only resources that have a rating less or equal than this
*/
Q_PROPERTY(int maximumRating READ maximumRating WRITE setMaximumRating NOTIFY maximumRatingChanged)
/**
* @property Object An associative array of extra properties to match: the array key is the property name, such as nie:mimeType and the property value is the value we want to match, such as image/jpeg.
* a ! as prefix negates the property, so matches only resources that don't have said property
*/
Q_PROPERTY(QObject *extraParameters READ extraParameters CONSTANT)
public:
BasicQueryProvider(QObject *parent = 0);
~BasicQueryProvider();
void setResourceType(const QString &type);
QString resourceType() const;
void setMimeTypesList(const QVariantList &type);
QVariantList mimeTypesList() const;
void setActivityId(const QString &activityId);
QString activityId() const;
void setTags(const QVariantList &tags);
QVariantList tags() const;
//HACK: normal getters and setters still presents, the one with strings are mapped to QML
void setStartDate(const QDate &date);
QDate startDate() const;
void setEndDate(const QDate &date);
QDate endDate() const;
void setStartDateString(const QString &date);
QString startDateString() const;
void setEndDateString(const QString &date);
QString endDateString() const;
void setMinimumRating(int rating);
int minimumRating() const;
void setMaximumRating(int rating);
int maximumRating() const;
QObject *extraParameters() const;
public Q_SLOTS:
/**
* Schedule a refresh for the query.
* If you are using Nepomuk2::Query::Query this should be normally not needed.
*/
virtual void requestRefresh();
Q_SIGNALS:
void resourceTypeChanged();
void mimeTypesChanged();
void activityIdChanged();
void tagsChanged();
void startDateChanged();
void endDateChanged();
void minimumRatingChanged();
void maximumRatingChanged();
protected Q_SLOTS:
virtual void doQuery();
protected:
/* from nie:url
* to QUrl("http://www.semanticdesktop.org/ontologies/2007/01/19/nie#url")
*/
static inline QUrl propertyUrl(const QString &property)
{
static QHash<QString, QUrl> namespaceResolution;
if( namespaceResolution.isEmpty() ) {
using namespace Nepomuk2::Vocabulary;
using namespace Soprano::Vocabulary;
namespaceResolution.insert(QLatin1String("rdf"), RDF::rdfNamespace());
namespaceResolution.insert(QLatin1String("kao"), KAO::kaoNamespace());
namespaceResolution.insert(QLatin1String("rdf-schema"), RDFS::rdfsNamespace());
namespaceResolution.insert(QLatin1String("nie"), NIE::nieNamespace());
namespaceResolution.insert(QLatin1String("nfo"), NFO::nfoNamespace());
namespaceResolution.insert(QLatin1String("nco"), NCO::ncoNamespace());
namespaceResolution.insert(QLatin1String("ncal"), NCAL::ncalNamespace());
namespaceResolution.insert(QLatin1String("ndo"), NDO::ndoNamespace());
namespaceResolution.insert(QLatin1String("nao"), NAO::naoNamespace());
namespaceResolution.insert(QLatin1String("nmm"), NMM::nmmNamespace());
namespaceResolution.insert(QLatin1String("nmo"), NMO::nmoNamespace());
namespaceResolution.insert(QLatin1String("nmo"), NMO::nmoNamespace());
namespaceResolution.insert(QLatin1String("nrl"), NRL::nrlNamespace());
namespaceResolution.insert(QLatin1String("nso"), NSO::nsoNamespace());
namespaceResolution.insert(QLatin1String("nrl"), NRL::nrlNamespace());
namespaceResolution.insert(QLatin1String("nuao"), NUAO::nuaoNamespace());
namespaceResolution.insert(QLatin1String("tmo"), TMO::tmoNamespace());
namespaceResolution.insert(QLatin1String("pimo"), PIMO::pimoNamespace());
namespaceResolution.insert(QLatin1String("nexif"), NEXIF::nexifNamespace());
//namespaceResolution.insert(QLatin1String("nid3"), NID3::nid3Namespace());
}
int colonPosition = property.indexOf(QChar::fromAscii(':'));
if( colonPosition == -1 )
return QUrl();
QHash<QString, QUrl>::const_iterator it = namespaceResolution.constFind( property.mid(0, colonPosition) );
if( it == namespaceResolution.constEnd() )
return QUrl();
return it.value().toString() + property.mid(colonPosition+1);
}
static inline QStringList variantToStringList(const QVariantList &list)
{
QStringList stringList;
QString str;
foreach (const QVariant &val, list) {
str = val.toString().trimmed();
if (!str.isEmpty()) {
stringList << str;
}
}
return stringList;
}
static inline QVariantList stringToVariantList(const QStringList &list)
{
QVariantList variantList;
foreach (const QString &val, list) {
variantList << val;
}
return variantList;
}
QStringList tagStrings() const;
QStringList mimeTypeStrings() const;
private:
BasicQueryProviderPrivate *const d;
};
#endif
|