Port: Add time.h compat for mingw
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 13 Sep 2016 21:39:44 +0000 (21:39 +0000)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 9 Jun 2017 20:58:15 +0000 (16:58 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/Makefile.am
include/babeltrace/compat/time-internal.h [new file with mode: 0644]
plugins/text/pretty/print.c
plugins/utils/trimmer/iterator.c

index bf0ca69cdb2c80173d2e4c94c92068bb1072dc2b..f00544c01f9d89be0f2cf2dc419e6514ee6b47a4 100644 (file)
@@ -86,6 +86,7 @@ noinst_HEADERS = \
        babeltrace/compat/stdio-internal.h \
        babeltrace/compat/stdlib-internal.h \
        babeltrace/compat/string-internal.h \
+       babeltrace/compat/time-internal.h \
        babeltrace/compat/unistd-internal.h \
        babeltrace/compat/utc-internal.h \
        babeltrace/compat/uuid-internal.h \
diff --git a/include/babeltrace/compat/time-internal.h b/include/babeltrace/compat/time-internal.h
new file mode 100644 (file)
index 0000000..c7ce44c
--- /dev/null
@@ -0,0 +1,100 @@
+#ifndef _BABELTRACE_INCLUDE_COMPAT_TIME_H
+#define _BABELTRACE_INCLUDE_COMPAT_TIME_H
+
+/*
+ * babeltrace/compat/time.h
+ *
+ * Copyright (C) 2013 JP Ikaheimonen <jp_ikaheimonen@mentor.com>
+ *               2016 Michael Jeanson <mjeanson@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+
+#include <time.h>
+#include <stdlib.h>
+
+#ifdef __MINGW32__
+
+#include <string.h>
+
+/*
+ * The Windows version of the time functions use one common tm structure per
+ * thread which makes them thread-safe. Implement the POSIX _r variants by
+ * copying this to a user supplied struct.
+ */
+
+static inline
+struct tm *bt_gmtime_r(const time_t *timep, struct tm *result)
+{
+       struct tm *local_res;
+
+       if (!result) {
+               goto error;
+       }
+
+       local_res = gmtime(timep);
+       if (!local_res) {
+               result = NULL;
+               goto error;
+       }
+
+       memcpy(result, local_res, sizeof(struct tm));
+
+error:
+       return result;
+}
+
+static inline
+struct tm *bt_localtime_r(const time_t *timep, struct tm *result)
+{
+       struct tm *local_res;
+
+       if (!result) {
+               goto error;
+       }
+
+       local_res = localtime(timep);
+       if (!local_res) {
+               result = NULL;
+               goto error;
+       }
+
+       memcpy(result, local_res, sizeof(struct tm));
+
+error:
+       return result;
+}
+
+#else /* __MINGW32__ */
+
+static inline
+struct tm *bt_gmtime_r(const time_t *timep, struct tm *result)
+{
+       return gmtime_r(timep, result);
+}
+
+static inline
+struct tm *bt_localtime_r(const time_t *timep, struct tm *result)
+{
+       return localtime_r(timep, result);
+}
+
+#endif /* __MINGW32__ */
+#endif /* _BABELTRACE_INCLUDE_COMPAT_TIME_H */
index 6cba7ce0997b116fea208f337cc140c50af7e01e..0545178efb48af6a2010d0cf8695f34efd165586 100644 (file)
@@ -40,6 +40,7 @@
 #include <babeltrace/graph/clock-class-priority-map.h>
 #include <babeltrace/bitfield-internal.h>
 #include <babeltrace/common-internal.h>
+#include <babeltrace/compat/time-internal.h>
 #include <inttypes.h>
 #include <ctype.h>
 #include "pretty.h"
@@ -201,7 +202,7 @@ void print_timestamp_wall(struct pretty_component *pretty,
                if (!pretty->options.clock_gmt) {
                        struct tm *res;
 
-                       res = localtime_r(&time_s, &tm);
+                       res = bt_localtime_r(&time_s, &tm);
                        if (!res) {
                                // TODO: log instead
                                fprintf(stderr, "[warning] Unable to get localtime.\n");
@@ -210,7 +211,7 @@ void print_timestamp_wall(struct pretty_component *pretty,
                } else {
                        struct tm *res;
 
-                       res = gmtime_r(&time_s, &tm);
+                       res = bt_gmtime_r(&time_s, &tm);
                        if (!res) {
                                // TODO: log instead
                                fprintf(stderr, "[warning] Unable to get gmtime.\n");
index dcff7ecaac8ee64a0fb7b8f780cb5658c2a67845..b726c695381d334614352c21d06b2c0ab240cf40 100644 (file)
@@ -26,6 +26,7 @@
  * SOFTWARE.
  */
 
+#include <babeltrace/compat/time-internal.h>
 #include <babeltrace/graph/notification-iterator.h>
 #include <babeltrace/graph/private-notification-iterator.h>
 #include <babeltrace/graph/notification.h>
@@ -150,8 +151,8 @@ int update_lazy_bound(struct trimmer_bound *bound, const char *name,
 
        if (bound->lazy_values.gmt) {
                /* Get day, month, year. */
-               if (!gmtime_r(&timeval, &tm)) {
-                       printf_error("Failure in gmtime_r()");
+               if (!bt_gmtime_r(&timeval, &tm)) {
+                       printf_error("Failure in bt_gmtime_r()");
                        goto error;
                }
                tm.tm_sec = bound->lazy_values.ss;
@@ -165,8 +166,8 @@ int update_lazy_bound(struct trimmer_bound *bound, const char *name,
                }
        } else {
                /* Get day, month, year. */
-               if (!localtime_r(&timeval, &tm)) {
-                       printf_error("Failure in localtime_r()");
+               if (!bt_localtime_r(&timeval, &tm)) {
+                       printf_error("Failure in bt_localtime_r()");
                        goto error;
                }
                tm.tm_sec = bound->lazy_values.ss;
This page took 0.028619 seconds and 4 git commands to generate.