summaryrefslogtreecommitdiffstats
path: root/libemailfunctions/idmapper.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /libemailfunctions/idmapper.h
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libemailfunctions/idmapper.h')
-rw-r--r--libemailfunctions/idmapper.h159
1 files changed, 159 insertions, 0 deletions
diff --git a/libemailfunctions/idmapper.h b/libemailfunctions/idmapper.h
new file mode 100644
index 00000000..e09587f4
--- /dev/null
+++ b/libemailfunctions/idmapper.h
@@ -0,0 +1,159 @@
+/*
+ This file is part of kdepim.
+
+ Copyright (c) 2004 Tobias Koenig <tokoe@kde.org>
+ Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+#ifndef KPIM_IDMAPPER_H
+#define KPIM_IDMAPPER_H
+
+#include <qmap.h>
+#include <qvariant.h>
+
+#include <kdepimmacros.h>
+
+namespace KPIM {
+
+/**
+ An Id Mapper maps Ids. What to or what for is not entirely
+ clear, but maps have categories. This is probably an
+ adjoint functor, since adjoint functors are everywhere.
+*/
+class KDE_EXPORT IdMapper
+{
+ public:
+ /**
+ Create Id mapper. You have to set path and identifier before you can call
+ load() or save().
+ */
+ IdMapper();
+ /**
+ Create Id mapper. The path specifies the category of mapping, the
+ identifier the concrete object.
+
+ If you don't pass an identifier you have to set it before calling load()
+ or save().
+
+ The current implementation stores the data at
+ $(KDEHOME)/share/apps/\<path\>/\<identifier\>.
+ */
+ IdMapper( const QString &path, const QString &identifier = QString::null );
+ /** Destructor. */
+ ~IdMapper();
+
+ /**
+ Set id map path.
+ */
+ void setPath( const QString &path );
+ /**
+ Return id map path.
+ */
+ QString path() const { return mPath; }
+
+ /**
+ Set id map identifier.
+ */
+ void setIdentifier( const QString &identifier );
+ /**
+ Return id map identifier.
+ */
+ QString identifier() const { return mIdentifier; }
+
+ /**
+ Loads the map.
+ */
+ bool load();
+
+ /**
+ Saves the map.
+ */
+ bool save();
+
+ /**
+ Clears the map.
+ */
+ void clear();
+
+ /**
+ Stores the remote id for the given local id.
+ */
+ void setRemoteId( const QString &localId, const QString &remoteId );
+
+ /**
+ Removes the remote id.
+ */
+ void removeRemoteId( const QString &remoteId );
+
+ /**
+ Returns the remote id of the given local id.
+ */
+ QString remoteId( const QString &localId ) const;
+
+ /**
+ Returns the local id for the given remote id.
+ */
+ QString localId( const QString &remoteId ) const;
+
+
+ /**
+ * Stores a fingerprint for an id which can be used to detect if
+ * the locally held version differs from what is on the server.
+ * This can be a sequence number of an md5 hash depending on what
+ * the server provides
+ */
+ void setFingerprint( const QString &localId, const QString &fingerprint );
+
+ /**
+ * Returns the fingerprint for the map.
+ *
+ * @todo Figure out if this applies to the last set fingerprint
+ * or if anything else can change it.
+ */
+ const QString &fingerprint( const QString &localId ) const;
+
+
+ /**
+ * Returns the entire map for the Id mapper.
+ *
+ * @todo Document what the map means.
+ */
+ QMap<QString, QString> remoteIdMap() const;
+
+ /**
+ * Returns a string representation of the id pairs, that's usefull
+ * for debugging.
+ */
+ QString asString() const;
+
+ protected:
+ /**
+ * Returns the filename this mapper is (or will be) stored in.
+ */
+ QString filename();
+
+ private:
+ QMap<QString, QVariant> mIdMap;
+ QMap<QString, QString> mFingerprintMap;
+
+ QString mPath;
+ QString mIdentifier;
+};
+
+}
+
+#endif