* src/toolbox/hashtable.hpp: Added preliminary C++ hashtable class.
authorMichael Starzinger <michi@complang.tuwien.ac.at>
Tue, 11 Aug 2009 09:03:18 +0000 (11:03 +0200)
committerMichael Starzinger <michi@complang.tuwien.ac.at>
Tue, 11 Aug 2009 09:03:18 +0000 (11:03 +0200)
* src/threads/mutex.hpp (MutexLocker): Helper which might come in handy.
(transplanted from aefdd2b45fcf0086266e43032ce0bda0a9f8a0f9)

--HG--
extra : transplant_source : %AE%FD%D2%B4_%CF%00%86%26nC%03%2C%E0%BD%A0%A9%F8%A0%F9

src/threads/mutex.hpp
src/toolbox/hashtable.hpp [new file with mode: 0644]

index e8bbce33cbae7e69926bd38176d5acd496ef0722..d4e7c6b1112148eeced9609fa176edf35e0ee0ee 100644 (file)
 # include "threads/posix/mutex-posix.hpp"
 #endif
 
+#if __cplusplus
+
+/**
+ * Helper class used to implicitly acquire and release a mutex
+ * within a method scope.
+ */
+class MutexLocker {
+private:
+       Mutex& _mutex;
+
+public:
+       MutexLocker(Mutex& mutex) : _mutex(mutex) { _mutex.lock(); }
+       ~MutexLocker()                            { _mutex.unlock(); }
+};
+
+#endif
+
 #endif /* _MUTEX_HPP */
 
 
diff --git a/src/toolbox/hashtable.hpp b/src/toolbox/hashtable.hpp
new file mode 100644 (file)
index 0000000..0c34db6
--- /dev/null
@@ -0,0 +1,105 @@
+/* src/toolbox/hashtable.hpp - hashtable classes
+
+   Copyright (C) 2009
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
+   Copyright (C) 2009 Theobroma Systems Ltd.
+
+   This file is part of CACAO.
+
+   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 2, 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, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+*/
+
+
+#ifndef _HASHTABLE_HPP
+#define _HASHTABLE_HPP
+
+#include "config.h"
+
+#if __cplusplus
+
+// XXX This is a TR1 header and not (yet) part of the C++ standard, so we
+// should not use it. The solution is to implement the below stuff
+// ourselves. This will be done, sometimes, soon, I hope ...
+#include <tr1/unordered_map>
+
+
+/**
+ * Default hashing function for hashtable implementation.
+ */
+template<class T> class Hasher {
+       // XXX Implement me!
+};
+
+
+/**
+ * Hashtable implementation.
+ */
+template<class Key, class T,
+               class Hash = Hasher<Key>,
+               class Pred = std::equal_to<Key> >
+class Hashtable :
+               protected std::tr1::unordered_map<Key,T,Hash,Pred> {
+public:
+       // Constructor.
+       Hashtable(size_t n) : std::tr1::unordered_map<Key,T,Hash,Pred>(n) {}
+
+       // Make iterator of TR1 unordered map visible.
+       using std::tr1::unordered_map<Key,T,Hash,Pred>::iterator;
+
+       // Make functions of TR1 unordered map visible.
+       using std::tr1::unordered_map<Key,T,Hash,Pred>::end;
+       using std::tr1::unordered_map<Key,T,Hash,Pred>::find;
+       using std::tr1::unordered_map<Key,T,Hash,Pred>::insert;
+};
+
+
+// Required by LockableHashtable.
+#include "threads/mutex.hpp"
+
+
+/**
+ * Hashtable implementation with a Mutex.
+ */
+template<class Key, class T,
+               class Hash = Hasher<Key>,
+               class Pred = std::equal_to<Key> >
+class LockableHashtable :
+               public Hashtable<Key,T,Hash,Pred>,
+               public Mutex {
+public:
+       // Constructor.
+       LockableHashtable(size_t n) : Hashtable<Key,T,Hash,Pred>(n) {}
+};
+
+#endif
+
+#endif /* _HASHTABLE_HPP */
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c++
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ * vim:noexpandtab:sw=4:ts=4:
+ */