Add a time_to_iso8601_str() utility
[lttng-tools.git] / src / common / time.c
index a01c16df5c44f024c00469beeaa014542c658c9f..885f58cb175bf4a2336cf957047abcc339642c15 100644 (file)
@@ -17,6 +17,7 @@
 
 #include <common/time.h>
 #include <common/macros.h>
+#include <common/error.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <limits.h>
@@ -80,3 +81,35 @@ void __attribute__((constructor)) init_locale_utf8_support(void)
                utf8_output_supported = true;
        }
 }
+
+LTTNG_HIDDEN
+int time_to_iso8601_str(time_t time, char *str, size_t len)
+{
+       int ret = 0;
+       struct tm *tm_result;
+       struct tm tm_storage;
+       size_t strf_ret;
+
+       if (len < ISO8601_STR_LEN) {
+               ERR("Buffer too short to format ISO 8601 timestamp: %zu bytes provided when at least %zu are needed",
+                               len, ISO8601_STR_LEN);
+               ret = -1;
+               goto end;
+       }
+
+        tm_result = localtime_r(&time, &tm_storage);
+       if (!tm_result) {
+               ret = -1;
+               PERROR("Failed to break down timestamp to tm structure");
+               goto end;
+       }
+
+       strf_ret = strftime(str, len, "%Y%m%dT%H%M%S%z", tm_result);
+       if (strf_ret == 0) {
+               ret = -1;
+               ERR("Failed to format timestamp as local time");
+               goto end;
+       }
+end:
+       return ret;
+}
This page took 0.023234 seconds and 4 git commands to generate.