/usr/include/syndication/loader.h is in kdepimlibs5-dev 4:4.14.10-7+b2.
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 | /*
* loader.h
*
* Copyright (c) 2001, 2002, 2003 Frerich Raabe <raabe@kde.org>
*
* This program 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. For licensing and distribution details, check the
* accompanying file 'COPYING'.
*/
#ifndef SYNDICATION_LOADER_H
#define SYNDICATION_LOADER_H
#include <syndication/global.h>
#include <boost/shared_ptr.hpp>
#include "ksyndication_export.h"
#include <QtCore/QObject>
class KUrl;
namespace Syndication {
class DataRetriever;
class Feed;
//@cond PRIVATE
typedef boost::shared_ptr<Feed> FeedPtr;
//@endcond
/**
* This class is the preferred way of loading feed sources. Usage is very
* straightforward:
*
* \code
* Loader *loader = Loader::create();
* connect(loader, SIGNAL(loadingComplete(Loader*, FeedPtr, ErrorCode)),
* this, SLOT(slotLoadingComplete(Loader*, FeedPtr, ErrorCode)));
* loader->loadFrom("http://www.blah.org/foobar.rdf");
* \endcode
*
* This creates a Loader object, connects it's loadingComplete() signal to
* your custom slot and then makes it load the file
* 'http://www.blah.org/foobar.rdf'. You could've
* done something like this as well:
*
* \code
* // create the Loader, connect it's signal...
* loader->loadFrom("/home/myself/some-script.py", new OutputRetriever);
* \endcode
*
* That'd make the Loader use a custom algorithm for retrieving the RSS data;
* 'OutputRetriever' will make it execute the script
* '/home/myself/some-script.py' and assume whatever that script prints to
* stdout is RSS/Azom markup. This is e.g. handy for conversion scripts, which
* download a HTML file and convert it's contents into RSS markup.
*
* No matter what kind of retrieval algorithm you employ, your
* 'slotLoadingComplete' method might look like this:
*
* \code
* void MyClass::slotLoadingComplete(Loader* loader, FeedPtr feed, ErrorCode status)
* {
* // Note that Loader::~Loader() is private, so you cannot delete Loader instances.
* // You don't need to do that anyway since Loader instances delete themselves.
*
* if (status != Syndication::Success)
* return;
*
* QString title = feed->title();
* // do whatever you want with the information.
* }
* \endcode
*/
class SYNDICATION_EXPORT Loader : public QObject
{
Q_OBJECT
public:
/**
* Constructs a Loader instance. This is pretty much what the
* default constructor would do, except that it ensures that all
* Loader instances have been allocated on the heap (this is
* required so that Loader's can delete themselves safely after they
* emitted the loadingComplete() signal.).
* @return A pointer to a new Loader instance.
*/
static Loader* create();
/**
* Convenience method. Does the same as the above method except that
* it also does the job of connecting the loadingComplete() signal
* to the given slot for you.
* @param object A QObject which features the specified slot
* @param slot Which slot to connect to.
*/
static Loader* create(QObject* object, const char* slot);
/**
* Loads the feed source referenced by the given URL using the
* specified retrieval algorithm. Make sure that you connected
* to the loadingComplete() signal before calling this method so
* that you're guaranteed to get notified when the loading finished.
* \note A Loader object cannot load from multiple URLs simultaneously;
* consequently, subsequent calls to loadFrom will be discarded
* silently, only the first loadFrom request will be executed.
* @param url A URL referencing the input file.
* @param retriever A subclass of DataRetriever which implements a
* specialized retrieval behaviour. Note that the ownership of the
* retriever is transferred to the Loader, i.e. the Loader will
* delete it when it doesn't need it anymore.
* @see DataRetriever, Loader::loadingComplete()
*/
void loadFrom(const KUrl& url, DataRetriever* retriever);
/**
* Convenience method. Does the same as the above method, where
* FileRetriever is used as retriever implementation.
*
* @param url A URL referencing the input file.
*/
void loadFrom(const KUrl& url);
/**
* Retrieves the error code of the last loading process (if any).
*/
ErrorCode errorCode() const;
/**
* the error code returned from the retriever.
* Use this if you use your custom retriever implementation and
* need the specific error, not covered by errorCode().
*/
int retrieverError() const;
/**
* returns the URL of a feed discovered in the feed source
*/
KUrl discoveredFeedURL() const;
/**
* aborts the loading process
*/
void abort();
Q_SIGNALS:
/**
* This signal gets emitted when the loading process triggered by
* calling loadFrom() finished.
* @param loader A pointer pointing to the loader object which
* emitted this signal; this is handy in case you connect multiple
* loaders to a single slot.
* @param feed In case errortus is Success, this parameter holds the
* parsed feed. If fetching/parsing failed, feed is NULL.
* @param error An error code telling whether there were any
* problems while retrieving or parsing the data.
* @see Feed, ErrorCode
*/
void loadingComplete(Syndication::Loader* loader,
Syndication::FeedPtr feed,
Syndication::ErrorCode error);
private Q_SLOTS:
void slotRetrieverDone(const QByteArray& data, bool success);
private:
Loader();
Loader(const Loader& other);
Loader& operator=(const Loader& other);
~Loader();
void discoverFeeds(const QByteArray& data);
struct LoaderPrivate;
LoaderPrivate* const d;
};
} // namespace Syndication
#endif // SYNDICATION_LOADER_H
|