-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathiCalDataTypes.cs
1376 lines (1155 loc) · 40.4 KB
/
iCalDataTypes.cs
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2011 Miyako Komooka
using System;
using System.IO;
// using System.Collections;
using System.Collections.Generic;
using System.Globalization;
// Property Value Datat Types, Defined in rfc5545 section 3.3
namespace iCalLibrary.DataType
{
using Parameter;
public abstract class iCalDataType /* : ICloneable */ {
public virtual Object Clone()
{
return this.MemberwiseClone();
}
}
public abstract class iCalTimeRelatedType : iCalDataType, IComparable<iCalTimeRelatedType>
{
public override int GetHashCode(){
return base.GetHashCode();
}
public virtual iCalTimeRelatedType Plus( iCalDurationDataType duration )
{
return null;
}
public virtual iCalDurationDataType Minus( iCalTimeRelatedType date2 )
{
return null;
}
public static iCalTimeRelatedType operator +
( iCalTimeRelatedType time, iCalDurationDataType duration ){
return time.Plus( duration );
}
public static iCalDurationDataType operator -
( iCalTimeRelatedType date1, iCalTimeRelatedType date2 ){
return date1.Minus( date2 );
}
public virtual int CompareTo( iCalTimeRelatedType date2 )
{
return 0;
}
public override bool Equals( Object date2 )
{
return false;
}
public virtual DayOfWeek GetDayOfWeek()
{
return DayOfWeek.Monday;
}
public virtual int Year { get{ return 0; } set{} }
public virtual int Month { get{ return 0; } set{} }
public virtual int Day { get{ return 0; } set{} }
public static bool operator == ( iCalTimeRelatedType date1,
iCalTimeRelatedType date2) {
if( ((Object)date1) == null ){
if( ((Object)date2) == null ){
return true;
}
} else if( date1.Equals( date2 ) ){
return true;
}
return false;
}
public static bool operator != ( iCalTimeRelatedType date1,
iCalTimeRelatedType date2) {
if( date1 == date2 ){
return false;
}
return true;
}
public static bool operator < (iCalTimeRelatedType date1,
iCalTimeRelatedType date2)
{
int ret = date1.CompareTo( date2 );
if( ret < 0 ){
return true;
}
return false;
}
public static bool operator >(iCalTimeRelatedType date1,
iCalTimeRelatedType date2)
{
int ret = date1.CompareTo( date2 );
if( ret > 0 ){
return true;
}
return false;
}
public static bool operator <= (iCalTimeRelatedType date1,
iCalTimeRelatedType date2)
{
int ret = date1.CompareTo( date2 );
if( ret <= 0 ){
return true;
}
return false;
}
public static bool operator >= (iCalTimeRelatedType date1,
iCalTimeRelatedType date2)
{
int ret = date1.CompareTo( date2 );
if( ret >= 0 ){
return true;
}
return false;
}
// public static bool operator < ( iCalDate date2, iCalTimeRelatedType date1 ) {
// if( date1 > date2 ){
// return true;
// }
// return false;
// }
// public static bool operator > ( iCalDate date2, iCalTimeRelatedType date1 ) {
// if( date1 < date2 ){
// return true;
// }
// return false;
// }
}
// date-time = date "T" time
public class iCalDateTime : iCalTimeRelatedType
{
public iCalDate Date;
public iCalTime Time;
public iCalDateTime(){
this.Date = new iCalDate();
this.Time = new iCalTime();
}
public iCalDateTime(String str)
{
str = str.ToLower();
int index = str.IndexOf( "t" );
String date, time;
if( index < 0 ){
date = str;
this.Time = null;
} else {
date = str.Substring( 0, index );
time = str.Substring( index + 1 );
this.Time = new iCalTime( time );
}
this.Date = new iCalDate( date );
}
public iCalDateTime( iCalDate date )
{
this.Date = date;
this.Time = null;
}
public iCalDateTime( System.DateTime systemDateTime ){
iCalDate retDate = new iCalDate();
retDate.Year = systemDateTime.Year;
retDate.Month = systemDateTime.Month;
retDate.Day = systemDateTime.Day;
iCalTime retTime = new iCalTime();
retTime.Hour = systemDateTime.Hour;
retTime.Minute = systemDateTime.Minute;
retTime.Second = systemDateTime.Second;
if( systemDateTime.Kind == DateTimeKind.Utc ){
retTime.IsUTC = true;
} else {
retTime.IsUTC = false;
}
this.Date = retDate;
this.Time = retTime;
}
public override int Year {
get{
if( this.Date != null ) {
return this.Date.Year;
}
return 0;
}
set{
if( this.Date != null ) {
this.Date.Year = value;
}
}
}
public override int Month {
get{
if( this.Date != null ) {
return this.Date.Month;
}
return 0;
}
set{
if( this.Date != null ) {
this.Date.Month = value;
}
}
}
public override int Day {
get{
if( this.Date != null ) {
return this.Date.Day;
}
return 0;
}
set{
if( this.Date != null ) {
this.Date.Day = value;
}
}
}
public override Object Clone()
{
iCalDateTime ret = (iCalDateTime)base.Clone();
if( this.Date != null ){
// ret.Date = new iCalDate();
// ret.Date.Year = this.Date.Year;
// ret.Date.Month = this.Date.Month;
// ret.Date.Day = this.Date.Day;
if( this.Date != null ){
ret.Date = (iCalDate)this.Date.Clone();
}
}
if( this.Time != null ){
// ret.Time = new iCalTime();
// ret.Time.IsUTC = this.Time.IsUTC;
// ret.Time.Hour = this.Time.Hour;
// ret.Time.Minute = this.Time.Minute;
// ret.Time.Second = this.Time.Second;
if( this.Time != null ){
ret.Time = (iCalTime)this.Time.Clone();
}
}
return ret;
}
public override String ToString()
{
String ret = "";
if( this.Date != null ){
ret += this.Date.ToString();
}
if( this.Time != null ){
ret += "T" + this.Time.ToString();
}
return ret;
}
public override int GetHashCode(){
return this.Date.GetHashCode() + this.Time.GetHashCode();
}
public override int CompareTo( iCalTimeRelatedType date2 )
{
iCalDateTime datetime = date2 as iCalDateTime;
if( datetime != null ){
int ret = this.Date.CompareTo( datetime.Date );
if( ret == 0 ){
ret = this.Time.CompareTo( datetime.Time );
}
return ret;
} else {
throw new ArgumentException( "cannot compare iCalDateTime with over object" );
}
}
public override bool Equals( Object obj )
{
iCalDateTime datetime = obj as iCalDateTime;
iCalDate date = obj as iCalDate;
if( datetime != null ){
if( this.Time == datetime.Time &&
this.Date == datetime.Date ){
return true;
}
} else if( date != null ){
if( this.Date == date ){
return true;
}
}
return false;
}
public override iCalTimeRelatedType Plus( iCalDurationDataType duration )
{
DateTime systemDateTime = (DateTime)this;
if( systemDateTime != null ){
int week = duration.Week;
int day = duration.Day;
int hour = duration.Hour;
int minute = duration.Minute;
int second = duration.Second;
if( duration.IsMinus ){
week = -week;
day = -day;
hour = -hour;
minute = -minute;
second = -second;
}
systemDateTime = systemDateTime.AddDays(week * 7);
systemDateTime = systemDateTime.AddDays(day);
systemDateTime = systemDateTime.AddHours(hour);
systemDateTime = systemDateTime.AddMinutes(minute);
systemDateTime = systemDateTime.AddSeconds(second);
return new iCalDateTime( systemDateTime );
}
return null;
}
public override iCalDurationDataType Minus( iCalTimeRelatedType date2 )
{
iCalDurationDataType ret = new iCalDurationDataType();
iCalDateTime datetime = date2 as iCalDateTime;
iCalDate date = date2 as iCalDate;
if( datetime != null ){
DateTime systemDateTime = (DateTime)this;
TimeSpan span = systemDateTime - (DateTime)datetime;
ret.Day = span.Days;
ret.Hour = span.Hours;
ret.Minute = span.Minutes;
ret.Second = span.Seconds;
} else if( date != null ){
DateTime systemDateTime = (DateTime)this;
TimeSpan span = systemDateTime - (DateTime)date;
ret.Day = span.Days;
ret.Hour = span.Hours;
ret.Minute = span.Minutes;
ret.Second = span.Seconds;
}
if( ret.Day < 0 ){
ret.IsMinus = true;
ret.Day = -ret.Day;
}
if( ret.Hour < 0 ){
ret.IsMinus = true;
ret.Hour = -ret.Hour;
}
if( ret.Minute < 0 ){
ret.IsMinus = true;
ret.Minute = -ret.Minute;
}
if( ret.Second < 0 ){
ret.IsMinus = true;
ret.Second = -ret.Second;
}
return ret;
}
public override DayOfWeek GetDayOfWeek()
{
DateTime systemDateTime = (DateTime)this;
return systemDateTime.DayOfWeek;
}
public static iCalDateTime operator- ( iCalDateTime datetime,
iCalUTCOffset offset )
{
DateTime systemDateTime = (DateTime)datetime;
int offsetHour = offset.Hour;
int offsetMinute = offset.Minute;
int offsetSecond = offset.Second;
if( offset.IsMinus ){
offsetHour = -offsetHour;
offsetMinute = -offsetMinute;
offsetSecond = -offsetSecond;
}
systemDateTime = systemDateTime.AddHours( -offsetHour );
systemDateTime = systemDateTime.AddMinutes( -offsetMinute );
systemDateTime = systemDateTime.AddSeconds( -offsetSecond );
iCalDateTime ret = new iCalDateTime( systemDateTime );
if (systemDateTime.Kind == DateTimeKind.Utc) {
ret.Time.IsUTC = true;
} else {
ret.Time.IsUTC = false;
}
return ret;
}
// public static bool operator > ( iCalDateTime datetime1, iCalDate date2 )
// {
// if( datetime1.LessThan( date2 ) ){
// return true;
// }
// return false;
// }
// public static bool operator < (iCalDateTime datetime1, iCalDate date2) {
// if ( datetime1 > date2 ) {
// return false;
// }
// return true; /**/
// }
public static explicit operator System.DateTime(iCalDateTime datetime)
{
System.DateTime ret;
int year=0, month=0, day=0;
int hour=0, minute=0, second=0;
bool isutc = false;
if( datetime.Date != null ){
year = datetime.Date.Year;
month = datetime.Date.Month;
day = datetime.Date.Day;
}
if( datetime.Time != null ){
hour = datetime.Time.Hour;
minute = datetime.Time.Minute;
second = datetime.Time.Second;
isutc = datetime.Time.IsUTC;
}
if( isutc ){
ret = new DateTime( year, month, day,
hour, minute, second,
DateTimeKind.Utc );
} else {
ret = new DateTime( year, month, day,
hour, minute, second );
}
return ret;
}
public static explicit operator iCalDate ( iCalDateTime datetime )
{
if( datetime.Time == null ){
return datetime.Date;
}
return null;
}
public static explicit operator iCalTime ( iCalDateTime datetime )
{
if( datetime.Date == null ){
return datetime.Time;
}
return null;
}
}
// date = YYYYMMDD
public class iCalDate : iCalTimeRelatedType
{
public int year = 1;
public override int Year {
get{ return year; }
set{ year = value; }
}
public int month = 1;
public override int Month {
get{ return month; }
set{ month = value; }
}
public int day = 1;
public override int Day {
get{ return day; }
set{ day = value; }
}
public iCalDate(){}
public iCalDate( String str ){
if( str.Length != 8 ){
return;
}
this.Year = Int32.Parse( str.Substring( 0, 4 ) );
str = str.Substring( 4 );
this.Month = Int32.Parse( str.Substring( 0, 2 ) );
str = str.Substring( 2 );
this.Day = Int32.Parse( str.Substring( 0, 2 ) );
}
public iCalDate( DateTime systemDateTime ){
this.Year = systemDateTime.Year;
this.Month = systemDateTime.Month;
this.Day = systemDateTime.Day;
}
public override Object Clone()
{
iCalDate ret = (iCalDate)base.Clone();
ret.Year = this.Year;
ret.Month = this.Month;
ret.Day = this.Day;
return ret;
}
public override String ToString()
{
return( this.Year.ToString( "0000" ) + "/" +
this.Month.ToString( "00" ) + "/" +
this.Day.ToString( "00" ) );
}
public override int GetHashCode(){
return this.Year + this.Month + this.Day;
}
public override int CompareTo( iCalTimeRelatedType date2 )
{
if (date2 == null) {
throw new ArgumentNullException();
}
iCalDateTime datetime = date2 as iCalDateTime;
iCalDate date = date2 as iCalDate;
if( datetime != null ){
date = datetime.Date;
}
if( date != null ){
int ret = this.Year - date.Year;
if( ret == 0 ){
ret = this.Month - date.Month;
}
if( ret == 0 ){
ret = this.Day - date.Day;
}
return ret;
}
throw new ArgumentException( "cannot compare iCalDate with unkown type" );
}
public override bool Equals( Object obj ){
if (obj == null) {
return false;
}
iCalDate date2 = obj as iCalDate;
iCalDateTime datetime = obj as iCalDateTime;
if( date2 != null ){
if( this.Year == date2.Year &&
this.Month == date2.Month &&
this.Day == date2.Day ){
return true;
}
} else if( datetime != null ){
if( datetime.Date == this ){
return true;
}
}
return false;
}
public override iCalTimeRelatedType Plus( iCalDurationDataType duration )
{
iCalDateTime datetime = new iCalDateTime( this );
iCalDateTime ret = (iCalDateTime)(datetime + duration);
if( ret.Time == null || ret.Time.IsZero() ){
return ret.Date;
}
return ret;
}
public override iCalDurationDataType Minus( iCalTimeRelatedType date2 )
{
iCalDateTime datetime = new iCalDateTime( this );
iCalDurationDataType ret = datetime - date2;
return ret;
}
public iCalDate NextDay()
{
DateTime systemDateTime = (DateTime)this;
systemDateTime = systemDateTime.AddDays( 1 );
return new iCalDate( systemDateTime );
}
public iCalDate PreviousDay()
{
DateTime systemDateTime = (DateTime)this;
systemDateTime = systemDateTime.AddDays( -1 );
return new iCalDate( systemDateTime );
}
public override DayOfWeek GetDayOfWeek()
{
DateTime systemDateTime = (DateTime)this;
return systemDateTime.DayOfWeek;
}
public static explicit operator System.DateTime(iCalDate date)
{
System.DateTime ret =
new System.DateTime( date.Year,
date.Month,
date.Day );
return ret;
}
public static bool operator < ( iCalDate date1, iCalDate date2 ){
int ret = date1.CompareTo( date2 );
if( ret < 0 ){
return true;
}
return false;
}
public static bool operator >(iCalDate date1, iCalDate date2) {
if( date1 <= date2 ){
return false;
}
return true;
}
public static bool operator == ( iCalDate date1, iCalDate date2 ){
if( ((Object)date1) == null ){
if( ((Object)date2) == null ){
return true;
}
} else if( date1.Equals( date2 ) ){
return true;
}
return false;
}
public static bool operator != ( iCalDate date1, iCalDate date2 ){
if( date1 == date2 ){
return false;
}
return true;
}
public static bool operator <= ( iCalDate date1, iCalDate date2 ){
if( date1 < date2 || date1 == date2 ){
return true;
}
return false;
}
public static bool operator >= (iCalDate date1, iCalDate date2){
if (date1 > date2 || date1 == date2) {
return true;
}
return false;
}
}
// time = HHMMSS[z]
public class iCalTime : iCalTimeRelatedType
{
public bool IsUTC = false;
public int Hour = 0;
public int Minute = 0;
public int Second = 0;
public iCalTime(){}
public iCalTime( String str ){
if( str.Length < 6 ){
return ;
}
this.Hour = Int32.Parse( str.Substring( 0, 2 ) );
str = str.Substring( 2 );
this.Minute = Int32.Parse( str.Substring( 0, 2 ) );
str = str.Substring( 2 );
this.Second = Int32.Parse( str.Substring( 0, 2 ) );
str = str.Substring( 2 );
if( str.Length > 0 && str.ToLower()[0] == 'z' ){
this.IsUTC = true;
} else {
this.IsUTC = false;
}
}
public override Object Clone()
{
iCalTime ret = (iCalTime)base.Clone();
ret.IsUTC = this.IsUTC;
ret.Hour = this.Hour;
ret.Minute = this.Minute;
ret.Second = this.Second;
return ret;
}
public override String ToString()
{
String ret = this.Hour.ToString( "00" ) + ":" +
this.Minute.ToString( "00" ) + ":" +
this.Second.ToString( "00" );
if( this.IsUTC ){
ret += "z";
}
return ret;
}
public override int GetHashCode(){
return this.Hour + this.Minute + this.Second;
}
public override bool Equals( Object date2 )
{
iCalTime time = date2 as iCalTime;
if( time != null &&
this.Hour == time.Hour &&
this.Minute == time.Minute &&
this.Second == time.Second &&
this.IsUTC == time.IsUTC ){
return true;
}
return false;
}
public override int CompareTo( iCalTimeRelatedType date2 )
{
iCalTime time = date2 as iCalTime;
if( time != null ){
if( this.IsUTC != time.IsUTC ){
throw new ArgumentException( "cannot compare non utc time and utc time" );
}
int ret = this.Hour - time.Hour;
if( ret == 0 ){
ret = this.Minute - time.Minute;
}
if( ret == 0 ){
ret = this.Second - time.Second;
}
return ret;
}
throw new ArgumentException( "cannot compare iCalTime and other" );
}
public bool IsZero(){
if( this.Hour == 0 &&
this.Minute == 0 &&
this.Second == 0 ){
return true;
}
return false;
}
public static bool operator == ( iCalTime date1, iCalTime date2) {
if( ((Object)date1) == null ){
if( ((Object)date2) == null ){
return true;
}
} else if( date1.Equals( date2 ) ){
return true;
}
return false;
}
public static bool operator != ( iCalTime date1, iCalTime date2) {
if( date1 == date2 ){
return false;
}
return true;
}
}
public class iCalDurationDataType : iCalDataType
{
// dur-value = (["+"] / "-") "P" (dur-date / dur-time / dur-week)
// dur-date = dur-day [dur-time]
// dur-time = "T" (dur-hour / dur-minute / dur-second)
// dur-week = 1*DIGIT "W"
// dur-hour = 1*DIGIT "H" [dur-minute]
// dur-minute = 1*DIGIT "M" [dur-second]
// dur-second = 1*DIGIT "S"
// dur-day = 1*DIGIT "D"
public bool IsMinus = false;
public int Week = 0;
public int Day = 0;
public int Hour = 0;
public int Minute = 0;
public int Second = 0;
public iCalDurationDataType(){}
public iCalDurationDataType( String str ){
str = str.ToLower();
if( str.Length > 0 ){
if( str[0] == '-' ){
this.IsMinus = true;
str = str.Substring( 1 );
} else if( str[0] == '+' ){
this.IsMinus = false;
str = str.Substring( 1 );
}
}
if( str.Length > 0 ){
if( str[0] == 'p' ){
str = str.Substring( 1 );
} else {
return;
}
}
String str1 = "";
for( int i = 0; i < str.Length; i++ ){
Char c = str[i];
if ( Char.IsDigit( c ) ){
str1 += c;
} else if( c == 't' ){
str1 = "";
} else if( c == 'd' ){
this.Day = Int32.Parse( str1 );
str1 = "";
} else if( c == 'w' ){
this.Week = Int32.Parse( str1 );
str1 = "";
} else if( c == 'h' ){
this.Hour = Int32.Parse( str1 );
str1 = "";
} else if( c == 'm' ){
this.Minute = Int32.Parse( str1 );
str1 = "";
} else if( c == 's' ){
this.Second = Int32.Parse( str1 );
str1 = "";
}
}
}
public override Object Clone()
{
iCalDurationDataType ret = (iCalDurationDataType)base.Clone();
ret.IsMinus = this.IsMinus;
ret.Week = this.Week;
ret.Day = this.Day;
ret.Hour = this.Hour;
ret.Minute = this.Minute;
ret.Second = this.Second;
return ret;
}
public bool IsZero()
{
if( this.Week == 0 && this.Day == 0 &&
this.Hour == 0 && this.Minute == 0 && this.Second == 0 ){
return true;
}
return false;
}
// public static iCalDateTime operator + ( iCalDateTime datetime,
// iCalDurationDataType duration )
// {
// DateTime systemDateTime = (DateTime)datetime;
// int week = duration.Week;
// int day = duration.Day;
// int hour = duration.Hour;
// int minute = duration.Minute;
// int second = duration.Second;
// if( duration.IsMinus ){
// week = -week;
// day = -day;
// hour = -hour;
// minute = -minute;
// second = -second;
// }
// systemDateTime.AddDays( week * 7 );
// systemDateTime.AddDays( day );
// systemDateTime.AddHours( hour );
// systemDateTime.AddMinutes( minute );
// systemDateTime.AddSeconds( second );
// return new iCalDateTime( systemDateTime );
// }
// public static iCalDateTime operator + ( iCalDate date,
// iCalDurationDataType duration )
// {
// iCalDateTime datetime = new iCalDateTime( date );
// iCalDateTime ret = datetime + duration;
// return ret;
// }
}
public class iCalPeriod : iCalTimeRelatedType
{
// period = period-explicit / period-start
// period-explicit = date-time "/" date-time
// period-start = date-time "/" dur-value
public bool UseDuration = false; // false if start/end time specified
// true if start time/duration specified
public iCalDateTime Start;
public iCalDateTime End;
public iCalDurationDataType Duration;
public iCalPeriod(){}
public iCalPeriod( String str ){
str = str.ToLower();
String str1, str2;
int index = str.IndexOf( '/' );
if( index < 0 ){
str1 = str;
str2 = "p0s";
} else {
str1 = str.Substring( 0, index );
str2 = str.Substring( index + 1 );
}
this.Start = new iCalDateTime( str1 );
if( str2.IndexOf( 'p' ) < 0 ){
this.End = new iCalDateTime( str2 );
this.UseDuration = false;
} else {
this.Duration = new iCalDurationDataType( str2 );
this.UseDuration = true;
}
}
public override Object Clone()
{
iCalPeriod ret = (iCalPeriod)base.Clone();
ret.UseDuration = this.UseDuration;
if( this.Start != null ){
ret.Start = (iCalDateTime)this.Start.Clone();
}