~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSTime.cc

Added the PBMS daemon plugin.

(Augen zu und durch!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
 
2
 *
 
3
 * PrimeBase Media Stream for MySQL
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
18
 *
 
19
 * Original author: Paul McCullagh (H&G2JCtL)
 
20
 * Continued development: Barry Leslie
 
21
 *
 
22
 * 2007-05-20
 
23
 *
 
24
 *
 
25
 */
 
26
 
 
27
#include "CSConfig.h"
 
28
 
 
29
#include <string.h>
 
30
 
 
31
#ifdef OS_WINDOWS
 
32
#include <Windows.h>
 
33
#endif
 
34
 
 
35
#include "CSTime.h"
 
36
#include "CSGlobal.h"
 
37
#include "CSStrUtil.h"
 
38
 
 
39
CSTime::CSTime(s_int year, s_int mon, s_int day, s_int hour, s_int min, s_int sec, s_int nsec)
 
40
{
 
41
        setLocal(year, mon, day, hour, min, sec, nsec);
 
42
}
 
43
 
 
44
bool CSTime::isNull()
 
45
{
 
46
        return iIsNull;
 
47
}
 
48
 
 
49
void CSTime::setNull()
 
50
{
 
51
        iIsNull = true;
 
52
        iSeconds = 0;
 
53
        iNanoSeconds = 0;
 
54
}
 
55
 
 
56
void CSTime::setLocal(s_int year, s_int mon, s_int day, s_int hour, s_int min, s_int sec, s_int nsec)
 
57
{
 
58
        struct tm       ltime = { 0 };
 
59
        time_t          secs;
 
60
 
 
61
        ltime.tm_sec = sec;
 
62
        ltime.tm_min = min;
 
63
        ltime.tm_hour = hour;
 
64
        ltime.tm_mday = day;
 
65
        ltime.tm_mon = mon - 1;
 
66
        ltime.tm_year = year - 1900;
 
67
        secs = mktime(&ltime);
 
68
        setUTC1970(secs, nsec);
 
69
}
 
70
 
 
71
void CSTime::getLocal(s_int& year, s_int& mon, s_int& day, s_int& hour, s_int& min, s_int& sec, s_int& nsec)
 
72
{
 
73
        struct tm       ltime = { 0 };
 
74
        time_t          secs;
 
75
 
 
76
        getUTC1970(secs, nsec);
 
77
        localtime_r(&secs, &ltime);
 
78
        sec = ltime.tm_sec;
 
79
        min = ltime.tm_min;
 
80
        hour = ltime.tm_hour;
 
81
        day = ltime.tm_mday;
 
82
        mon = ltime.tm_mon + 1;
 
83
        year = ltime.tm_year + 1900;
 
84
}
 
85
 
 
86
void CSTime::setUTC(s_int year, s_int mon, s_int day, s_int hour, s_int min, s_int sec, s_int nsec)
 
87
{
 
88
        iNanoSeconds = nsec;
 
89
        iSeconds = sec;
 
90
        iMinutes = min;
 
91
        iHours = hour;
 
92
        iDay = day;
 
93
        iMonth = mon;
 
94
        iYear = year;
 
95
        iIsNull = false;
 
96
}
 
97
 
 
98
void CSTime::getUTC(s_int& year, s_int& mon, s_int& day, s_int& hour, s_int& min, s_int& sec, s_int& nsec)
 
99
{
 
100
        nsec = iNanoSeconds;
 
101
        sec = iSeconds;
 
102
        min = iMinutes;
 
103
        hour = iHours;
 
104
        day = iDay;
 
105
        mon = iMonth;
 
106
        year = iYear;
 
107
}
 
108
 
 
109
char *CSTime::getCString(const char *format)
 
110
{
 
111
        if (iIsNull)
 
112
                strcpy(iCString, "NULL");
 
113
        else {
 
114
                struct tm       ltime = { 0 };
 
115
                time_t          secs;
 
116
                s_int           nsec;
 
117
 
 
118
                getUTC1970(secs, nsec);
 
119
                localtime_r(&secs, &ltime);
 
120
                strftime(iCString, 100, format, &ltime);
 
121
        }
 
122
        return iCString;
 
123
}
 
124
 
 
125
char *CSTime::getCString()
 
126
{
 
127
        return getCString("%Y-%m-%d %H:%M:%S");
 
128
}
 
129
 
 
130
void CSTime::setUTC1970(time_t sec, s_int nsec)
 
131
{
 
132
        struct tm       ltime = { 0 };
 
133
 
 
134
        gmtime_r(&sec, &ltime);
 
135
        setUTC(ltime.tm_year + 1900, ltime.tm_mon + 1, ltime.tm_mday, ltime.tm_hour, ltime.tm_min, ltime.tm_sec, nsec);
 
136
}
 
137
 
 
138
void CSTime::getUTC1970(time_t& sec, s_int& nsec)
 
139
{
 
140
#ifdef OS_WINDOWS
 
141
        uint64_t nsec100;
 
142
 
 
143
        /* Get the number of seconds since 1 Jan 1970 */
 
144
        nsec100 = getUTC1601();
 
145
        nsec100 = nsec100 - get1970as1601();
 
146
        sec = (time_t) (nsec100 / 10000000);
 
147
#else
 
148
        struct tm       ltime = { 0 };
 
149
 
 
150
        ltime.tm_sec = iSeconds;
 
151
        ltime.tm_min = iMinutes;
 
152
        ltime.tm_hour = iHours;
 
153
        ltime.tm_mday = iDay;
 
154
        ltime.tm_mon = iMonth - 1;
 
155
        ltime.tm_year = iYear - 1900;
 
156
        sec = timegm(&ltime);
 
157
#endif
 
158
        nsec = iNanoSeconds;
 
159
}
 
160
 
 
161
#ifdef OS_WINDOWS
 
162
 
 
163
void CSTime::setUTC1601(uint64_t nsec100)
 
164
{
 
165
        FILETIME                ftime;
 
166
        SYSTEMTIME              stime;
 
167
 
 
168
        /* The input is actually a FILETIME value: */
 
169
        memcpy(&ftime, &nsec100, sizeof(ftime));
 
170
 
 
171
        if (!FileTimeToSystemTime(&ftime, &stime))
 
172
                CSException::throwLastError(CS_CONTEXT);
 
173
        setUTC((s_int) stime.wYear, (s_int) stime.wMonth, (s_int) stime.wDay,
 
174
                (s_int) stime.wHour, (s_int) stime.wMinute, (s_int) stime.wSecond, (s_int) stime.wMilliseconds * 1000);
 
175
}
 
176
 
 
177
uint64_t CSTime::getUTC1601()
 
178
{
 
179
        FILETIME        ftime;
 
180
        SYSTEMTIME      stime;
 
181
        uint64_t                nsec100;
 
182
 
 
183
        stime.wYear = iYear;
 
184
        stime.wMonth = iMonth;
 
185
        stime.wDay = iDay;
 
186
        stime.wHour = iHours;
 
187
        stime.wMinute = iMinutes;
 
188
        stime.wSecond = iSeconds;
 
189
        stime.wMilliseconds = iNanoSeconds / 1000;
 
190
        if (!SystemTimeToFileTime(&stime, &ftime))
 
191
                CSException::throwLastError(CS_CONTEXT);
 
192
        memcpy(&nsec100, &ftime, sizeof(nsec100));
 
193
        return nsec100;
 
194
}
 
195
 
 
196
uint64_t CSTime::get1970as1601()
 
197
{
 
198
        FILETIME        ftime;
 
199
        SYSTEMTIME      stime;
 
200
        uint64_t                nsec100;
 
201
 
 
202
        stime.wYear = 1970;
 
203
        stime.wMonth = 1;
 
204
        stime.wDay = 1;
 
205
        stime.wHour = 0;
 
206
        stime.wMinute = 0;
 
207
        stime.wSecond = 0;
 
208
        stime.wMilliseconds = 0;
 
209
        if (!SystemTimeToFileTime(&stime, &ftime))
 
210
                CSException::throwLastError(CS_CONTEXT);
 
211
        memcpy(&nsec100, &ftime, sizeof(nsec100));
 
212
        return nsec100;
 
213
}
 
214
 
 
215
#endif
 
216
 
 
217