aboutsummaryrefslogtreecommitdiffstats
path: root/src/mutex/noop_mutex/mux_noop.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-11 20:58:37 +0000
committerlloyd <[email protected]>2008-11-11 20:58:37 +0000
commit8879a51da7c3b93e27439122cea5d5aa81ae38c3 (patch)
treeb1faa753266d4a762fc38252df35a2435b757b92 /src/mutex/noop_mutex/mux_noop.cpp
parent6eff33ae263109ccbbeb32bd0ffb25c77140cc45 (diff)
Move utils/{timer,mutex} to toplevel
Diffstat (limited to 'src/mutex/noop_mutex/mux_noop.cpp')
-rw-r--r--src/mutex/noop_mutex/mux_noop.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/mutex/noop_mutex/mux_noop.cpp b/src/mutex/noop_mutex/mux_noop.cpp
new file mode 100644
index 000000000..eb3a12702
--- /dev/null
+++ b/src/mutex/noop_mutex/mux_noop.cpp
@@ -0,0 +1,48 @@
+/*************************************************
+* No-Op Mutex Factory Source File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#include <botan/mux_noop.h>
+
+namespace Botan {
+
+/*************************************************
+* No-Op Mutex Factory *
+*************************************************/
+Mutex* Noop_Mutex_Factory::make()
+ {
+ class Noop_Mutex : public Mutex
+ {
+ public:
+ class Mutex_State_Error : public Internal_Error
+ {
+ public:
+ Mutex_State_Error(const std::string& where) :
+ Internal_Error("Noop_Mutex::" + where + ": " +
+ "Mutex is already " + where + "ed") {}
+ };
+
+ void lock()
+ {
+ if(locked)
+ throw Mutex_State_Error("lock");
+ locked = true;
+ }
+
+ void unlock()
+ {
+ if(!locked)
+ throw Mutex_State_Error("unlock");
+ locked = false;
+ }
+
+ Noop_Mutex() { locked = false; }
+ private:
+ bool locked;
+ };
+
+ return new Noop_Mutex;
+ }
+
+}