Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SqlDateTime.cs « System.Data.SqlTypes.jvm « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 229700c7bde3f2e39171d2dbd0296c5305757512 (plain)
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// System.Data.SqlTypes.SqlDateTime
//
// Authors:
//	Konstantin Triger <kostat@mainsoft.com>
//	Boris Kirzner <borisk@mainsoft.com>
//	
// (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
//

//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

namespace System.Data.SqlTypes
{

    /**
     * <p>Title: </p>
     * <p>Description: </p>
     * <p>Copyright: Copyright (c) 2002</p>
     * <p>Company: MainSoft</p>
     * @author Pavel Sandler
     * @version 1.0
     */

    using System;


    /*
    * CURRENT LIMITATIONS:
    * 1. Doesn't support billiseconds
    * 2. public int DayTicks not implemented (I do not understand the logic)
    */

    public struct SqlDateTime : INullable, IComparable
    {
        private DateTime _value;
        private bool _isNull;

        public static readonly SqlDateTime MaxValue = new SqlDateTime(9999, 12, 31);
        public static readonly SqlDateTime MinValue = new SqlDateTime(1753, 1, 1);
        public static readonly SqlDateTime Null = new SqlDateTime(true);
        public static readonly int SqlTicksPerSecond = 300;
        public static readonly int SqlTicksPerMinute = 18000;
        public static readonly int SqlTicksPerHour = 1080000;
        
        private SqlDateTime(bool isNull)
        {
            _isNull = isNull;
            _value = DateTime.MinValue;
        }

        public SqlDateTime(DateTime value) 
        {
            _value = value;
            _isNull = false;
        }

        public SqlDateTime(int DateTicks, int TimeTicks)
        {
            throw new NotImplementedException("ctor SqlDateTime(int DateTicks, int TimeTicks) not implemented.");
        }

        /**
         * Constract a new SqlDateTime object
         * @param year the year
         * @param month the month (1-12)
         * @param day the day in the month
         */
        public SqlDateTime(int year, int month, int day) 
        : this(year, month, day, 0, 0, 0, 0)
        {
        }

        /**
         * Constract a new SqlDateTime object
         * @param year the year
         * @param month the month (1-12)
         * @param day the day in the month
         * @param hour the number of hours
         */
        public SqlDateTime(int year, int month, int day, int hour)
            : this(year, month, day, hour, 0, 0, 0)
        {
        }

        /**
         * Constract a new SqlDateTime object
         * @param year the year
         * @param month the month (1-12)
         * @param day the day in the month
         * @param hour the number of hours
         * @param minute the number of minutes
         */
        public SqlDateTime(int year, int month, int day, int hour, int minute)
            : this(year, month, day, hour, minute, 0, 0)
        { 
        }
        /**
         * Constract a new SqlDateTime object
         * @param year the year
         * @param month the month (1-12)
         * @param day the day in the month
         * @param hour the number of hours
         * @param minute the number of minutes
         * @param second the number of seconds
         */
        public SqlDateTime(int year, int month, int day, int hour, int minute, int second)
            : this(year, month, day, hour, minute, second, 0)
        {
        }

        /**
         * Constract a new SqlDateTime object
         * @param year the year
         * @param month the month (1-12)
         * @param day the day in the month
         * @param hour the number of hours
         * @param minute the number of minutes
         * @param second the number of seconds
         * @param millisecond the number of milliseconds
         */
        public SqlDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond)
        {
            _value = new DateTime(year, month, day, hour, minute, second, millisecond);
            _isNull = false;
        }

        /**
         * Indicates whether or not Value is null.
         * @return true if Value is null, otherwise false.
         */
        public bool IsNull
        {
            get
            {
                return _isNull;
            }
        }

        /**
         * Gets the value of the SqlDateTime instance.
         * @return the value of this instance
         */
        public DateTime Value
        {
            get
            {
                if(IsNull)
                    throw new SqlNullValueException();
                return _value;
            }
        }

        public int DayTicks
        {
            get
            {
                /** @todo find the logic */
                return -1;
            }
        }

        /**
         * Gets the number of ticks representing the time of this SqlDateTime structure.
         * @return The number of ticks representing the time of this SqlDateTime structure.
         */
        public int TimeTicks
        {
            get
            {
                if (IsNull)
                {
                    int res = _value.Hour * SqlTicksPerHour;
                    res += (_value.Minute * SqlTicksPerMinute);
                    res += (_value.Second * SqlTicksPerSecond);
                    res += (_value.Millisecond * SqlTicksPerSecond * 1000);

                    return res;

                }

                throw new SqlNullValueException("The value of this instance is null");
            }
        }

        /**
         * Compares this instance to the supplied object and returns an indication of their relative values.
         * @param obj The object to compare.
         * @return A signed number indicating the relative values of the instance and the object.
         * Less than zero This instance is less than object.
         * Zero This instance is the same as object.
         * Greater than zero This instance is greater than object -or-
         * object is a null reference.
         */
        public int CompareTo(Object obj)
        {
            if (obj == null)
                return 1;

            if (obj is SqlDateTime)
            {
                SqlDateTime value = (SqlDateTime)obj;

                if (value.IsNull)
                    return 1;
                if (IsNull)
                    return -1;

                return _value.CompareTo(value._value);
            }

            throw new ArgumentException("parameter obj is not SqlDateTime : " + obj.GetType().Name);

        }

