New test.
[mono.git] / mcs / class / Microsoft.Build.Tasks / Mono.XBuild.Tasks.GenerateResourceInternal / TxtResourceReader.cs
1 //
2 // TxtResourceReader: Reader from monoresgen.
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //   Paolo Molaro (lupus@ximian.com)
7 //   Gonzalo Paniagua Javier (gonzalo@ximian.com)
8 //
9 // (C) 2005 Marek Sieradzki
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
30 #if NET_2_0
31
32 using System;
33 using System.Collections;
34 using System.IO;
35 using System.Resources;
36 using System.Text;
37
38 namespace Mono.XBuild.Tasks.GenerateResourceInternal {
39         internal class TxtResourceReader : IResourceReader {
40                 Hashtable data;
41                 Stream s;
42
43                 public TxtResourceReader (Stream stream)
44                 {
45                         data = new Hashtable ();
46                         s = stream;
47                         Load ();
48                 }
49
50                 public virtual void Close ()
51                 {
52                 }
53
54                 public IDictionaryEnumerator GetEnumerator()
55                 {
56                         return data.GetEnumerator ();
57                 }
58
59                 void Load ()
60                 {
61                         StreamReader reader = new StreamReader (s);
62                         string line, key, val;
63                         int epos, line_num = 0;
64                         while ((line = reader.ReadLine ()) != null) {
65                                 line_num++;
66                                 line = line.Trim ();
67                                 if (line.Length == 0 || line [0] == '#' ||
68                                     line [0] == ';')
69                                         continue;
70                                 epos = line.IndexOf ('=');
71                                 if (epos < 0) 
72                                         throw new Exception ("Invalid format at line " + line_num);
73                                 key = line.Substring (0, epos);
74                                 val = line.Substring (epos + 1);
75                                 key = key.Trim ();
76                                 val = val.Trim ();
77                                 if (key.Length == 0) 
78                                         throw new Exception ("Key is empty at line " + line_num);
79                                 data.Add (key, val);
80                         }
81                 }
82
83                 IEnumerator IEnumerable.GetEnumerator ()
84                 {
85                         return ((IResourceReader) this).GetEnumerator();
86                 }
87
88                 void IDisposable.Dispose ()
89                 {
90                 }
91         }
92 }
93
94 #endif