summaryrefslogtreecommitdiffstats
path: root/sigscript/ValueMap.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-17 19:36:35 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-03-17 19:36:35 -0400
commit99c87ee39e32117ce5a9652ef5b50a1d5760bdf7 (patch)
tree203e64058ccd55a8a8b0d1211855cf0197ddf23a /sigscript/ValueMap.h
parentd40b7586c3d1f1020a9fefd52bec75161edc63e8 (diff)
downloadsigen-99c87ee39e32117ce5a9652ef5b50a1d5760bdf7.tar.gz
sigen-99c87ee39e32117ce5a9652ef5b50a1d5760bdf7.tar.xz
sigen-99c87ee39e32117ce5a9652ef5b50a1d5760bdf7.zip
Move the map for the values into its own thread-safe class
Diffstat (limited to 'sigscript/ValueMap.h')
-rw-r--r--sigscript/ValueMap.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/sigscript/ValueMap.h b/sigscript/ValueMap.h
new file mode 100644
index 00000000..9f05ca33
--- /dev/null
+++ b/sigscript/ValueMap.h
@@ -0,0 +1,56 @@
+/*
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef SIGSCRIPT_ACTIONMAP
+#define SIGSCRIPT_ACTIONMAP
+
+// Sigscript includes
+#include "ConfigOptions.h"
+#include "Global.h"
+
+// Qt includes
+#include <QtCore/QMap>
+#include <QtCore/QPair>
+#include <QtCore/QReadWriteLock>
+#include <QtCore/QString>
+#include <QtCore/QStringList>
+#include <QtCore/QVariant>
+
+namespace Sigscript
+{
+class SIGSCRIPT_NO_EXPORT ValueMap
+{
+ public:
+ bool contains(const QString& name) const;
+
+ QStringList keys() const;
+
+ QVariant value(const QString& name) const;
+ void setValue(const QString& name, const QVariant& value);
+ void unsetValue(const QString& name);
+
+ ConfigOptions options(const QString& name) const;
+ void setOptions(const QString& name, const ConfigOptions options);
+ void unsetOptions(const QString& name, const ConfigOptions options);
+ private:
+ typedef QPair<QVariant, ConfigOptions> Value;
+ QMap<QString, Value> m_map;
+ mutable QReadWriteLock m_mutex;
+};
+}
+
+#endif