Coverage Report

Created: 2025-11-24 06:10

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/open62541/deps/libc_time.c
Line
Count
Source
1
/* Originally released by the musl project (http://www.musl-libc.org/) under the
2
 * MIT license. Taken from the file /src/time/__secs_to_tm.c */
3
4
#include <limits.h>
5
#include "libc_time.h"
6
7
/* 2000-03-01 (mod 400 year, immediately after feb29 */
8
18.4k
#define LEAPOCH (946684800LL + 86400*(31+29))
9
10
49.1k
#define DAYS_PER_400Y (365*400 + 97)
11
36.9k
#define DAYS_PER_100Y (365*100 + 24)
12
36.9k
#define DAYS_PER_4Y   (365*4   + 1)
13
14
int
15
18.4k
musl_secs_to_tm(long long t, struct musl_tm *tm) {
16
18.4k
    long long days, secs, years;
17
18.4k
    int remdays, remsecs, remyears;
18
18.4k
    int qc_cycles, c_cycles, q_cycles;
19
18.4k
    int months;
20
18.4k
    int wday, yday, leap;
21
18.4k
    static const char days_in_month[] = {31,30,31,30,31,31,30,31,30,31,31,29};
22
23
    /* Reject time_t values whose year would overflow int */
24
18.4k
    if (t < INT_MIN * 31622400LL || t > INT_MAX * 31622400LL)
25
0
        return -1;
26
27
18.4k
    secs = t - LEAPOCH;
28
18.4k
    days = secs / 86400LL;
29
18.4k
    remsecs = (int)(secs % 86400);
30
18.4k
    if (remsecs < 0) {
31
8.47k
        remsecs += 86400;
32
8.47k
        --days;
33
8.47k
    }
34
35
18.4k
    wday = (int)((3+days)%7);
36
18.4k
    if (wday < 0) wday += 7;
37
38
18.4k
    qc_cycles = (int)(days / DAYS_PER_400Y);
39
18.4k
    remdays = (int)(days % DAYS_PER_400Y);
40
18.4k
    if (remdays < 0) {
41
12.2k
        remdays += DAYS_PER_400Y;
42
12.2k
        --qc_cycles;
43
12.2k
    }
44
45
18.4k
    c_cycles = remdays / DAYS_PER_100Y;
46
18.4k
    if (c_cycles == 4) --c_cycles;
47
18.4k
    remdays -= c_cycles * DAYS_PER_100Y;
48
49
18.4k
    q_cycles = remdays / DAYS_PER_4Y;
50
18.4k
    if (q_cycles == 25) --q_cycles;
51
18.4k
    remdays -= q_cycles * DAYS_PER_4Y;
52
53
18.4k
    remyears = remdays / 365;
54
18.4k
    if (remyears == 4) --remyears;
55
18.4k
    remdays -= remyears * 365;
56
57
18.4k
    leap = !remyears && (q_cycles || !c_cycles);
58
18.4k
    yday = remdays + 31 + 28 + leap;
59
18.4k
    if (yday >= 365+leap) yday -= 365+leap;
60
61
18.4k
    years = remyears + 4*q_cycles + 100*c_cycles + 400LL*qc_cycles;
62
63
180k
    for (months=0; days_in_month[months] <= remdays; months++)
64
161k
        remdays -= days_in_month[months];
65
66
18.4k
    if (months >= 10) {
67
12.2k
        months -= 12;
68
12.2k
        years++;
69
12.2k
    }
70
71
18.4k
    if (years+100 > INT_MAX || years+100 < INT_MIN)
72
0
        return -1;
73
74
18.4k
    tm->tm_year = (int)(years + 100);
75
18.4k
    tm->tm_mon = months + 2;
76
18.4k
    tm->tm_mday = remdays + 1;
77
18.4k
    tm->tm_wday = wday;
78
18.4k
    tm->tm_yday = yday;
79
80
18.4k
    tm->tm_hour = remsecs / 3600;
81
18.4k
    tm->tm_min = remsecs / 60 % 60;
82
18.4k
    tm->tm_sec = remsecs % 60;
83
84
18.4k
    return 0;
85
18.4k
}
86
87
static const int secs_through_month[] =
88
    {0, 31*86400, 59*86400, 90*86400,
89
     120*86400, 151*86400, 181*86400, 212*86400,
90
     243*86400, 273*86400, 304*86400, 334*86400 };
