summaryrefslogtreecommitdiff
path: root/src/uuid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uuid.cpp')
-rw-r--r--src/uuid.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/uuid.cpp b/src/uuid.cpp
new file mode 100644
index 0000000..e1f044a
--- /dev/null
+++ b/src/uuid.cpp
@@ -0,0 +1,31 @@
+#include <erebos/uuid.h>
+
+#include <stdexcept>
+
+using namespace erebos;
+
+using std::runtime_error;
+using std::string;
+
+UUID::UUID(string str)
+{
+ if (uuid_parse(str.c_str(), uuid) != 0)
+ throw runtime_error("invalid UUID");
+}
+
+UUID::operator string() const
+{
+ string str(UUID_STR_LEN - 1, '\0');
+ uuid_unparse_lower(uuid, str.data());
+ return str;
+}
+
+bool UUID::operator==(const UUID & other) const
+{
+ return std::equal(std::begin(uuid), std::end(uuid), std::begin(other.uuid));
+}
+
+bool UUID::operator!=(const UUID & other) const
+{
+ return !(*this == other);
+}