Your IP : 216.73.216.48


Current Path : /usr/include/nepomuk2/
Upload File :
Current File : //usr/include/nepomuk2/describeresourcesjob.h

/*
   This file is part of the Nepomuk KDE project.
   Copyright (C) 2011 Sebastian Trueg <trueg@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) version 3, or any
   later version accepted by the membership of KDE e.V. (or its
   successor approved by the membership of KDE e.V.), which shall
   act as a proxy defined in Section 6 of version 3 of the license.

   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
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef DESCRIBERESOURCESJOB_H
#define DESCRIBERESOURCESJOB_H

#include <KJob>

#include <QtCore/QList>
#include <QtCore/QUrl>

#include "datamanagement.h"
#include "nepomuk_export.h"

class QDBusPendingCallWatcher;

namespace Nepomuk2 {
class SimpleResourceGraph;

/**
 * \class DescribeResourcesJob describeresourcesjob.h Nepomuk2/DescribeResourcesJob
 *
 * \brief Job returned by Nepomuk2::describeResources().
 *
 * Access the result through the resources() method in the slot connected
 * to the KJOb::result() signal.
 *
 * \author Sebastian Trueg <trueg@kde.org>
 */
class NEPOMUK_EXPORT DescribeResourcesJob : public KJob
{
    Q_OBJECT

public:
    /**
     * Destructor. The job does delete itself as soon
     * as it is done.
     */
    ~DescribeResourcesJob();

    /**
     * The returned resources.
     *
     * Access the result in a slot connected to the KJob::result()
     * signal.
     */
    SimpleResourceGraph resources() const;

private Q_SLOTS:
    void slotDBusCallFinished(QDBusPendingCallWatcher *watcher);

private:
    DescribeResourcesJob(const QList<QUrl>& resources,
                         DescribeResourcesFlags flags,
                         const QList<QUrl>& targetGroups);
    void start();

    class Private;
    Private* const d;

    friend Nepomuk2::DescribeResourcesJob* Nepomuk2::describeResources(const QList<QUrl>&,
                                                                     Nepomuk2::DescribeResourcesFlags,
                                                                     const QList<QUrl>&);
};
}

#endif