Add utils function to format current time as a string
[lttng-tools.git] / src / common / utils.c
index d0f050c0ff14d12e79f4f36d2e7adddb807e341d..cfb6555a1d65fc061eb20c2c69326a91175f97ec 100644 (file)
@@ -597,3 +597,30 @@ char *utils_get_home_dir(void)
        }
        return getenv(DEFAULT_LTTNG_FALLBACK_HOME_ENV_VAR);
 }
+
+/*
+ * With the given format, fill dst with the time of len maximum siz.
+ *
+ * Return amount of bytes set in the buffer or else 0 on error.
+ */
+LTTNG_HIDDEN
+size_t utils_get_current_time_str(const char *format, char *dst, size_t len)
+{
+       size_t ret;
+       time_t rawtime;
+       struct tm *timeinfo;
+
+       assert(format);
+       assert(dst);
+
+       /* Get date and time for session path */
+       time(&rawtime);
+       timeinfo = localtime(&rawtime);
+       ret = strftime(dst, len, format, timeinfo);
+       if (ret == 0) {
+               ERR("Unable to strftime with format %s at dst %p of len %lu", format,
+                               dst, len);
+       }
+
+       return ret;
+}
This page took 0.025002 seconds and 5 git commands to generate.