Merge pull request #2237 from xmcclure/container-owner
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / XmlSignatureStreamReader.cs
1 //
2 // XmlSignatureStreamReader.cs: Wrap TextReader and eliminate \r
3 //
4 // Author:
5 //      Atsushi Enomoto (atsushi@ximian.com)
6 //
7 // (C) 2005 Novell Inc.
8 //
9
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 //
31 // Use it to distinguish 
 and \r. \r is removed, while 
 is not.
32 //
33 //
34
35 using System;
36 using System.IO;
37 using System.Runtime.InteropServices;
38
39 namespace System.Security.Cryptography.Xml
40 {
41         internal class XmlSignatureStreamReader : TextReader
42         {
43                 TextReader source;
44                 int cache = int.MinValue;
45
46                 public XmlSignatureStreamReader (TextReader input)
47                 {
48                         source =input;
49                 }
50
51                 public override void Close ()
52                 {
53                         source.Close ();
54                 }
55
56                 public override int Peek ()
57                 {
58                         // If source TextReader does not support Peek(),
59                         // it does not support too. Or it just returns EOF.
60                         if (source.Peek () == -1)
61                                 return -1;
62
63                         if (cache != int.MinValue)
64                                 return cache;
65                         cache = source.Read ();
66                         if (cache != '\r')
67                                 return cache;
68                         // cache must be '\r' here.
69                         if (source.Peek () != '\n')
70                                 return '\r';
71                         // Now Peek() returns '\n', so clear cache.
72                         cache = int.MinValue;
73                         return '\n';
74                 }
75
76                 public override int Read ()
77                 {
78                         if (cache != int.MinValue) {
79                                 int ret = cache;
80                                 cache = int.MinValue;
81                                 return ret;
82                         }
83                         int i = source.Read ();
84                         if (i != '\r')
85                                 return i;
86                         // read one more char (after '\r')
87                         cache = source.Read ();
88                         if (cache != '\n')
89                                 return '\r';
90                         cache = int.MinValue;
91                         return '\n';
92                 }
93
94                 public override int ReadBlock (
95                         [In, Out] char [] buffer, int index, int count)
96                 {
97                         char [] tmp = new char [count];
98                         source.ReadBlock (tmp, 0, count);
99                         int j = index;
100                         for (int i = 0; i < count; j++) {
101                                 if (tmp [i] == '\r') {
102                                         if (++i < tmp.Length && tmp [i] == '\n')
103                                                 buffer [j] = tmp [i++];
104                                         else
105                                                 buffer [j] = '\r';
106                                 }
107                                 else
108                                         buffer [j] = tmp [i];
109                         }
110                         while (j < count) {
111                                 int d = Read ();
112                                 if (d < 0)
113                                         break;
114                                 buffer [j++] = (char) d;
115                         }
116                         return j;
117                 }
118
119                 // I have no idea what to do here, but I don't think it 
120                 // makes sense.
121                 public override string ReadLine ()
122                 {
123                         return source.ReadLine ();
124                 }
125
126                 public override string ReadToEnd ()
127                 {
128                         return source.ReadToEnd ().Replace ("\r\n", "\n");
129                 }
130         }
131 }