Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get current hour unix timestamp

Tags:

c++

c

timestamp

I'd like to get the unix timestamp of the beginning of current (or any given maybe) hour in c/c++.

I have this:


    time_t get_current_hour() {
        time_t beginning_of_hour;
        struct tm * ptm;

        time(&beginning_of_hour);

        ptm = gmtime(&beginning_of_hour);
        ptm->tm_min = 0;
        ptm->tm_sec = 0;
        ptm->tm_zone = (char*) "GMT";

        beginning_of_hour = mktime(ptm);

        return beginning_of_hour;
    }

Which works, but under high load many of the result are not the beginning of the current hour but the actual time.

Is there a better way to solve the problem? Why does the function returns the current time?

Please advise, Akos

like image 323
Akos Avatar asked Feb 22 '23 12:02

Akos


2 Answers

You can do it all with time_t, without breaking it apart and rebuilding.
Just round it down to a multiple of 3600:

time_t get_current_hour(void) {
    time_t now;
    time(&now);
    return now - (now % 3600);
}

Perhaps it isn't nice to treat time_t as an integer. But I think it is guaranteed to be seconds since the epoch, so it should be fine.

like image 100
ugoren Avatar answered Mar 05 '23 09:03

ugoren


It could be that you have a multi-threaded application, and calls to gmtime are not thread-safe (re-entrant). If this is the case, try using the re-entrant version: gmtime_r

like image 28
Nim Avatar answered Mar 05 '23 10:03

Nim