aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/timeutil.c
blob: c27a8dbd45e6e3e38d8bc9939db153c2335e4b0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/* Miscellaneous time-related utilities
 *
 * Copyright (C) 1998 The Free Software Foundation
 *
 * Authors: Federico Mena <federico@nuclecu.unam.mx>
 *          Miguel de Icaza <miguel@nuclecu.unam.mx>
 */

#include <libgnome/libgnome.h>
#include "timeutil.h"

#define digit_at(x,y) (x [y] - '0')
    
time_t
time_from_isodate (char *str)
{
    struct tm my_tm;
    time_t t;

    my_tm.tm_year = (digit_at (str, 0) * 1000 + digit_at (str, 1) * 100 +
        digit_at (str, 2) * 10 + digit_at (str, 3)) - 1900;

    my_tm.tm_mon  = digit_at (str, 4) * 10 + digit_at (str, 5) - 1;
    my_tm.tm_mday = digit_at (str, 6) * 10 + digit_at (str, 7);
    my_tm.tm_hour = digit_at (str, 9) * 10 + digit_at (str, 10);
    my_tm.tm_min  = digit_at (str, 11) * 10 + digit_at (str, 12);
    my_tm.tm_sec  = digit_at (str, 13) * 10 + digit_at (str, 14);
    my_tm.tm_isdst = -1;
    
    t = mktime (&my_tm);
    return t;
}

void
print_time_t (time_t t)
{
    struct tm *tm = localtime (&t);
    
    printf ("TIEMPO: %d/%d/%d %d:%d:%d\n",
        tm->tm_mon+1, tm->tm_mday, tm->tm_year,
        tm->tm_hour, tm->tm_min, tm->tm_sec);
}

int
get_time_t_hour (time_t t)
{
    struct tm *tm;

    tm = localtime (&t);
    return tm->tm_hour;
}

char *
isodate_from_time_t (time_t t)
{
    struct tm *tm;
    static char isotime [40];

    tm = localtime (&t);
    strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%S", tm);
    return isotime;
}

time_t
time_from_start_duration (time_t start, char *duration)
{
    printf ("Not yet implemented\n");
    return 0;
}

char *
format_simple_hour (int hour, int use_am_pm)
{
    static char buf[256];

    /* I don't know whether this is the best way to internationalize it.
     * Does any language use different conventions? - Federico
     */

    if (use_am_pm)
        sprintf (buf, "%d%s",
             (hour == 0) ? 12 : (hour > 12) ? (hour - 12) : hour,
             (hour < 12) ? _("am") : _("pm"));
    else
        sprintf (buf, "%02d%s", hour, _("h"));

    return buf;

}

time_t
time_add_day (time_t time, int days)
{
    struct tm *tm = localtime (&time);
    time_t new_time;

    tm->tm_mday += days;
    if ((new_time = mktime (tm)) == -1){
        g_warning ("mktime could not handling adding a day with\n");
        print_time_t (time);
        return time;
    }
    return new_time;
}

time_t
time_add_minutes (time_t time, int minutes)
{
    struct tm *tm = localtime (&time);
    time_t new_time;

    tm->tm_min += minutes;
    if ((new_time = mktime (tm)) == -1){
        g_warning ("mktime could not handling adding a day with\n");
        print_time_t (time);
        return time;
    }
    return new_time;
}

time_t
time_add_year (time_t time, int years)
{
    struct tm *tm = localtime (&time);
    time_t new_time;
    
    tm->tm_year += years;
    if ((new_time = mktime (tm)) == -1){
        g_warning ("mktime could not handling adding a year with\n");
        print_time_t (time);
        return time;
    }
    return new_time;
}

time_t
time_day_hour (time_t t, int hour)
{
    struct tm tm;
    
    tm = *localtime (&t);
    tm.tm_hour = hour;
    tm.tm_min  = 0;
    tm.tm_sec  = 0;

    return mktime (&tm);
}


time_t
time_from_day (int year, int month, int day)
{
    struct tm tm;

    memset (&tm, 0, sizeof (tm));
    tm.tm_year = year - 1900;
    tm.tm_mon = month;
    tm.tm_mday = day;

    return mktime (&tm);
}

