在Windows和GNU / Linux上c mktime是不同的?

时间:2011-06-24 12:32:31

标签: c windows linux dst mktime

以下代码:

    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <time.h>
    #include <sys/time.h>

    static const char * wday_abb_names[] =
    {
        "Mon",
        "Tue",
        "Wed",
        "Thu",
        "Fri",
        "Sat",
        "Sun",
    };

    static void mb_setenv(const char *name, const char *value)
    {
    #if !(defined _WIN32) || defined HAVE_SETENV
        setenv(name, value, 1);
    #else
        int len = strlen(name)+1+strlen(value)+1;
        char *str = malloc(len);
        sprintf(str, "%s=%s", name, value);
        putenv(str);
    #endif
    }

    static void mb_unsetenv(const char *name)
    {
    #if !(defined _WIN32) || defined HAVE_SETENV
        unsetenv(name);
    #else
        int len = strlen(name)+2;
        char *str = malloc(len);
        sprintf(str, "%s=", name);
        putenv(str);
                    free(str);
    #endif
    }

    time_t mb_timegm(struct tm *tm)
    {
        time_t ret;
        char *tz;

        tz = getenv("TZ");
        mb_setenv("TZ", "");
        tzset();
        ret = mktime(tm);
        if (tz)
        {
            mb_setenv("TZ", tz);
        }
        else
        {
            mb_unsetenv("TZ");
        }
        tzset();
        return ret;
    }

    time_t get_test_time()
    {
        struct tm msg_time;
        msg_time.tm_isdst = 0;
        msg_time.tm_wday = 4;
        msg_time.tm_mon = 5;
        msg_time.tm_mday = 16;
        msg_time.tm_hour = 4;
        msg_time.tm_min = 53;
        msg_time.tm_sec = 0;
        msg_time.tm_year = 111; //2011 - 1900
        time_t retval = mb_timegm(&msg_time);
        printf("final msg_time = %ld\n", retval);
        return retval;
    }

    void print_time(const char *msg, struct tm *t)
      {
        printf("%s %s, %02d.%02d.%2d %2d:%02d\n", msg,
               wday_abb_names[t->tm_wday],  t->tm_mday, t->tm_mon, t->tm_year,
               t->tm_hour, t->tm_min);
      }

    int main()
    {
        printf( "=== ENVIRON ===\n");
        printf("TZ = %s\n", getenv("TZ"));
        time_t now;
        struct tm l, g;
        time(&now);
        l = *localtime(&now);
        g = *gmtime(&now);

        print_time("Local time :", &l);
        print_time("utc        :", &g);
        printf("=== END ENVIRON ===\n\n");

        time_t tt = get_test_time();
        printf("fix test (16.6.2011 04:53) --> %s\n", ctime(&tt));

        printf("done.\n");
        return 0;
    }

在GNU / Linux上运行它产生:

=== ENVIRON ===
TZ = (null)
Local time : Sat, 24.05.111 14:20
utc        : Sat, 24.05.111 12:20
=== END ENVIRON ===

final msg_time = 1308199980
fix test (16.6.2011 04:53) --> Thu Jun 16 06:53:00 2011

done.

在Win7上运行它会产生:

=== ENVIRON ===
TZ = (null)
Local time : Sat, 24.05.111 14:25
utc        : Sat, 24.05.111 12:25
=== END ENVIRON ===

final msg_time = 1308196380
fix test (16.6.2011 04:53) --> Thu Jun 16 05:53:00 2011

done.

两个系统都有UTC + 1的时区,包括DST(使UTC + 2生效),两个系统都没有任何时间问题 - 除了显示的差异。

正如您所看到的,“最终msg_time”正好缺少3600秒,因此在ctime中不是问题。

有人可以向我解释为什么mktime似乎在GNU / Linux和Windows上表现不同 - 或者如何纠正?

修改
两个系统(在调用tzset()之后)报告tzname [0] = CET,tzname [1] = CEST,daylight = 1,timezone = -3600

2 个答案:

答案 0 :(得分:4)

我的mb_timegm基于man 3 timegm中所述的代码,并表示 "set the TZ environment variable to UTC"要执行此操作setenv("TZ", "");

然而 - 这在Windows上不起作用。

使用setenv("TZ", "UTC");(或者,在上面的情况下使用mb_setenv)来修复问题。

答案 1 :(得分:2)

我假设根据您提供的夏令时有效的信息,您需要将msg_time.tm_isdst中的get_test_time()设置为值1,而不是{ {1}}。这可能是导致缺失时间的问题。或者,或者您可以将其设置为0,并允许系统尝试确定您是否处于夏令时,或者不是给定的输入值。