-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathiCalReader.cs
166 lines (148 loc) · 5.58 KB
/
iCalReader.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
// Copyright 2011 Miyako Komooka
using System;
using System.IO;
using System.Collections.Generic;
// using System.Linq;
using System.Text;
namespace iCalLibrary // based on rfc5545
{
using Parameter;
public class iCalReader
{
TextReader reader = null;
String cachedLine = null;
public iCalReader( String filename )
{
this.reader = new StreamReader( filename,
Encoding.GetEncoding("UTF-8") );
}
public iCalReader( TextReader reader )
{
this.reader = reader;
}
public String ReadLine()
{
String line = null;
String contentLine = null;
if( this.cachedLine != null ){
contentLine = this.cachedLine;
this.cachedLine = null;
}
while( ( line = this.reader.ReadLine() ) != null ){
if ( line == null || line.Length == 0)
{
continue;
}
if( line[0] == ' ' || line[0] == '\t' ){
contentLine += line.Substring( 1 );
} else {
if( contentLine == null ){
contentLine = line;
} else {
this.cachedLine = line;
break;
}
}
}
return contentLine;
}
public iCalLineContent ReadContent()
{
// contentLine = name *(";" param-name '=' paramvalue, *( "," paramvalue ) ) ":" value
// name, param-name, is alphabe or digit or '-'
// param-value is any char except double-quote("), comma(,), colon(:), semi-colon(;)
// param-value may quoted. in that case, any char except
// double-quote(") inside.
// name of property, param, enumed value and param value is case-insensitive
String contentLine = this.ReadLine();
if( contentLine == null )
return null;
int mode = 1;
iCalLineContent content = new iCalLineContent();
content.original = contentLine;
String paramName = "";
String paramValue = "";
iCalParameterFactory factory = new iCalParameterFactory();
iCalParameter param = null;
for( int i = 0 ; i < contentLine.Length; i++ ){
Char c = contentLine[i];
if ( mode == 1 ){ // parsing name
if( c == ':' ){
mode = 2;
} else if ( c == ';' ) {
mode = 3;
// param = new iCalParameter();
paramName = "";
} else {
content.Name += Char.ToLower( c );
}
} else if ( mode == 2 ) { // value
content.Value = contentLine.Substring( i );
// end of line parse
break;
} else if ( mode == 3 ) { // parameter name
if( c == '=' ){
mode = 4;
// paramName = param.Name;
param = factory.Create( paramName );
param.Name = paramName;
content.Params[ paramName ] = param;
paramValue = "";
} else if( c == ';' ) { // irregular
param = factory.Create( paramName );
content.Params[ paramName ] = param;
param = null;
} else if( c == ':' ) { // irregular
param = factory.Create( paramName );
content.Params[ paramName ] = param;
mode = 2;
} else {
paramName += Char.ToLower( c );
}
} else if ( mode == 4 ){ // parameter value
if( c == ',' ){
content.Params[ paramName ].Values.Add( paramValue );
paramValue = "";
} else if( c == ';' ) {
content.Params[ paramName ].Values.Add( paramValue );
param = new iCalParameter();
paramValue = "";
paramName = "";
mode = 3;
} else if( c == ':' ) {
content.Params[paramName].Values.Add(paramValue);
mode = 2;
} else if( c == '\"' ){
mode = 5;
} else {
paramValue += c;
}
} else if ( mode == 5 ){ // double quoted parameter value
if( c == '\"' ){
mode = 4;
} else {
// parameter value in double-quote is case sensitive
paramValue += c;
}
}
}
return content;
}
public void Close()
{
this.reader.Close();
}
public void Dispose()
{
this.reader.Dispose();
}
}
public class iCalLineContent
{
public String Name;
public Dictionary<String,iCalParameter> Params =
new Dictionary<String,iCalParameter>();
public String Value;
public String original; // just for debug
}
}