~ubuntu-branches/debian/stretch/baloo-kf5/stretch

« back to all changes in this revision

Viewing changes to src/lib/queryrunnable.cpp

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia, Scarlett Clark, Maximiliano Curia
  • Date: 2015-03-25 23:17:29 UTC
  • mfrom: (1.1.5) (2.1.5 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20150325231729-m1glp8upen74z9ey
Tags: 5.6.2-1
[ Scarlett Clark ]
* New upstream release
* Bump version depends.
* Update renamed dependency kfilemetadata-dev
* Fix version.

[ Maximiliano Curia ]
* Prepare Debian release. (5.6.1-1)
* New upstream release (5.6.2).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the KDE Baloo Project
 
3
 * Copyright (C) 2013  Vishesh Handa <me@vhanda.in>
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2.1 of the License, or (at your option) version 3, or any
 
9
 * later version accepted by the membership of KDE e.V. (or its
 
10
 * successor approved by the membership of KDE e.V.), which shall
 
11
 * act as a proxy defined in Section 6 of version 3 of the license.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
20
 *
 
21
 */
 
22
 
 
23
#include "queryrunnable.h"
 
24
#include <QAtomicInt>
 
25
 
 
26
using namespace Baloo;
 
27
 
 
28
class QueryRunnable::Private {
 
29
public:
 
30
    Query m_query;
 
31
    QAtomicInt m_stop;
 
32
 
 
33
    bool stopRequested() const {
 
34
        return m_stop.load();
 
35
    }
 
36
 
 
37
};
 
38
 
 
39
QueryRunnable::QueryRunnable(const Query& query, QObject* parent)
 
40
    : QObject(parent)
 
41
    , d(new Private)
 
42
{
 
43
    d->m_query = query;
 
44
    d->m_stop = false;
 
45
 
 
46
    qRegisterMetaType<Baloo::Result>("Baloo::Result");
 
47
}
 
48
 
 
49
QueryRunnable::~QueryRunnable()
 
50
{
 
51
    delete d;
 
52
}
 
53
 
 
54
void QueryRunnable::stop()
 
55
{
 
56
    d->m_stop.store(true);
 
57
}
 
58
 
 
59
void QueryRunnable::run()
 
60
{
 
61
    ResultIterator it = d->m_query.exec();
 
62
    while (!d->stopRequested() && it.next()) {
 
63
        Q_EMIT queryResult(this, it.result());
 
64
    }
 
65
 
 
66
    Q_EMIT finished(this);
 
67
}
 
68