time_t
time_start_of_day (time_t t)
{
    struct tm tm;
    
    tm = *localtime (&t);
    tm.tm_hour = 0;
    tm.tm_min  = 0;
    tm.tm_sec  = 0;

    return mktime (&tm);
}

time_t
time_end_of_day (time_t t)
{
    struct tm tm;
    
    tm = *localtime (&t);
    tm.tm_hour = 0;
    tm.tm_min  = 0;
    tm.tm_sec  = 0;
    tm.tm_mday++;
    
    return mktime (&tm);
}

time_t
time_year_begin (int year)
{
    struct tm tm;
    time_t retval;
    
    tm.tm_hour = 0;
    tm.tm_min  = 0;
    tm.tm_sec  = 0;
    tm.tm_year = year;
    tm.tm_mon  = 0;
    tm.tm_mday = 1;
    tm.tm_isdst = -1;
    
    retval = mktime (&tm);
    return retval;
}

time_t
time_year_end (int year)
{
    struct tm tm;
    
    tm.tm_hour = 23;
    tm.tm_min  = 59;
    tm.tm_sec  = 59;
    tm.tm_year = year;
    tm.tm_mon  = 11;
    tm.tm_mday = 31;
    tm.tm_isdst = -1;
    
    return mktime (&tm);
}

time_t
time_week_begin   (time_t t)
{
    struct tm tm;

    tm = *localtime (&t);
    tm.tm_mday -= tm.tm_wday;
    return mktime (&tm);
}

static char *
pcat (char *dest, int num, char key)
{
    int c;

    c = sprintf (dest, "%d%c", num, key);
    return dest + c;
}

/* Converts secs into the ISO difftime representation */
char *
isodiff_from_secs (int secs)
{
    static char buffer [60], *p;
    int years, months, weeks, days, hours, minutes;
    
    years = months = weeks = days = hours = minutes = 0;
    
    years    = secs / (365 * 86400);
    secs    %= (365 * 86400);
    months   = secs / (30 * 86400);
    secs    %= (30 * 86400);
    weeks    = secs / (7 * 86400);
    secs    %= (7 * 86400);
    days     = secs / 86400;
    secs    %= 86400;
    hours    = secs / 3600;
    secs    %= 3600;
    minutes  = secs / 60;
    secs    %= 60;

    strcpy (buffer, "P");
    p = buffer + 1;
    if (years)
        p = pcat (p, years, 'Y');
    if (months)
        p = pcat (p, months, 'M');
    if (weeks)
        p = pcat (p, weeks, 'W');
    if (days)
        p = pcat (p, days, 'D');
    if (hours || minutes || secs){
        *p++ = 'T';
        if (hours)
            p = pcat (p, hours, 'H');
        if (minutes)
            p = pcat (p, minutes, 'M');
        if (secs)
            p = pcat (p, secs, 'S');
    }
    
    return buffer;
}

int
isodiff_to_secs (char *str)
{
    int value, time;
    int years, months, weeks, days, hours, minutes, seconds;

    value = years = months = weeks = days = hours = minutes = time = seconds = 0;
    if (*str != 'P')
        return 0;

    str++;
    while (*str){
        switch (*str){
        case '0': case '1': case '2': case '3': case '4':
        case '5': case '6': case '7': case '8': case '9':
            value = value * 10 + (*str - '0');
            break;
        case 'Y':
            years = value; value = 0;
            break;
        case 'M':
            if (time)
                minutes = value;
            else
                months = value;
            value = 0;
            break;
        case 'W':
            weeks = value; value = 0;
            break;
        case 'D':
            days = value; value = 0;
            break;
        case 'T':
            value = 0; time = 1;
            break;
        case 'H':
            hours = value; value = 0;
            break;
        case 'S':
            seconds = value; value = 0;
            break;
        }
        str++;
    }
    return seconds + (minutes * 60) + (hours * 3600) +
           (days * 86400) + (weeks * 7 * 86400) +
           (months * 30 * 86400) + (years * 365 * 86400);
}