-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathiCalProperties.cs
2778 lines (2264 loc) · 89.3 KB
/
iCalProperties.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.Collections;
using System.Collections.Generic;
// Component Properties, Defined in rfc5545 section 3.7, 3.8
namespace iCalLibrary.Property
{
using DataType;
using Parameter;
using Component;
public class iCalProperty /* : ICloneable */ {
public iCalComponent Component;
public iCalLineContent Content;
public iCalProperty()
{
this.Content = null;
this.Component = null;
}
public iCalProperty( iCalComponent component ) {
this.Component = component;
this.Content = null;
}
public iCalProperty(iCalLineContent content,
iCalComponent component )
{
this.Content = content;
this.Component = component;
}
public virtual Object Clone()
{
iCalProperty ret = (iCalProperty)this.MemberwiseClone();
return ret;
}
}
// 3.7.1
public class iCalScale : iCalProperty {
// calscale = "CALSCALE" calparam ":" calvalue CRLF
// calparam = *(";" other-param)
// calvalue = "GREGORIAN"
public static String RepName = "calscale";
public iCalText Value = null;
public iCalScale( iCalComponent component ) :base( component ) {}
public iCalScale( iCalLineContent content, iCalComponent component )
:base( content, component ) {
this.Value = new iCalText( content.Value );
}
public override Object Clone()
{
iCalScale ret = (iCalScale)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
return ret;
}
}
// 3.7.2
public class iCalMethod : iCalProperty {
// method = "METHOD" metparam ":" metvalue CRLF
// metparam = *(";" other-param)
// metvalue = iana-token
public static String RepName = "method";
public iCalText Value = null;
public iCalMethod( iCalComponent component ) : base( component ) {}
public iCalMethod( iCalLineContent content, iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
}
public override Object Clone()
{
iCalMethod ret = (iCalMethod)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
return ret;
}
}
// 3.7.3
public class iCalProductIdentifier : iCalProperty {
// prodid = "PRODID" pidparam ":" pidvalue CRLF
// pidparam = *(";" other-param)
// pidvalue = text
// ;Any text that describes the product and version
// ;and that is generally assured of being unique.
public static String RepName = "prodid";
public iCalText Value = null;
public iCalProductIdentifier( iCalComponent component )
: base( component ) {}
public iCalProductIdentifier( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
}
public override Object Clone()
{
iCalProductIdentifier ret = (iCalProductIdentifier)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
return ret;
}
}
// 3.7.4
public class iCalVersion : iCalProperty {
// version = "VERSION" verparam ":" vervalue CRLF
// verparam = *(";" other-param)
// vervalue = "2.0" ;This memo
// / maxver
// / (minver ";" maxver)
// minver = <A IANA-registered iCalendar version identifier>
// ;Minimum iCalendar version needed to parse the iCalendar object.
// maxver = <A IANA-registered iCalendar version identifier>
// ;Maximum iCalendar version needed to parse the iCalendar object.
public static String RepName = "version";
public iCalText Value = null;
public iCalVersion( iCalComponent component ) : base( component ) {}
public iCalVersion( iCalLineContent content, iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
}
public override Object Clone()
{
iCalVersion ret = (iCalVersion)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
return ret;
}
}
// 3.8.1.1
public class iCalAttachment : iCalProperty {
// attach = "ATTACH" attachparam ( ":" uri ) /
// (
// ";" "ENCODING" "=" "BASE64"
// ";" "VALUE" "=" "BINARY"
// ":" binary
// )
// CRLF
// attachparam = *(
// ;
// ; The following is OPTIONAL for a URI value,
// ; RECOMMENDED for a BINARY value,
// ; and MUST NOT occur more than once.
// ;
// (";" fmttypeparam) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
// binary = *(4b-char) [b-end]
// ; A "BASE64" encoded character string, as defined by [RFC4648].
// b-end = (2b-char "==") / (3b-char "=")
// b-char = ALPHA / DIGIT / "+" / "/"
public static String RepName = "attach";
public bool IsURI = true; // if not URI, it is binary
public String URI = null;
public String Binary = null;
public iCalValueDataType.ValueType ValueType = 0;
public String Encoding = null;
public String Format = null;
public iCalAttachment( iCalComponent component ) : base( component ) {}
public iCalAttachment( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
if( content.Params.ContainsKey( iCalValueDataType.RepName ) ||
content.Params.ContainsKey( iCalInlineEncoding.RepName ) ){
this.IsURI = false;
this.Binary = content.Value;
if( content.Params.ContainsKey( iCalValueDataType.RepName ) ){
iCalParameter valueTypeParam =
content.Params[ iCalValueDataType.RepName ];
this.ValueType = (iCalValueDataType.ValueType)
valueTypeParam.GetValueType( valueTypeParam.Value() );
}
if( content.Params.ContainsKey( iCalInlineEncoding.RepName ) ){
iCalParameter encodingParam =
content.Params[ iCalInlineEncoding.RepName ];
this.Encoding = encodingParam.Value();
}
} else {
this.IsURI = true;
this.URI = content.Value;
}
if( content.Params.ContainsKey( iCalFormatType.RepName ) ){
iCalParameter formatParam =
content.Params[ iCalFormatType.RepName ];
this.Format = formatParam.Value();
}
}
public override Object Clone()
{
iCalAttachment ret = (iCalAttachment)base.Clone();
ret.IsURI = this.IsURI;
ret.URI = this.URI;
ret.Binary = this.Binary;
ret.ValueType = this.ValueType;
ret.Encoding = this.Encoding;
ret.Format = this.Format;
return ret;
}
}
// 3.8.1.2
public class iCalCategories : iCalProperty {
// categories = "CATEGORIES" catparam ":" text *("," text)
// CRLF
// catparam = *(
// ;
// ; The following is OPTIONAL,
// ; but MUST NOT occur more than once.
// ;
// (";" languageparam ) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
public static String RepName = "categories";
public List<iCalText> Values = new List<iCalText>();
public String Language = null;
public iCalCategories( iCalComponent component )
: base( component ) {}
public iCalCategories( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
this.Values = iCalText.ParseMultipleTexts( content.Value );
if( content.Params.ContainsKey( iCalLanguage.RepName ) ){
iCalParameter langParam =
content.Params[ iCalLanguage.RepName ];
this.Language = langParam.Value();
}
}
public override Object Clone()
{
iCalCategories ret = (iCalCategories)base.Clone();
ret.Language = this.Language;
ret.Values = new List<iCalText>();
foreach( iCalText text in ret.Values ){
ret.Values.Add( (iCalText)text.Clone() );
}
return ret;
}
}
// 3.8.1.3
public class iCalClassification : iCalProperty
{
// class = "CLASS" classparam ":" classvalue CRLF
// classparam = *(";" other-param)
// classvalue = "PUBLIC" / "PRIVATE" / "CONFIDENTIAL" / iana-token
// / x-name
// ;Default is PUBLIC
public static String RepName = "class";
public enum ValueType { Other=0, Public, Private, Confidential }
public ValueType Type = 0;
public iCalText Value = null;
public iCalClassification( iCalComponent component )
: base( component ) {}
public iCalClassification( iCalLineContent content,
iCalComponent component )
: base( content, component )
{
this.Value = new iCalText( content.Value );
String value = content.Value.ToLower();
if( value == "public"){
this.Type = ValueType.Public;
} else if( value == "private" ){
this.Type = ValueType.Private;
} else if( value == "confidential" ){
this.Type = ValueType.Confidential;
} else {
this.Type = ValueType.Other;
}
}
public override Object Clone()
{
iCalClassification ret = (iCalClassification)base.Clone();
ret.Type = this.Type;
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
return ret;
}
}
// 3.8.1.4
public class iCalComment : iCalProperty {
// comment = "COMMENT" commparam ":" text CRLF
// commparam = *(
// ;
// ; The following are OPTIONAL,
// ; but MUST NOT occur more than once.
// ;
// (";" altrepparam) / (";" languageparam) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
public static String RepName = "comment";
public iCalText Value = null;
public String Language = null;
public String AltRep = null;
public iCalComment( iCalComponent component )
: base( component ) {}
public iCalComment( iCalLineContent content, iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
if( content.Params.ContainsKey( iCalLanguage.RepName ) ){
iCalParameter langParam =
content.Params[ iCalLanguage.RepName ];
this.Language = langParam.Value();
}
if( content.Params.ContainsKey( iCalAlternateTextRepresentation.RepName ) ){
iCalParameter altrepParam =
content.Params[ iCalAlternateTextRepresentation.RepName ];
this.AltRep = altrepParam.Value();
}
}
public override Object Clone()
{
iCalComment ret = (iCalComment)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
ret.Language = this.Language;
ret.AltRep = this.AltRep;
return ret;
}
}
// 3.8.1.5
public class iCalDescription : iCalProperty {
// description = "DESCRIPTION" descparam ":" text CRLF
// descparam = *(
// ;
// ; The following are OPTIONAL,
// ; but MUST NOT occur more than once.
// ;
// (";" altrepparam) / (";" languageparam) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
public static String RepName = "description";
public iCalText Value = null;
public String Language = null;
public String AltRep = null;
public iCalDescription( iCalComponent component )
: base( component ) {}
public iCalDescription( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
if( content.Params.ContainsKey( iCalLanguage.RepName ) ){
iCalParameter langParam =
content.Params[ iCalLanguage.RepName ];
this.Language = langParam.Value();
}
if( content.Params.ContainsKey( iCalAlternateTextRepresentation.RepName ) ){
iCalParameter altrepParam =
content.Params[ iCalAlternateTextRepresentation.RepName ];
this.AltRep = altrepParam.Value();
}
}
public override Object Clone()
{
iCalDescription ret = (iCalDescription)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
ret.Language = this.Language;
ret.AltRep = this.AltRep;
return ret;
}
}
// 3.8.1.6
public class iCalGeographicPosition : iCalProperty {
// geo = "GEO" geoparam ":" geovalue CRLF
// geoparam = *(";" other-param)
// geovalue = float ";" float
// ;Latitude and Longitude components
public static String RepName = "geo";
public double Latitude = 0.0;
public double Longitude = 0.0;
public iCalGeographicPosition( iCalComponent component )
: base( component ) {}
public iCalGeographicPosition( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
String str = content.Value;
int index = str.IndexOf( ";" );
if( index > 0 ){
this.Latitude = Double.Parse( str.Substring( 0, index ) );
this.Longitude = Double.Parse( str.Substring( index+1 ) );
} else {
this.Latitude = Double.Parse( str );
this.Longitude = 0.0;
}
}
public override Object Clone()
{
iCalGeographicPosition ret = (iCalGeographicPosition)base.Clone();
ret.Latitude= this.Latitude;
ret.Longitude = this.Longitude;
return ret;
}
}
// 3.8.1.7
public class iCalLocation : iCalProperty {
// location = "LOCATION" locparam ":" text CRLF
// locparam = *(
// ;
// ; The following are OPTIONAL,
// ; but MUST NOT occur more than once.
// ;
// (";" altrepparam) / (";" languageparam) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
public static String RepName = "location";
public iCalText Value = null;
public String Language = null;
public String AltRep = null;
public iCalLocation( iCalComponent component )
: base( component ) {}
public iCalLocation( iCalLineContent content, iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
if( content.Params.ContainsKey( iCalLanguage.RepName ) ){
iCalParameter langParam =
content.Params[ iCalLanguage.RepName ];
this.Language = langParam.Value();
}
if( content.Params.ContainsKey( iCalAlternateTextRepresentation.RepName ) ){
iCalParameter altrepParam =
content.Params[ iCalAlternateTextRepresentation.RepName ];
this.AltRep = altrepParam.Value();
}
}
public override Object Clone()
{
iCalLocation ret = (iCalLocation)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
ret.Language = this.Language;
ret.AltRep = this.AltRep;
return ret;
}
}
// 3.8.1.8
public class iCalPercentComplete : iCalProperty {
// percent = "PERCENT-COMPLETE" pctparam ":" integer CRLF
// pctparam = *(";" other-param)
public static String RepName = "percent-complete";
public int Value = 0;
public iCalPercentComplete( iCalComponent component )
: base( component ) {}
public iCalPercentComplete( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
this.Value = Int32.Parse( content.Value );
}
public override Object Clone()
{
iCalPercentComplete ret = (iCalPercentComplete)base.Clone();
ret.Value = this.Value;
return ret;
}
}
// 3.8.1.9
public class iCalPriority : iCalProperty {
// priority = "PRIORITY" prioparam ":" priovalue CRLF
// ;Default is zero (i.e., undefined).
// prioparam = *(";" other-param)
// priovalue = integer ;Must be in the range [0..9]
// ; All other values are reserved for future use.
public static String RepName = "priority";
public int Value = 0;
public iCalPriority( iCalComponent component )
: base( component ) {}
public iCalPriority( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
this.Value = Int32.Parse( content.Value );
}
public override Object Clone()
{
iCalPriority ret = (iCalPriority)base.Clone();
ret.Value = this.Value;
return ret;
}
}
// 3.8.1.10
public class iCalResources : iCalProperty {
// resources = "RESOURCES" resrcparam ":" text *("," text) CRLF
// resrcparam = *(
// ;
// ; The following are OPTIONAL,
// ; but MUST NOT occur more than once.
// ;
// (";" altrepparam) / (";" languageparam) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
public static String RepName = "resources";
public List<iCalText> Values = new List<iCalText>();
public String Language = null;
public String AltRep = null;
public iCalResources( iCalComponent component )
: base( component ) {}
public iCalResources( iCalLineContent content,
iCalComponent component )
: base( content, component ) {
this.Values = iCalText.ParseMultipleTexts( content.Value );
if( content.Params.ContainsKey( iCalLanguage.RepName ) ){
iCalParameter langParam =
content.Params[ iCalLanguage.RepName ];
this.Language = langParam.Value();
}
if( content.Params.ContainsKey( iCalAlternateTextRepresentation.RepName ) ){
iCalParameter altrepParam =
content.Params[ iCalAlternateTextRepresentation.RepName ];
this.AltRep = altrepParam.Value();
}
}
public override Object Clone()
{
iCalResources ret = (iCalResources)base.Clone();
ret.Values = new List<iCalText>();
foreach( iCalText text in this.Values ){
ret.Values.Add( (iCalText)text.Clone() );
}
ret.Language = this.Language;
ret.AltRep = this.AltRep;
return ret;
}
}
// 3.8.1.11
public class iCalStatus : iCalProperty
{
// status = "STATUS" statparam ":" statvalue CRLF
// statparam = *(";" other-param)
// statvalue = (statvalue-event
// / statvalue-todo
// / statvalue-jour)
// statvalue-event = "TENTATIVE" ;Indicates event is tentative.
// / "CONFIRMED" ;Indicates event is definite.
// / "CANCELLED" ;Indicates event was cancelled.
// ;Status values for a "VEVENT"
// statvalue-todo = "NEEDS-ACTION" ;Indicates to-do needs action.
// / "COMPLETED" ;Indicates to-do completed.
// / "IN-PROCESS" ;Indicates to-do in process of.
// / "CANCELLED" ;Indicates to-do was cancelled.
// ;Status values for "VTODO".
// statvalue-jour = "DRAFT" ;Indicates journal is draft.
// / "FINAL" ;Indicates journal is final.
// / "CANCELLED" ;Indicates journal is removed.
// ;Status values for "VJOURNAL".
public static String RepName = "status";
public enum ValueType { Other=0, Tentative, Confirmed, Cancelled,
NeedsAction, Completed, InProcess,
Draft, Final }
public ValueType Value = 0;
public iCalStatus( iCalComponent component ) : base( component ) {}
public iCalStatus( iCalLineContent content, iCalComponent component )
: base( content, component ) {
String value = content.Value.ToLower();
if( value == "tentative" ){
this.Value = ValueType.Tentative;
} else if( value == "confirmed" ){
this.Value = ValueType.Confirmed;
} else if( value == "cancelled" ){
this.Value = ValueType.Cancelled;
} else if( value == "needs-action" ){
this.Value = ValueType.NeedsAction;
} else if( value == "completed" ){
this.Value = ValueType.Completed;
} else if( value == "in-process" ){
this.Value = ValueType.InProcess;
} else if( value == "draft" ){
this.Value = ValueType.Draft;
} else if( value == "final" ){
this.Value = ValueType.Final;
} else {
this.Value = ValueType.Other;
}
}
public override Object Clone()
{
iCalStatus ret = (iCalStatus)base.Clone();
ret.Value = this.Value;
return ret;
}
}
// 3.8.1.12
public class iCalSummary : iCalProperty {
// summary = "SUMMARY" summparam ":" text CRLF
// summparam = *(
// ;
// ; The following are OPTIONAL,
// ; but MUST NOT occur more than once.
// ;
// (";" altrepparam) / (";" languageparam) /
// ;
// ; The following is OPTIONAL,
// ; and MAY occur more than once.
// ;
// (";" other-param)
// ;
// )
public static String RepName = "summary";
public iCalText Value = null;
public String Language = null;
public String AltRep = null;
public iCalSummary( iCalComponent component )
: base( component ) {}
public iCalSummary( iCalLineContent content, iCalComponent component )
: base( content, component ) {
this.Value = new iCalText( content.Value );
if( content.Params.ContainsKey( iCalLanguage.RepName ) ){
iCalParameter langParam =
content.Params[ iCalLanguage.RepName ];
this.Language = langParam.Value();
}
if( content.Params.ContainsKey( iCalAlternateTextRepresentation.RepName ) ){
iCalParameter altrepParam =
content.Params[ iCalAlternateTextRepresentation.RepName ];
this.AltRep = altrepParam.Value();
}
}
public override Object Clone()
{
iCalSummary ret = (iCalSummary)base.Clone();
if( this.Value != null ){
ret.Value = (iCalText)this.Value.Clone();
}
ret.Language = this.Language;
ret.AltRep = this.AltRep;
return ret;
}
}
// base class of DateTimeStart DateTimeEnd...
public abstract class iCalDateTimeProperty
: iCalProperty, IComparable<iCalDateTimeProperty>
{
// public Dictionary<String,iCalParameter> Params = null;
// public iCalTimeZone TimeZone = null;
public String TimeZoneId = null;
// public iCalTimeRelatedType DateTime = null;
public iCalTimeRelatedType Value = null;
public iCalDateTimeProperty( iCalComponent component )
: base( component ) {}
public iCalDateTimeProperty( iCalDateTimeProperty prop,
iCalComponent component )
: base( component )
{
if (prop.TimeZoneId != null) {
this.TimeZoneId = prop.TimeZoneId;
} else {
this.TimeZoneId = null;
}
if( prop.Value != null ){
this.Value = (iCalTimeRelatedType)prop.Value.Clone();
}
}
public iCalDateTimeProperty( iCalLineContent content,
iCalComponent component )
: base( content, component )
{
// this.Params = new Dictionary<String,iCalParameter>(content.Params);
String key;
key = iCalTimeZoneIdentifierParameter.RepName;
if( content.Params.ContainsKey( key ) ){
iCalParameter timeZoneParam = content.Params[ key ];
this.TimeZoneId = timeZoneParam.Value();
}
key = iCalValueDataType.RepName;
if( content.Params.ContainsKey( key ) ){
iCalValueDataType valueParam =
(iCalValueDataType)content.Params[ key ];
String value = valueParam.Value().ToLower();
int tmp = valueParam.GetValueType(value);
iCalValueDataType.ValueType valueType =
(iCalValueDataType.ValueType)valueParam.GetValueType( value );
if( valueType == iCalValueDataType.ValueType.Date ){
this.Value = new iCalDate( content.Value );
} else {
this.Value = new iCalDateTime( content.Value );
}
} else {
iCalDateTime datetime = new iCalDateTime( content.Value );
if( datetime.Time == null ){
this.Value = datetime.Date;
} else {
this.Value = datetime;
}
}
}
public override Object Clone()
{
iCalDateTimeProperty ret = (iCalDateTimeProperty)base.Clone();
ret.TimeZoneId = this.TimeZoneId;
if( this.Value != null ){
ret.Value = (iCalTimeRelatedType)this.Value.Clone();
}
return ret;
}
public iCalDateTimeProperty ToUTC()
{
iCalDateTimeProperty ret = (iCalDateTimeProperty)this.Clone();
iCalDateTime datetime = this.Value as iCalDateTime;
if( datetime != null ){
if (datetime.Time != null && datetime.Time.IsUTC == false) {
if (this.TimeZoneId != null) {
// String id = this.TimeZoneId.ToString();
iCalTimeZone timeZone =
this.Component.GetTimeZoneById(this.TimeZoneId);
if (timeZone != null) {
ret.Value = timeZone.ToUTC(datetime);
}
} else {
datetime = (iCalDateTime)datetime.Clone();
datetime.Time.IsUTC = true;
ret.Value = datetime;
}
}
}
ret.TimeZoneId = null;
return ret;
}
public override int GetHashCode()
{
return (this.TimeZoneId.GetHashCode() +
this.Value.GetHashCode() );
}
public iCalDateTimeProperty ToLocal()
{
return this.ToLocal( TimeZoneInfo.Local );
}
public iCalDateTimeProperty ToLocal( TimeZoneInfo timeZoneInfo )
{
iCalDateTimeProperty ret = this.ToUTC();
iCalDateTime datetime = ret.Value as iCalDateTime;
if( datetime != null ){
DateTime systemDateTime = (DateTime)datetime;
systemDateTime =
TimeZoneInfo.ConvertTime( systemDateTime,
timeZoneInfo );
bool check =
timeZoneInfo.IsDaylightSavingTime( systemDateTime );
datetime = new iCalDateTime( systemDateTime );
datetime.Time.IsUTC = false;
ret.Value = datetime;
}
return ret;
}
public int CompareTo( iCalDateTimeProperty other )
{
iCalDurationProperty ret = this - other;
if( ret.Value.IsMinus ){
return -1;
} else if( ret.Value.IsZero() ){
return 0;
} else {
return 1;
}
}
public bool Equals( iCalDateTimeProperty other ){
int ret = this.CompareTo( other );
if( ret == 0 ){
return true;
}
return false;
}
public override bool Equals(object obj) {
iCalDateTimeProperty prop = obj as iCalDateTimeProperty;
if( prop != null ){
return this.Equals( prop );
} else {
return base.Equals(obj);
}
}
public static iCalDurationProperty
operator - ( iCalDateTimeProperty date1,
iCalDateTimeProperty date2 )
{
if( date1.TimeZoneId != date2.TimeZoneId ){
date1 = date1.ToUTC();
date2 = date2.ToUTC();
}
iCalDurationDataType durationType = date1.Value - date2.Value;
iCalDurationProperty ret = new iCalDurationProperty( date1.Component );
ret.Value = durationType;