forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
date.h
186 lines (157 loc) · 6.74 KB
/
date.h
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
/**
* @file
*
* @brief Header for date plugin
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#ifndef ELEKTRA_PLUGIN_DATE_H
#define ELEKTRA_PLUGIN_DATE_H
#include <kdbplugin.h>
int elektraDateGet (Plugin * handle, KeySet * ks, Key * parentKey);
int elektraDateSet (Plugin * handle, KeySet * ks, Key * parentKey);
Plugin * ELEKTRA_PLUGIN_EXPORT;
/*
*
* RFC822
*
*/
const char * const rfc822strings[] = { "%a, %d %b %y %T %z", "%d %b %y %T %z", "%a, %d %b %y %H:%M %z", "%d %b %y %H:%M %z", NULL };
/*
*
* RFC2822 format strings derived from the specification
*
*/
const char * const rfc2822strings[] = { "%a, %d %b %Y %T %z", "%d %b %Y %T %z", "%a, %d %b %Y %H:%M %z", "%d %b %Y %H:%M %z", NULL };
/*
*
* ISO8601 DATA
*
*/
typedef enum
{
END = 0,
COMPLETE = (1 << 4),
REDUCED = (2 << 4),
TRUNCATED = (4 << 4),
} REP;
typedef struct
{
REP rep;
const char * basic;
const char * extended;
} RepStruct;
const RepStruct iso8601calendardate[] = {
{ .rep = COMPLETE, .basic = "%Y%m%d", .extended = "%F" },
{ .rep = REDUCED, .basic = "%Y-%m", .extended = NULL },
{ .rep = REDUCED, .basic = "%Y", .extended = NULL },
{ .rep = REDUCED, .basic = "%C", .extended = NULL },
{ .rep = TRUNCATED, .basic = "%y%m%d", .extended = "%y-%m-%d" },
{ .rep = TRUNCATED, .basic = "-%y%m", .extended = "-%y-%m" },
{ .rep = TRUNCATED, .basic = "-%y", .extended = NULL },
{ .rep = TRUNCATED, .basic = "--%m%d", .extended = "--%m-%d" },
{ .rep = TRUNCATED, .basic = "--%m", .extended = NULL },
{ .rep = TRUNCATED, .basic = "---%d", .extended = NULL },
{ .rep = END, .basic = NULL, .extended = NULL },
};
const RepStruct iso8601ordinaldate[] = {
{ .rep = COMPLETE, .basic = "%Y%j", .extended = "%Y-%j" },
{ .rep = TRUNCATED, .basic = "%y%j", .extended = "%y-%j" },
{ .rep = TRUNCATED, .basic = "-%j", .extended = NULL },
{ .rep = END, .basic = NULL, .extended = NULL },
};
const RepStruct iso8601weekdate[] = {
{ .rep = COMPLETE, .basic = "%GW%V%u", .extended = "%G-W%V-%u" },
{ .rep = REDUCED, .basic = "%GW%V", .extended = "%G-W%V" },
{ .rep = TRUNCATED, .basic = "%gW%V%u", .extended = "%g-W%V-%u" },
{ .rep = TRUNCATED, .basic = "%gW%V", .extended = "%g-W%V" },
{ .rep = TRUNCATED, .basic = "-%1CW%V%u", .extended = "-%1C-W%V-%u" },
{ .rep = TRUNCATED, .basic = "-W%V%u", .extended = "-%W%V-%u" },
{ .rep = TRUNCATED, .basic = "-W%V", .extended = NULL },
{ .rep = TRUNCATED, .basic = "-W-%u", .extended = NULL },
{ .rep = TRUNCATED, .basic = "---%u", .extended = NULL },
{ .rep = END, .basic = NULL, .extended = NULL },
};
const RepStruct iso8601timeofday[] = {
{ .rep = COMPLETE, .basic = "%H%M%S", .extended = "%T" }, { .rep = COMPLETE, .basic = "%H%M%S,%Y", .extended = "%T,%Y" },
{ .rep = REDUCED, .basic = "%H%M", .extended = "%R" }, { .rep = REDUCED, .basic = "%H", .extended = NULL },
{ .rep = REDUCED, .basic = "%H%M,%Y", .extended = "%R,%Y" }, { .rep = REDUCED, .basic = "%H,%Y", .extended = NULL },
{ .rep = TRUNCATED, .basic = "-%M%S", .extended = "-%M:%S" }, { .rep = TRUNCATED, .basic = "-%M", .extended = NULL },
{ .rep = TRUNCATED, .basic = "--%S", .extended = NULL }, { .rep = TRUNCATED, .basic = "%H,%Y", .extended = NULL },
{ .rep = TRUNCATED, .basic = "-%M,%Y", .extended = NULL }, { .rep = TRUNCATED, .basic = "-%M%S,%Y", .extended = "-%M:%S,%Y" },
{ .rep = TRUNCATED, .basic = "-%S,%Y", .extended = NULL }, { .rep = END, .basic = NULL, .extended = NULL },
};
const RepStruct iso8601UTC[] = {
{ .rep = COMPLETE, .basic = "%H%M%S%Z", .extended = "%T%Z" },
{ .rep = COMPLETE, .basic = "%H%M%S%z", .extended = "%T%z" },
{ .rep = REDUCED, .basic = "%H%M%Z", .extended = "%R%Z" },
{ .rep = REDUCED, .basic = "%H%M%z", .extended = "%R%z" },
{ .rep = REDUCED, .basic = "%H%Z", .extended = NULL },
{ .rep = REDUCED, .basic = "%H%z", .extended = NULL },
{ .rep = END, .basic = NULL, .extended = NULL },
};
typedef enum
{
NA = 0,
CALENDAR = 1,
ORDINAL = 2,
WEEK = 3,
TIMEOFDAY = 4,
UTC = 5,
DATE = 6,
TIME = 7,
DATETIME = 8, // Date/Time combined
TYPEMASK = 8 | 4 | 2 | 1, // mask to split type from representation options
CMPLT = (1 << 4), // complete
RDCD = (2 << 4), // reduced
TRCT = (4 << 4), // truncated
REPMASK = 64 | 32 | 16 | TYPEMASK, // split representation options
BASIC = (1 << 7), // basic representation
EXTD = (2 << 7), // extended representation
OMITT = (4 << 7),
} ISOType;
typedef struct
{
REP dateRep;
ISOType date;
REP timeRep;
ISOType time;
} CRepStruct; // Combined
// Complete representation
// either both date + time basic or both extended
// date/time separator: 'T'
const CRepStruct iso8601CombinedComplete[] = {
{ .dateRep = COMPLETE, .date = CALENDAR, .timeRep = COMPLETE, .time = TIMEOFDAY },
{ .dateRep = COMPLETE, .date = CALENDAR, .timeRep = COMPLETE, .time = UTC },
{ .dateRep = COMPLETE, .date = ORDINAL, .timeRep = COMPLETE, .time = TIMEOFDAY },
{ .dateRep = COMPLETE, .date = ORDINAL, .timeRep = COMPLETE, .time = UTC },
{ .dateRep = COMPLETE, .date = WEEK, .timeRep = COMPLETE, .time = TIMEOFDAY },
{ .dateRep = COMPLETE, .date = WEEK, .timeRep = COMPLETE, .time = UTC },
{ .dateRep = COMPLETE, .date = CALENDAR, .timeRep = REDUCED, .time = TIMEOFDAY },
{ .dateRep = COMPLETE, .date = CALENDAR, .timeRep = REDUCED, .time = UTC },
{ .dateRep = COMPLETE, .date = ORDINAL, .timeRep = REDUCED, .time = TIMEOFDAY },
{ .dateRep = COMPLETE, .date = ORDINAL, .timeRep = REDUCED, .time = UTC },
{ .dateRep = COMPLETE, .date = WEEK, .timeRep = REDUCED, .time = TIMEOFDAY },
{ .dateRep = COMPLETE, .date = WEEK, .timeRep = REDUCED, .time = UTC },
{ .dateRep = END, .date = NA, .timeRep = END, .time = NA },
};
// representations other than complete
// date truncated, time complete or reduced
// TODO: rule c.
const CRepStruct iso8601CombinedOther[] = {
{ .dateRep = TRUNCATED, .date = CALENDAR, .timeRep = COMPLETE, .time = TIMEOFDAY },
{ .dateRep = TRUNCATED, .date = CALENDAR, .timeRep = COMPLETE, .time = UTC },
{ .dateRep = TRUNCATED, .date = ORDINAL, .timeRep = COMPLETE, .time = TIMEOFDAY },
{ .dateRep = TRUNCATED, .date = ORDINAL, .timeRep = COMPLETE, .time = UTC },
{ .dateRep = TRUNCATED, .date = WEEK, .timeRep = COMPLETE, .time = TIMEOFDAY },
{ .dateRep = TRUNCATED, .date = WEEK, .timeRep = COMPLETE, .time = UTC },
{ .dateRep = TRUNCATED, .date = CALENDAR, .timeRep = REDUCED, .time = TIMEOFDAY },
{ .dateRep = TRUNCATED, .date = CALENDAR, .timeRep = REDUCED, .time = UTC },
{ .dateRep = TRUNCATED, .date = ORDINAL, .timeRep = REDUCED, .time = TIMEOFDAY },
{ .dateRep = TRUNCATED, .date = ORDINAL, .timeRep = REDUCED, .time = UTC },
{ .dateRep = TRUNCATED, .date = WEEK, .timeRep = REDUCED, .time = TIMEOFDAY },
{ .dateRep = TRUNCATED, .date = WEEK, .timeRep = REDUCED, .time = UTC },
{ .dateRep = END, .date = NA, .timeRep = END, .time = NA },
};
#endif