aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/helpers/Time.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/helpers/Time.cpp')
-rw-r--r--src/libdash/source/helpers/Time.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/libdash/source/helpers/Time.cpp b/src/libdash/source/helpers/Time.cpp
new file mode 100644
index 00000000..e6ca2b81
--- /dev/null
+++ b/src/libdash/source/helpers/Time.cpp
@@ -0,0 +1,33 @@
+/*
+ * Time.cpp
+ *****************************************************************************
+ * Copyright (C) 2013, bitmovin Softwareentwicklung OG, All Rights Reserved
+ *
+ * Email: libdash-dev@vicky.bitmovin.net
+ *
+ * This source code and its use and distribution, is subject to the terms
+ * and conditions of the applicable license agreement.
+ *****************************************************************************/
+
+#include "Time.h"
+
+using namespace dash::helpers;
+
+uint32_t Time::GetCurrentUTCTimeInSec ()
+{
+ return mktime(Time::GetCurrentUTCTime());
+}
+std::string Time::GetCurrentUTCTimeStr ()
+{
+ char timeString[30];
+ strftime(timeString, 30, "%Y-%m-%dT%H:%M:%SZ", Time::GetCurrentUTCTime());
+
+ return std::string(timeString);
+}
+struct tm* Time::GetCurrentUTCTime ()
+{
+ time_t rawTime;
+
+ time(&rawTime);
+ return gmtime(&rawTime);
+}