~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-12-20 02:32:53 UTC
  • mfrom: (2469.1.1 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111220023253-bvu0kr14kwsdvz7g
mergeĀ lp:~brianaker/drizzle/deprecate-pbms

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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 *
19
 
 * Original author: Paul McCullagh (H&G2JCtL)
20
 
 * Continued development: Barry Leslie
21
 
 *
22
 
 * 2007-05-20
23
 
 *
24
 
 * Represents a time value from the database.
25
 
 *
26
 
 * NOTE: All times in the database are based on UTC
27
 
 * (Universal Coordinated Time)!
28
 
 *
29
 
 */
30
 
 
31
 
#pragma once
32
 
#ifndef __DBTIME_H__
33
 
#define __DBTIME_H__
34
 
 
35
 
#include <time.h>
36
 
 
37
 
#include "CSDefs.h"
38
 
#include "CSObject.h"
39
 
 
40
 
class CSTime : public CSObject  {
41
 
public:
42
 
        CSTime(): iIsNull(true) { }
43
 
        CSTime(s_int year, s_int mon, s_int day, s_int hour, s_int min, s_int sec, s_int nsec);
44
 
        virtual ~CSTime() { }
45
 
 
46
 
        bool isNull();
47
 
        
48
 
        void setNull();
49
 
 
50
 
        /*
51
 
         * Set the time. The value given is a local time
52
 
     * sec - seconds (0 - 60)
53
 
     * min - minutes (0 - 59)
54
 
     * hour - hours (0 - 23)
55
 
     * day - day of month (1 - 31)
56
 
         * mon - month of year (1 - 12)
57
 
         * year - where year >= 1970 (on UNIX)
58
 
         */
59
 
        void setLocal(s_int year, s_int mon, s_int day, s_int hour, s_int min, s_int sec, s_int nsec);
60
 
 
61
 
        /* Get the local time. */
62
 
        void getLocal(s_int& year, s_int& mon, s_int& day, s_int& hour, s_int& min, s_int& sec, s_int& nsec);
63
 
 
64
 
        /* Set the s_int time. */
65
 
        void setUTC(s_int year, s_int mon, s_int day, s_int hour, s_int min, s_int sec, s_int nsec);
66
 
 
67
 
        /* Get the universal time. */
68
 
        void getUTC(s_int& year, s_int& mon, s_int& day, s_int& hour, s_int& min, s_int& sec, s_int& nsec);
69
 
 
70
 
        /*
71
 
         * Returns the time as a string in the local time 
72
 
         * (time zone adjusted).
73
 
         */
74
 
        char *getCString();
75
 
 
76
 
        /*
77
 
         * As above, but using the given format.
78
 
         */
79
 
        char *getCString(const char *format);
80
 
 
81
 
        /* Set the time given a value in seconds and nanoseconds in UTC since 1970.
82
 
         * Used by UNIX.
83
 
         */
84
 
        void setUTC1970(time_t sec, s_int nsec);
85
 
        void getUTC1970(time_t& sec, s_int& nsec);
86
 
 
87
 
        /* Set the time given a 100 nanosecond value in UTC since 1601.
88
 
         * Used by Windows.
89
 
         */
90
 
        void setUTC1601(uint64_t nsec100);
91
 
        uint64_t getUTC1601();
92
 
 
93
 
        /* 
94
 
         * Tests if the time is more than 'max_age' seconds in the past.
95
 
         */
96
 
        bool olderThen(time_t max_age);
97
 
 
98
 
        static  uint64_t getTimeCurrentTicks();
99
 
private:
100
 
        bool    iIsNull;
101
 
        char    iCString[100];
102
 
 
103
 
        /* The time based on UTC (GMT): */
104
 
        s_int   iYear;
105
 
        s_int   iMonth;
106
 
        s_int   iDay;
107
 
        s_int   iHours;
108
 
        s_int   iMinutes;
109
 
        s_int   iSeconds;
110
 
        s_int   iNanoSeconds;           /* Plus this number of nano seconds. */
111
 
 
112
 
        uint64_t get1970as1601();
113
 
};
114
 
 
115
 
#endif