/* * Copyright (C) 2014 Christian Mollekopf * Copyright (C) 2014 Aaron Seigo * * 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 . */ #pragma once #include #include #include #include namespace Akonadi2 { class AKONADI2COMMON_EXPORT Storage { public: enum AccessMode { ReadOnly, ReadWrite }; enum ErrorCodes { GenericError, NotOpen, ReadOnlyError, TransactionError, NotFound }; class Error { public: Error(const QByteArray &s, int c, const QByteArray &m) : store(s), message(m), code(c) {} QByteArray store; QByteArray message; int code; }; Storage(const QString &storageRoot, const QString &name, AccessMode mode = ReadOnly, bool allowDuplicates = false); ~Storage(); bool isInTransaction() const; bool startTransaction(AccessMode mode = ReadWrite, const std::function &errorHandler = std::function()); bool commitTransaction(const std::function &errorHandler = std::function()); void abortTransaction(); /** * Write values. */ bool write(const void *key, size_t keySize, const void *value, size_t valueSize, const std::function &errorHandler = std::function()); /** * Convenience API */ bool write(const QByteArray &key, const QByteArray &value, const std::function &errorHandler = std::function()); /** * Read values with a give key. * * * An empty @param key results in a full scan * * If duplicates are existing (revisions), all values are returned. * * The pointers of the returned values are valid during the execution of the @param resultHandler * * @return The number of values retrieved. */ int scan(const QByteArray &key, const std::function &resultHandler, const std::function &errorHandler = std::function()); /** * Convenience API */ int scan(const QByteArray &key, const std::function &resultHandler, const std::function &errorHandler = std::function()); /** * Remove a value */ void remove(void const *key, uint keySize, const std::function &errorHandler = std::function()); /** * Convenience API */ void remove(const QByteArray &key, const std::function &errorHandler = std::function()); /** * Set the default error handler. */ void setDefaultErrorHandler(const std::function &errorHandler); std::function defaultErrorHandler() const; /** * A basic error handler that writes to std::cerr. * * Used if nothing else is configured. */ static std::function basicErrorHandler(); qint64 diskUsage() const; void removeFromDisk() const; qint64 maxRevision(); void setMaxRevision(qint64 revision); bool exists() const; static bool isInternalKey(const char *key); static bool isInternalKey(void *key, int keySize); static bool isInternalKey(const QByteArray &key); private: std::function mErrorHandler; private: class Private; Private * const d; }; } // namespace Akonadi2