#include "time.h" #include "util.h" #define SECONDS_PER_DAY 86400 #define SECONDS_PER_HOUR 3600 #define SECONDS_PER_MINUTE 60 time_t time_get_weekly_seed(void) { time_t now = time(NULL); struct tm *tm; tm = localtime(&now); // Zero out the hour and minutes to 00:00:01 now -= tm->tm_hour * SECONDS_PER_HOUR; now -= tm->tm_min * SECONDS_PER_MINUTE; now -= tm->tm_sec; now += 1; // Reverse time back to last monday unsigned int dayOfWeek = tm->tm_wday; now -= (dayOfWeek == 0 ? 6 : dayOfWeek - 1) * SECONDS_PER_DAY; return now; } // Example: 190225_weekly char * time_get_weekly_lb_name(void) { time_t seed = time_get_weekly_seed(); struct tm *tm = localtime(&seed); char *name = ec_malloc(sizeof(char) * 15); m_sprintf(name, 15, "%u%.2u%.2u_weekly", tm->tm_year % 100, tm->tm_mon + 1, tm->tm_mday ); return name; }