forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime_rec.h
193 lines (160 loc) · 3.89 KB
/
time_rec.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
187
188
189
190
191
192
/*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* History:
* -------
* 2003-06-24: file imported from tmrec (bogdan)
* 2003-xx-xx: file Created (daniel)
*/
#ifndef _TIME_REC_H_
#define _TIME_REC_H_
/************************ imported from "ac_tm.h" ***************************/
#include <time.h>
/* USE_YWEEK_U -- Sunday system - see strftime %U
* USE_YWEEK_V -- ISO 8601 - see strftime %V
* USE_YWEEK_W -- Monday system - see strftime %W
*/
#ifndef USE_YWEEK_U
# ifndef USE_YWEEK_V
# ifndef USE_YWEEK_W
# define USE_YWEEK_W
# endif
# endif
#endif
#define FREQ_NOFREQ 0
#define FREQ_YEARLY 1
#define FREQ_MONTHLY 2
#define FREQ_WEEKLY 3
#define FREQ_DAILY 4
#define WDAY_SU 0
#define WDAY_MO 1
#define WDAY_TU 2
#define WDAY_WE 3
#define WDAY_TH 4
#define WDAY_FR 5
#define WDAY_SA 6
#define WDAY_NU 7
#define TSW_TSET 1
#define TSW_RSET 2
#define SHM_ALLOC 0
#define PKG_ALLOC 1
#define is_leap_year(yyyy) ((((yyyy)%400))?(((yyyy)%100)?(((yyyy)%4)?0:1):0):1)
#define TR_SEPARATOR '|'
#define load_TR_value( _p,_s, _tr, _func, _err, _done) \
do{ \
_s = strchr(_p, (int)TR_SEPARATOR); \
if (_s) \
*_s = 0; \
/* LM_DBG("----parsing tr param <%s>\n",_p); \ */\
if(_s != _p) {\
if( _func( _tr, _p)) {\
LM_DBG("func error\n"); \
if (_s) *_s = TR_SEPARATOR; \
goto _err; \
} \
} \
if (_s) { \
*_s = TR_SEPARATOR; \
_p = _s+1;\
if ( *(_p)==0 ) \
goto _done; \
} else {\
goto _done; \
}\
} while(0)
typedef struct _ac_maxval
{
int yweek;
int yday;
int ywday;
int mweek;
int mday;
int mwday;
} ac_maxval_t, *ac_maxval_p;
typedef struct _ac_tm
{
time_t time;
struct tm t;
int mweek;
int yweek;
int ywday;
int mwday;
char flags;
} ac_tm_t, *ac_tm_p;
typedef struct _tr_byxxx
{
int nr;
int *xxx;
int *req;
char flags;
} tr_byxxx_t, *tr_byxxx_p;
typedef struct _tmrec
{
time_t dtstart;
struct tm ts;
time_t dtend;
time_t duration;
time_t until;
int freq;
int interval;
tr_byxxx_p byday;
tr_byxxx_p bymday;
tr_byxxx_p byyday;
tr_byxxx_p bymonth;
tr_byxxx_p byweekno;
int wkst;
char flags;
} tmrec_t, *tmrec_p;
typedef struct _tr_res
{
int flag;
time_t rest;
} tr_res_t, *tr_res_p;
int ac_tm_set_time(ac_tm_p, time_t);
int ac_tm_reset(ac_tm_p);
int ac_get_mweek(struct tm*);
int ac_get_yweek(struct tm*);
int ac_get_wkst();
int ac_print(ac_tm_p);
tr_byxxx_p tr_byxxx_new(char);
int tr_byxxx_init(tr_byxxx_p, int);
int tr_byxxx_free(tr_byxxx_p);
tmrec_p tmrec_new(char);
int tmrec_free(tmrec_p);
int tr_parse_dtstart(tmrec_p, char*);
int tr_parse_dtend(tmrec_p, char*);
int tr_parse_duration(tmrec_p, char*);
int tr_parse_until(tmrec_p, char*);
int tr_parse_freq(tmrec_p, char*);
int tr_parse_interval(tmrec_p, char*);
int tr_parse_byday(tmrec_p, char*);
int tr_parse_bymday(tmrec_p, char*);
int tr_parse_byyday(tmrec_p, char*);
int tr_parse_bymonth(tmrec_p, char*);
int tr_parse_byweekno(tmrec_p, char*);
int tr_parse_wkst(tmrec_p, char*);
int tr_print(tmrec_p);
time_t ic_parse_datetime(char*,struct tm*);
time_t ic_parse_duration(char*);
tr_byxxx_p ic_parse_byday(char*, char);
tr_byxxx_p ic_parse_byxxx(char*, char);
int ic_parse_wkst(char*);
int check_tmrec(tmrec_p, ac_tm_p, tr_res_p);
#endif