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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
/* This file is part of the KDE project
Copyright (c) 2007 Sven Langkamp <sven.langkamp@gmail.com>
Copyright (C) 2011 Srikanth Tiyyagura <srikanth.tulasiram@gmail.com>
Copyright (c) 2013 Sascha Suelzer <s.suelzer@gmail.com>
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) any later version.
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef KO_RESOURCESERVER_ADAPTER_H_
#define KO_RESOURCESERVER_ADAPTER_H_
#include "KoResourceServer.h"
#include <KoResource.h>
#include <KoResourceFiltering.h>
#include "kowidgets_export.h"
/// The resource server adapter provides a adapter pattern for a templated resource server
class KOWIDGETS_EXPORT KoAbstractResourceServerAdapter : public QObject
{
Q_OBJECT
public:
KoAbstractResourceServerAdapter(QObject *parent = 0);
virtual ~KoAbstractResourceServerAdapter();
virtual void connectToResourceServer() = 0;
virtual QList<KoResource*> resources() = 0;
virtual QList<KoResource*> serverResources() = 0;
virtual bool addResource(KoResource* resource) = 0;
virtual bool removeResource(KoResource* resource) = 0;
virtual void removeResourceFile(const QString & filename) = 0;
virtual void importResourceFile(const QString & filename, bool fileCreation = true) = 0;
virtual QString extensions() const = 0;
virtual void setCurrentTag(const QString& currentTag) = 0;
virtual void enableResourceFiltering(bool tagSearch) = 0;
virtual void updateServer() = 0;
virtual QStringList assignedTagsList(KoResource* resource) = 0;
virtual QStringList tagNamesList() = 0;
virtual void addTag(const QString& tag) = 0;
virtual void addTag(KoResource* resource, const QString& tag) = 0;
virtual void deleteTag(KoResource* resource, const QString& tag) = 0;
virtual void searchTextChanged(const QString& searchString) = 0;
// these call the server.
virtual void tagCategoryMembersChanged() = 0;
virtual void tagCategoryAdded(const QString& tag) = 0;
virtual void tagCategoryRemoved(const QString& tag) = 0;
virtual void setFilterIncludes(const QStringList& filteredNames) = 0;
virtual QStringList searchTag(const QString& lineEditText) = 0;
virtual void configureFilters(int filterType, bool enable) = 0;
virtual QString serverType() const { return QString(); }
virtual void setSortingEnabled(bool value) = 0;
virtual bool sortingEnabled() const = 0;
Q_SIGNALS:
void resourceAdded(KoResource*);
void removingResource(KoResource*);
void resourceChanged(KoResource*);
void tagsWereChanged();
void tagCategoryWasAdded(const QString& tag);
void tagCategoryWasRemoved(const QString& tag);
protected:
void emitResourceAdded(KoResource* resource);
void emitRemovingResource(KoResource* resource);
void emitResourceChanged(KoResource* resource);
void emitTagsWereChanged();
void emitTagCategoryWasAdded(const QString& tag);
void emitTagCategoryWasRemoved(const QString& tag);
};
/**
* The KoResourceServerAdapter provides adapter to a specific resource server
* It provides a resource type independent interface to the server.
*/
template <class T, class Policy = PointerStoragePolicy<T> >
class KoResourceServerAdapter : public KoAbstractResourceServerAdapter, public KoResourceServerObserver<T, Policy>
{
typedef KoResourceServer<T, Policy> ServerType;
typedef typename Policy::PointerType PointerType;
public:
KoResourceServerAdapter(ServerType* resourceServer, QObject *parent = 0)
: KoAbstractResourceServerAdapter(parent)
, m_resourceServer(resourceServer)
, m_sortingEnabled(false)
{
m_changeCounter = 0;
m_oldChangeCounter = 0;
m_enableFiltering = false;
m_resourceFilter.setResourceServer(m_resourceServer);
}
virtual ~KoResourceServerAdapter()
{
if (m_resourceServer)
m_resourceServer->removeObserver(this);
}
QString serverType() const
{
if (m_resourceServer) {
return m_resourceServer->type();
}
return KoAbstractResourceServerAdapter::serverType();
}
virtual void unsetResourceServer()
{
m_resourceServer = 0;
}
void connectToResourceServer()
{
if (m_resourceServer)
m_resourceServer->addObserver(this);
}
virtual QList<KoResource*> resources()
{
if (! m_resourceServer)
return QList<KoResource*>();
bool cacheDirty = serverResourceCacheInvalid();
if (cacheDirty) {
QList<PointerType> serverResources =
m_sortingEnabled ?
m_resourceServer->sortedResources() :
m_resourceServer->resources();
cacheServerResources(serverResources);
}
if (m_enableFiltering) {
if (m_resourceFilter.filtersHaveChanged() || cacheDirty) {
m_filteredResources = m_resourceFilter.filterResources(m_serverResources);
}
return m_filteredResources;
}
return m_serverResources;
}
bool addResource(KoResource* resource)
{
if (! m_resourceServer)
return false;
T* res = dynamic_cast<T*>(resource);
if (res) {
return m_resourceServer->addResource(res);
}
return false;
}
bool removeResource(KoResource* resource)
{
if (! m_resourceServer)
return false;
T* res = dynamic_cast<T*>(resource);
if (res) {
return m_resourceServer->removeResourceAndBlacklist(res);
}
return false;
}
void importResourceFile(const QString & filename , bool fileCreation = true)
{
if (! m_resourceServer)
return;
m_resourceServer->importResourceFile(filename, fileCreation);
}
void removeResourceFile(const QString & filename)
{
if (!m_resourceServer) {
return;
}
m_resourceServer->removeResourceFile(filename);
}
void resourceAdded(PointerType resource) {
serverResourceCacheInvalid(true);
emitResourceAdded(Policy::toResourcePointer(resource));
}
void removingResource(PointerType resource) {
serverResourceCacheInvalid(true);
emitRemovingResource(Policy::toResourcePointer(resource));
}
void resourceChanged(PointerType resource) {
serverResourceCacheInvalid(true);
emitResourceChanged(Policy::toResourcePointer(resource));
}
void syncTaggedResourceView() {
serverResourceCacheInvalid(true);
m_resourceFilter.rebuildCurrentTagFilenames();
emitTagsWereChanged();
}
void syncTagAddition(const QString& tag) {
emitTagCategoryWasAdded(tag);
}
void syncTagRemoval(const QString& tag) {
emitTagCategoryWasRemoved(tag);
}
QString extensions() const {
if (! m_resourceServer)
return QString();
return m_resourceServer->extensions();
}
void setCurrentTag(const QString& resourceFileNames) {
serverResourceCacheInvalid(true);
m_resourceFilter.setCurrentTag(resourceFileNames);
}
void enableResourceFiltering(bool enable) {
m_enableFiltering = enable;
}
void updateServer() {
emitRemovingResource(0);
}
QStringList assignedTagsList(KoResource* resource) {
return m_resourceServer->assignedTagsList(resource);
}
QStringList tagNamesList() {
return m_resourceServer->tagNamesList();
}
void addTag(const QString& tag) {
m_resourceServer->addTag(0, tag);
}
void addTag(KoResource* resource, const QString& tag) {
m_resourceServer->addTag(resource, tag);
}
void deleteTag(KoResource* resource, const QString& tag) {
m_resourceServer->delTag(resource, tag);
}
void setFilterIncludes(const QStringList& filteredNames) {
m_resourceFilter.setInclusions(filteredNames);
}
void searchTextChanged(const QString& searchString) {
m_resourceFilter.setFilters(searchString);
serverResourceCacheInvalid(true);
}
QStringList searchTag(const QString& lineEditText) {
return m_resourceServer->searchTag(lineEditText);
}
// called by model to notify server of change
void tagCategoryMembersChanged() {
m_resourceServer->tagCategoryMembersChanged();
}
void tagCategoryAdded(const QString& tag) {
m_resourceServer->tagCategoryAdded(tag);
}
void tagCategoryRemoved(const QString& tag) {
m_resourceServer->tagCategoryRemoved(tag);
}
virtual QList<KoResource*> serverResources() {
return m_serverResources;
}
void configureFilters(int filterType, bool enable){
m_resourceFilter.configure(filterType,enable);
}
void setSortingEnabled(bool value) {
m_sortingEnabled = value;
serverResourceCacheInvalid(true);
}
bool sortingEnabled() const {
return m_sortingEnabled;
}
protected:
ServerType* resourceServer() const {
return m_resourceServer;
}
protected:
KoResourceFiltering m_resourceFilter;
private:
bool serverResourceCacheInvalid() const {
return m_changeCounter != m_oldChangeCounter;
}
void serverResourceCacheInvalid(bool yes) {
if (yes) {
++m_changeCounter;
} else {
m_oldChangeCounter = m_changeCounter;
}
}
void cacheServerResources(const QList<PointerType> &serverResources) {
m_serverResources.clear();
foreach(PointerType resource, serverResources) {
m_serverResources.append(Policy::toResourcePointer(resource));
}
serverResourceCacheInvalid(false);
}
ServerType* m_resourceServer;
unsigned int m_changeCounter;
unsigned int m_oldChangeCounter;
QList<KoResource*> m_serverResources;
QList<KoResource*> m_filteredResources;
bool m_enableFiltering;
bool m_sortingEnabled;
};
#endif // KO_RESOURCESERVER_ADAPTER_H_
|