diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/CMakeLists.txt | 1 | ||||
-rw-r--r-- | common/clientapi.h | 11 | ||||
-rw-r--r-- | common/domain/event.cpp | 53 | ||||
-rw-r--r-- | common/domain/event.h | 46 | ||||
-rw-r--r-- | common/genericresource.cpp | 9 | ||||
-rw-r--r-- | common/genericresource.h | 3 | ||||
-rw-r--r-- | common/resultset.h | 61 |
7 files changed, 175 insertions, 9 deletions
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 2ece210..37b5b3f 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt | |||
@@ -25,6 +25,7 @@ set(command_SRCS | |||
25 | threadboundary.cpp | 25 | threadboundary.cpp |
26 | messagequeue.cpp | 26 | messagequeue.cpp |
27 | index.cpp | 27 | index.cpp |
28 | domain/event.cpp | ||
28 | ${storage_SRCS}) | 29 | ${storage_SRCS}) |
29 | 30 | ||
30 | add_library(${PROJECT_NAME} SHARED ${command_SRCS}) | 31 | add_library(${PROJECT_NAME} SHARED ${command_SRCS}) |
diff --git a/common/clientapi.h b/common/clientapi.h index ee4ef3f..d26a2ad 100644 --- a/common/clientapi.h +++ b/common/clientapi.h | |||
@@ -104,9 +104,10 @@ public: | |||
104 | { | 104 | { |
105 | 105 | ||
106 | } | 106 | } |
107 | ApplicationDomainType(const QByteArray &resourceName, const QByteArray &identifier, qint64 revision, const QSharedPointer<BufferAdaptor> &adaptor) | 107 | |
108 | ApplicationDomainType(const QByteArray &resourceInstanceIdentifier, const QByteArray &identifier, qint64 revision, const QSharedPointer<BufferAdaptor> &adaptor) | ||
108 | : mAdaptor(adaptor), | 109 | : mAdaptor(adaptor), |
109 | mResourceName(resourceName), | 110 | mResourceInstanceIdentifier(resourceInstanceIdentifier), |
110 | mIdentifier(identifier), | 111 | mIdentifier(identifier), |
111 | mRevision(revision) | 112 | mRevision(revision) |
112 | { | 113 | { |
@@ -117,7 +118,7 @@ public: | |||
117 | { | 118 | { |
118 | //TODO only copy requested properties | 119 | //TODO only copy requested properties |
119 | auto memoryAdaptor = QSharedPointer<Akonadi2::ApplicationDomain::MemoryBufferAdaptor>::create(*(domainType->mAdaptor)); | 120 | auto memoryAdaptor = QSharedPointer<Akonadi2::ApplicationDomain::MemoryBufferAdaptor>::create(*(domainType->mAdaptor)); |
120 | return QSharedPointer<DomainType>::create(domainType->mResourceName, domainType->mIdentifier, domainType->mRevision, memoryAdaptor); | 121 | return QSharedPointer<DomainType>::create(domainType->mResourceInstanceIdentifier, domainType->mIdentifier, domainType->mRevision, memoryAdaptor); |
121 | } | 122 | } |
122 | 123 | ||
123 | virtual ~ApplicationDomainType() {} | 124 | virtual ~ApplicationDomainType() {} |
@@ -126,6 +127,8 @@ public: | |||
126 | virtual void setProperty(const QByteArray &key, const QVariant &value){ mChangeSet.insert(key, value); mAdaptor->setProperty(key, value); } | 127 | virtual void setProperty(const QByteArray &key, const QVariant &value){ mChangeSet.insert(key, value); mAdaptor->setProperty(key, value); } |
127 | virtual QByteArrayList changedProperties() const { return mChangeSet.keys(); } | 128 | virtual QByteArrayList changedProperties() const { return mChangeSet.keys(); } |
128 | qint64 revision() const { return mRevision; } | 129 | qint64 revision() const { return mRevision; } |
130 | QByteArray resourceInstanceIdentifier() const { return mResourceInstanceIdentifier; } | ||
131 | QByteArray identifier() const { return mIdentifier; } | ||
129 | 132 | ||
130 | private: | 133 | private: |
131 | QSharedPointer<BufferAdaptor> mAdaptor; | 134 | QSharedPointer<BufferAdaptor> mAdaptor; |
@@ -133,7 +136,7 @@ private: | |||
133 | /* | 136 | /* |
134 | * Each domain object needs to store the resource, identifier, revision triple so we can link back to the storage location. | 137 | * Each domain object needs to store the resource, identifier, revision triple so we can link back to the storage location. |
135 | */ | 138 | */ |
136 | QByteArray mResourceName; | 139 | QByteArray mResourceInstanceIdentifier; |
137 | QByteArray mIdentifier; | 140 | QByteArray mIdentifier; |
138 | qint64 mRevision; | 141 | qint64 mRevision; |
139 | }; | 142 | }; |
diff --git a/common/domain/event.cpp b/common/domain/event.cpp new file mode 100644 index 0000000..86100b7 --- /dev/null +++ b/common/domain/event.cpp | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the | ||
16 | * Free Software Foundation, Inc., | ||
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | */ | ||
19 | #include "event.h" | ||
20 | |||
21 | #include <QVector> | ||
22 | #include <QByteArray> | ||
23 | |||
24 | #include "../resultset.h" | ||
25 | #include "../index.h" | ||
26 | #include "../storage.h" | ||
27 | #include "../log.h" | ||
28 | |||
29 | using namespace Akonadi2::ApplicationDomain; | ||
30 | |||
31 | ResultSet EventImplementation::queryIndexes(const Akonadi2::Query &query, const QByteArray &resourceInstanceIdentifier) | ||
32 | { | ||
33 | QVector<QByteArray> keys; | ||
34 | if (query.propertyFilter.contains("uid")) { | ||
35 | Index uidIndex(Akonadi2::Store::storageLocation(), resourceInstanceIdentifier + "index.uid", Akonadi2::Storage::ReadOnly); | ||
36 | uidIndex.lookup(query.propertyFilter.value("uid").toByteArray(), [&](const QByteArray &value) { | ||
37 | keys << value; | ||
38 | }, | ||
39 | [](const Index::Error &error) { | ||
40 | Warning() << "Error in index: " << error.message; | ||
41 | }); | ||
42 | } | ||
43 | return ResultSet(keys); | ||
44 | } | ||
45 | |||
46 | void EventImplementation::index(const Event &type) | ||
47 | { | ||
48 | Index uidIndex(Akonadi2::Store::storageLocation(), type.resourceInstanceIdentifier() + "index.uid", Akonadi2::Storage::ReadWrite); | ||
49 | const auto uid = type.getProperty("uid"); | ||
50 | if (uid.isValid()) { | ||
51 | uidIndex.add(uid.toByteArray(), type.identifier()); | ||
52 | } | ||
53 | } | ||
diff --git a/common/domain/event.h b/common/domain/event.h new file mode 100644 index 0000000..4cb0d34 --- /dev/null +++ b/common/domain/event.h | |||
@@ -0,0 +1,46 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the | ||
16 | * Free Software Foundation, Inc., | ||
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | */ | ||
19 | #pragma once | ||
20 | |||
21 | #include "../clientapi.h" | ||
22 | |||
23 | class ResultSet; | ||
24 | class QByteArray; | ||
25 | |||
26 | namespace Akonadi2 { | ||
27 | class Query; | ||
28 | |||
29 | namespace ApplicationDomain { | ||
30 | |||
31 | /** | ||
32 | * Implements all type-specific code such as updating and querying indexes. | ||
33 | */ | ||
34 | namespace EventImplementation { | ||
35 | typedef Event DomainType; | ||
36 | /** | ||
37 | * Returns the potential result set based on the indexes. | ||
38 | * | ||
39 | * An empty result set indicates that a full scan is required. | ||
40 | */ | ||
41 | ResultSet queryIndexes(const Akonadi2::Query &query, const QByteArray &resourceInstanceIdentifier); | ||
42 | void index(const Event &type); | ||
43 | }; | ||
44 | |||
45 | } | ||
46 | } | ||
diff --git a/common/genericresource.cpp b/common/genericresource.cpp index 4467e86..fdc8b14 100644 --- a/common/genericresource.cpp +++ b/common/genericresource.cpp | |||
@@ -153,11 +153,12 @@ private: | |||
153 | }; | 153 | }; |
154 | 154 | ||
155 | 155 | ||
156 | GenericResource::GenericResource(const QByteArray &resourceIdentifier) | 156 | GenericResource::GenericResource(const QByteArray &resourceInstanceIdentifier) |
157 | : Akonadi2::Resource(), | 157 | : Akonadi2::Resource(), |
158 | mUserQueue(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/akonadi2/storage", "org.kde." + resourceIdentifier + ".userqueue"), | 158 | mUserQueue(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/akonadi2/storage", "org.kde." + resourceInstanceIdentifier + ".userqueue"), |
159 | mSynchronizerQueue(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/akonadi2/storage", "org.kde." + resourceIdentifier + ".synchronizerqueue"), | 159 | mSynchronizerQueue(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/akonadi2/storage", "org.kde." + resourceInstanceIdentifier + ".synchronizerqueue"), |
160 | mError(0) | 160 | mError(0), |
161 | mResourceInstanceIdentifier(resourceInstanceIdentifier) | ||
161 | { | 162 | { |
162 | } | 163 | } |
163 | 164 | ||
diff --git a/common/genericresource.h b/common/genericresource.h index ac28575..c44989e 100644 --- a/common/genericresource.h +++ b/common/genericresource.h | |||
@@ -34,7 +34,7 @@ namespace Akonadi2 | |||
34 | class AKONADI2COMMON_EXPORT GenericResource : public Resource | 34 | class AKONADI2COMMON_EXPORT GenericResource : public Resource |
35 | { | 35 | { |
36 | public: | 36 | public: |
37 | GenericResource(const QByteArray &resourceIdentifier); | 37 | GenericResource(const QByteArray &resourceInstanceIdentifier); |
38 | virtual ~GenericResource(); | 38 | virtual ~GenericResource(); |
39 | 39 | ||
40 | virtual void processCommand(int commandId, const QByteArray &data, uint size, Pipeline *pipeline) Q_DECL_OVERRIDE; | 40 | virtual void processCommand(int commandId, const QByteArray &data, uint size, Pipeline *pipeline) Q_DECL_OVERRIDE; |
@@ -50,6 +50,7 @@ protected: | |||
50 | flatbuffers::FlatBufferBuilder m_fbb; | 50 | flatbuffers::FlatBufferBuilder m_fbb; |
51 | MessageQueue mUserQueue; | 51 | MessageQueue mUserQueue; |
52 | MessageQueue mSynchronizerQueue; | 52 | MessageQueue mSynchronizerQueue; |
53 | QByteArray mResourceInstanceIdentifier; | ||
53 | 54 | ||
54 | private: | 55 | private: |
55 | Processor *mProcessor; | 56 | Processor *mProcessor; |
diff --git a/common/resultset.h b/common/resultset.h new file mode 100644 index 0000000..7d7f19a --- /dev/null +++ b/common/resultset.h | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the | ||
16 | * Free Software Foundation, Inc., | ||
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | */ | ||
19 | #pragma once | ||
20 | |||
21 | #include <QVector> | ||
22 | |||
23 | /* | ||
24 | * An iterator to a result set. | ||
25 | * | ||
26 | * We'll eventually want to lazy load results in next(). | ||
27 | */ | ||
28 | class ResultSet { | ||
29 | public: | ||
30 | ResultSet(const QVector<QByteArray> &resultSet) | ||
31 | : mResultSet(resultSet), | ||
32 | mIt(nullptr) | ||
33 | { | ||
34 | |||
35 | } | ||
36 | |||
37 | bool next() | ||
38 | { | ||
39 | if (!mIt) { | ||
40 | mIt = mResultSet.constBegin(); | ||
41 | } else { | ||
42 | mIt++; | ||
43 | } | ||
44 | return mIt != mResultSet.constEnd(); | ||
45 | } | ||
46 | |||
47 | QByteArray id() | ||
48 | { | ||
49 | return *mIt; | ||
50 | } | ||
51 | |||
52 | bool isEmpty() | ||
53 | { | ||
54 | mResultSet.isEmpty(); | ||
55 | } | ||
56 | |||
57 | private: | ||
58 | QVector<QByteArray> mResultSet; | ||
59 | QVector<QByteArray>::ConstIterator mIt; | ||
60 | }; | ||
61 | |||