akonadi
#include <preprocessorbase.h>
Public Types | |
enum | ProcessingResult { ProcessingCompleted, ProcessingDelayed, ProcessingFailed, ProcessingRefused } |
Public Types inherited from Akonadi::AgentBase | |
enum | Status { Idle = 0, Running, Broken, NotConfigured } |
Public Member Functions | |
ItemFetchScope & | fetchScope () |
void | finishProcessing (ProcessingResult result) |
virtual ProcessingResult | processItem (const Item &item)=0 |
void | setFetchScope (const ItemFetchScope &fetchScope) |
Public Member Functions inherited from Akonadi::AgentBase | |
QString | agentName () const |
virtual void | cleanup () |
QString | identifier () const |
virtual int | progress () const |
virtual QString | progressMessage () const |
void | registerObserver (Observer *observer) |
void | setAgentName (const QString &name) |
virtual int | status () const |
virtual QString | statusMessage () const |
WId | winIdForDialogs () const |
Protected Member Functions | |
PreprocessorBase (const QString &id) | |
virtual | ~PreprocessorBase () |
Protected Member Functions inherited from Akonadi::AgentBase | |
AgentBase (const QString &id) | |
~AgentBase () | |
virtual void | aboutToQuit () |
void | changeProcessed () |
ChangeRecorder * | changeRecorder () const |
KSharedConfigPtr | config () |
virtual void | doSetOnline (bool online) |
bool | isOnline () const |
void | setNeedsNetwork (bool needsNetwork) |
void | setOnline (bool state) |
Additional Inherited Members | |
Public Slots inherited from Akonadi::AgentBase | |
virtual void | configure (WId windowId) |
Signals inherited from Akonadi::AgentBase | |
void | abortRequested () |
void | advancedStatus (const QVariantMap &status) |
void | agentNameChanged (const QString &name) |
void | configurationDialogAccepted () |
void | configurationDialogRejected () |
void | error (const QString &message) |
void | onlineChanged (bool online) |
void | percent (int progress) |
void | reloadConfiguration () |
void | status (int status, const QString &message=QString()) |
void | warning (const QString &message) |
Static Public Member Functions inherited from Akonadi::AgentBase | |
static KComponentData | componentData () |
template<typename T > | |
static int | init (int argc, char **argv) |
Detailed Description
The base class for all Akonadi preprocessor agents.
This class should be used as a base class by all preprocessor agents since it encapsulates large parts of the protocol between preprocessor agent, agent manager and the Akonadi storage.
Preprocessor agents are special agents that are informed about newly added items before any other agents. This allows them to do filtering on the items or any other task that shall be done before the new item is visible in the Akonadi storage system.
The method all the preprocessors must implement is processItem().
- Since
- 4.4
Definition at line 55 of file preprocessorbase.h.
Member Enumeration Documentation
Describes the possible return values of the processItem() method.
Enumerator | |
---|---|
ProcessingCompleted |
Processing completed successfully for this item. The Akonadi server will push in a new item when it's available. |
ProcessingDelayed |
Processing was delayed to a later stage. This must be returned when implementing asynchronous preprocessing. If this value is returned, finishProcessing() has to be called when processing is done. |
ProcessingFailed |
Processing for this item failed (and the failure is unrecoverable). The Akonadi server will push in a new item when it's available, after possibly logging the failure. |
ProcessingRefused |
Processing for this item was refused. This is very similar to ProcessingFailed above but additionally remarks that the item that the Akonadi server pushed in wasn't meant for this Preprocessor. The Akonadi server will push in a new item when it's available, after possibly logging the failure and maybe taking some additional action. |
Definition at line 63 of file preprocessorbase.h.
Constructor & Destructor Documentation
|
protected |
Creates a new preprocessor base agent.
- Parameters
-
id The instance id of the preprocessor base agent.
Definition at line 30 of file preprocessorbase.cpp.
|
protectedvirtual |
Destroys the preprocessor base agent.
Definition at line 35 of file preprocessorbase.cpp.
Member Function Documentation
ItemFetchScope & PreprocessorBase::fetchScope | ( | ) |
Returns the item fetch scope.
Since this returns a reference it can be used to conveniently modify the current scope in-place, i.e. by calling a method on the returned reference without storing it in a local variable. See the ItemFetchScope documentation for an example.
- Returns
- a reference to the current item fetch scope
- See also
- setFetchScope() for replacing the current item fetch scope
Definition at line 58 of file preprocessorbase.cpp.
void PreprocessorBase::finishProcessing | ( | ProcessingResult | result | ) |
This method must be called if processing is implemented asynchronously.
- Parameters
-
result the processing result You should call it when you have completed the processing or if an abortRequest() signal arrives (and in this case you will probably use ProcessingFailed as result).
Valid values for result
are ProcessingCompleted, PocessingRefused and ProcessingFailed. Passing any other value will lead to a runtime assertion.
Definition at line 39 of file preprocessorbase.cpp.
|
pure virtual |
This method must be implemented by every preprocessor subclass.
- Parameters
-
item the item to process It must realize the preprocessing of the given item
.
The Akonadi server will push in for preprocessing any newly created item: it's your responsibility to decide if you want to process the item or not.
The method should return ProcessingCompleted on success, ProcessingDelayed if processing is implemented asynchronously and ProcessingRefused or ProcessingFailed if the processing didn't complete.
If your operation is asynchronous then you should also connect to the abortRequested() signal and handle it appropriately (as the server MAY abort your async job if it decides that it's taking too long).
void PreprocessorBase::setFetchScope | ( | const ItemFetchScope & | fetchScope | ) |
Sets the item fetch scope.
The ItemFetchScope controls how much of an item's data is fetched from the server, e.g. whether to fetch the full item payload or only meta data.
- Parameters
-
fetchScope The new scope for item fetch operations.
- See also
- fetchScope()
Definition at line 51 of file preprocessorbase.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 23:00:29 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.