        public override bool Equals(Object obj)
        {
            if (obj is SqlDateTime)
            {
                SqlDateTime d = (SqlDateTime)obj;
                
                if (d.IsNull || d.IsNull)
                    return false;

                if (d._value  == _value)
                    return true;

                return _value.Equals(d._value);
            }

            return false;
        }

        
        /**
         * Performs a logical comparison on two instances of SqlDateTime to determine if they are equal.
         * @param x A SqlDateTime instance.
         * @param y A SqlDateTime instance.
         * @return true if the two values are equal, otherwise false.
         * If one of the parameters is null or null value return SqlBoolean.Null.
         */
        public static SqlBoolean Equals(SqlDateTime d1, SqlDateTime d2)
        {
            return d1 == d2;
        }

        
        /**
         * Compares two instances of SqlDateTime to determine if the first is greater than the second.
         * @param x A SqlDateTime instance
         * @param y A SqlDateTime instance
         * @return A SqlBoolean that is True if the first instance is greater than the second instance, otherwise False.
         * If either instance of SqlDateTime is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean GreaterThan(SqlDateTime d1, SqlDateTime d2)
        {
            return d1 > d2;
        }

        /**
         * Compares two instances of SqlDateTime to determine if the first is greater than or equal to the second.
         * @param x A SqlDateTime instance
         * @param y A SqlDateTime instance
         * @return A SqlBoolean that is True if the first instance is greaater than or equal to the second instance, otherwise False.
         * If either instance of SqlDateTime is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean GreaterThanOrEqual(SqlDateTime d1, SqlDateTime d2)
        {
            return d1 >= d2;
        }

        /**
         * Compares two instances of SqlDecimal to determine if the first is less than the second.
         * @param x A SqlDateTime instance
         * @param y A SqlDateTime instance
         * @return A SqlBoolean that is True if the first instance is less than the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean LessThan(SqlDateTime d1, SqlDateTime d2)
        {
            return d1 < d2;
        }

        /**
         * Compares two instances of SqlDateTime to determine if the first is less than the second.
         * @param x A SqlDateTime instance
         * @param y A SqlDateTime instance
         * @return A SqlBoolean that is True if the first instance is less than the second instance, otherwise False.
         * If either instance of SqlDateTime is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean LessThanOrEqual(SqlDateTime d1, SqlDateTime d2)
        {
            return d1 <= d2;
        }

        /**
         * Compares two instances of SqlDateTime to determine if they are equal.
         * @param x A SqlDateTime instance
         * @param y A SqlDateTime instance
         * @return A SqlBoolean that is True if the two instances are not equal or False if the two instances are equal.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean NotEquals(SqlDateTime d1, SqlDateTime d2)
        {
            return d1 != d2;
        }

        /**
         * Converts the String representation of a number to its DateTime equivalent.
         * @param s The String to be parsed.
         * @return A SqlDateTime containing the value represented by the String.
         */
        public static SqlDateTime Parse(String s)
        {
            DateTime val = DateTime.Parse(s);

            SqlDateTime res = new SqlDateTime(val);

            if (LessThanOrEqual(res, MinValue).IsTrue || GreaterThanOrEqual(res, MinValue).IsTrue)
                throw new ArgumentException("The DateTime is not valid");

            return res;

        }


        public override String ToString()
        {
            if (IsNull)
                return "null";

            return _value.ToString();
        }

        /**
         * Converts this SqlDateTime structure to SqlString.
         * @return A SqlString structure whose value is a string representing the date and time contained in this SqlDateTime structure.
         */
        public SqlString ToSqlString()
        {
            return new SqlString(ToString());
        }
        
        public override int GetHashCode()
        {
            return _value.GetHashCode();
        }

        public static SqlDateTime operator + (SqlDateTime x, TimeSpan t)
        {
            if (x.IsNull)
                return SqlDateTime.Null;
			
            return new SqlDateTime (x.Value + t);
        }

        public static SqlBoolean operator == (SqlDateTime x, SqlDateTime y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;
            else
                return new SqlBoolean (x.Value == y.Value);
        }

        public static SqlBoolean operator > (SqlDateTime x, SqlDateTime y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;
            else
                return new SqlBoolean(x.CompareTo(y) > 0);
        }

        public static SqlBoolean operator >= (SqlDateTime x, SqlDateTime y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;
            else
                return new SqlBoolean(x.CompareTo(y) >= 0);
        }

        public static SqlBoolean operator != (SqlDateTime x, SqlDateTime y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;
            else
                return new SqlBoolean(!(x.Value == y.Value));
        }

        public static SqlBoolean operator < (SqlDateTime x, SqlDateTime y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;
            else
                return new SqlBoolean(x.CompareTo(y) < 0);
        }

        public static SqlBoolean operator <= (SqlDateTime x, SqlDateTime y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;
            else
                return new SqlBoolean(x.CompareTo(y) <= 0);
        }

        public static SqlDateTime operator - (SqlDateTime x, TimeSpan t)
        {
            return new SqlDateTime(x.Value - t);
        }

        public static explicit operator DateTime (SqlDateTime x)
        {
            return x.Value;
        }

        public static explicit operator SqlDateTime (SqlString x)
        {
            return SqlDateTime.Parse(x.Value);
        }

        public static implicit operator SqlDateTime (DateTime x)
        {
            return new SqlDateTime(x);
        }

    }
}