91
92
static int
93
17.3k
musl_month_to_secs(int month, int is_leap) {
94
17.3k
    int t = secs_through_month[month];
95
17.3k
    if (is_leap && month >= 2)
96
2.83k
        t+=86400;
97
17.3k
    return t;
98
17.3k
}
99
100
static long long
101
17.3k
musl_year_to_secs(const long long year, int *is_leap) {
102
17.3k
    if (year-2ULL <= 136) {
103
1.64k
        int y = (int)year;
104
1.64k
        int leaps = (y-68)>>2;
105
1.64k
        if (!((y-68)&3)) {
106
427
            leaps--;
107
427
            if (is_leap) *is_leap = 1;
108
1.21k
        } else if (is_leap) *is_leap = 0;
109
1.64k
        return 31536000*(y-70) + 86400*leaps;
110
1.64k
    }
111
112
15.6k
    int cycles, centuries, leaps, rem, dummy;
113
114
15.6k
    if (!is_leap) is_leap = &dummy;
115
15.6k
    cycles = (int)((year-100) / 400);
116
15.6k
    rem = (int)((year-100) % 400);
117
15.6k
    if (rem < 0) {
118
9.31k
        cycles--;
119
9.31k
        rem += 400;
120
9.31k
    }
121
15.6k
    if (!rem) {
122
1.87k
        *is_leap = 1;
123
1.87k
        centuries = 0;
124
1.87k
        leaps = 0;
125
13.8k
    } else {
126
13.8k
        if (rem >= 200) {
127
4.21k
            if (rem >= 300) centuries = 3, rem -= 300;
128
2.75k
            else centuries = 2, rem -= 200;
129
9.59k
        } else {
130
9.59k
            if (rem >= 100) centuries = 1, rem -= 100;
131
7.40k
            else centuries = 0;
132
9.59k
        }
133
13.8k
        if (!rem) {
134
966
            *is_leap = 0;
135
966
            leaps = 0;
136
12.8k
        } else {
137
12.8k
            leaps = rem / 4;
138
12.8k
            rem %= 4;
139
12.8k
            *is_leap = !rem;
140
12.8k
        }
141
13.8k
    }
142
143
15.6k
    leaps += 97*cycles + 24*centuries - *is_leap;
144
145
15.6k
    return (year-100) * 31536000LL + leaps * 86400LL + 946684800 + 86400;
146
17.3k
}
147
148
long long
149
17.3k
musl_tm_to_secs(const struct musl_tm *tm) {
150
17.3k
    int is_leap;
151
17.3k
    long long year = tm->tm_year;
152
17.3k
    int month = tm->tm_mon;
153
17.3k
    if (month >= 12 || month < 0) {
154
5.72k
        int adj = month / 12;
155
5.72k
        month %= 12;
156
5.72k
        if (month < 0) {
157
1.54k
            adj--;
158
1.54k
            month += 12;
159
1.54k
        }
160
5.72k
        year += adj;
161
5.72k
    }
162
17.3k
    long long t = musl_year_to_secs(year, &is_leap);
163
17.3k
    t += musl_month_to_secs(month, is_leap);
164
17.3k
    t += 86400LL * (tm->tm_mday-1);
165
17.3k
    t += 3600LL * tm->tm_hour;
166
17.3k
    t += 60LL * tm->tm_min;
167
17.3k
    t += tm->tm_sec;
168
17.3k
    return t;
169
17.3k
}