2010-06-07 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mcs / class / corlib / System.Text / MLangCodePageEncoding.cs
1 //
2 // System.Text.MLangCodePageEncoding.cs
3 //
4 // Author:
5 //   Kornél Pál <http://www.kornelpal.hu/>
6 //
7 // Copyright (C) 2006 Kornél Pál
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 //
32 // These proxy classes implement IObjectReference.GetRealObject() that returns
33 // an instance of the appropriate Encoding, Encoder or Decoder class.
34 // As a result serialized objects of these types will transparently be
35 // deserialized to instances of the above described classes.
36 //
37 // Use SerializationInfo.SetType() in ISerializable.GetObjectData() method of
38 // serializable classes to serialize their instances using a proxy class.
39 //
40 // All of these proxy classes are non-public thus they only have to be
41 // serialization compatible with .NET Framework.
42 //
43
44 //
45 // .NET Framework 1.x uses this class for internal encodings and
46 // .NET Framework 2.0 serializes internal encodings using a proxy.
47 // This class supports serialization compatibility.
48 //
49
50 using System;
51 using System.Runtime.Serialization;
52
53 namespace System.Text
54 {
55         [Serializable]
56         internal sealed class MLangCodePageEncoding : ISerializable, IObjectReference
57         {
58                 //
59                 // .NET Framework 1.x uses this class for internal encoders.
60                 // .NET Framework 2.0 can deserialize them using a proxy although
61                 // this class is not serializable in .NET Framework 1.x.
62                 // This class supports serialization compatibility.
63                 //
64
65                 [Serializable]
66                 private sealed class MLangEncoder : ISerializable, IObjectReference
67                 {
68                         private Encoding encoding;
69                         private Encoder realObject;
70
71                         private MLangEncoder (SerializationInfo info, StreamingContext context)
72                         {
73                                 if (info == null)
74                                         throw new ArgumentNullException ("info");
75
76                                 this.encoding = (Encoding) info.GetValue ("m_encoding", typeof (Encoding));
77                         }
78
79                         public void GetObjectData (SerializationInfo info, StreamingContext context)
80                         {
81                                 throw new ArgumentException ("This class cannot be serialized.");
82                         }
83
84                         public object GetRealObject (StreamingContext context)
85                         {
86                                 if (this.realObject == null)
87                                         this.realObject = this.encoding.GetEncoder ();
88
89                                 return this.realObject;
90                         }
91                 }
92
93                 //
94                 // .NET Framework 1.x uses this class for internal decoders.
95                 // .NET Framework 2.0 can deserialize them using a proxy although
96                 // this class is not serializable in .NET Framework 1.x.
97                 // This class supports serialization compatibility.
98                 //
99
100                 [Serializable]
101                 private sealed class MLangDecoder : ISerializable, IObjectReference
102                 {
103                         private Encoding encoding;
104                         private Decoder realObject;
105
106                         private MLangDecoder (SerializationInfo info, StreamingContext context)
107                         {
108                                 if (info == null)
109                                         throw new ArgumentNullException ("info");
110
111                                 this.encoding = (Encoding) info.GetValue ("m_encoding", typeof (Encoding));
112                         }
113
114                         public void GetObjectData (SerializationInfo info, StreamingContext context)
115                         {
116                                 throw new ArgumentException ("This class cannot be serialized.");
117                         }
118
119                         public object GetRealObject (StreamingContext context)
120                         {
121                                 if (this.realObject == null)
122                                         this.realObject = this.encoding.GetDecoder ();
123
124                                 return this.realObject;
125                         }
126                 }
127
128                 private int codePage;
129                 private bool isReadOnly;
130                 private EncoderFallback encoderFallback;
131                 private DecoderFallback decoderFallback;
132                 private Encoding realObject;
133
134                 private MLangCodePageEncoding (SerializationInfo info, StreamingContext context)
135                 {
136                         if (info == null)
137                                 throw new ArgumentNullException ("info");
138
139                         this.codePage = (int) info.GetValue ("m_codePage", typeof (int));
140
141                         try {
142                                 this.isReadOnly = (bool) info.GetValue ("m_isReadOnly", typeof (bool));
143                                 this.encoderFallback = (EncoderFallback) info.GetValue ("encoderFallback", typeof (EncoderFallback));
144                                 this.decoderFallback = (DecoderFallback) info.GetValue ("decoderFallback", typeof (DecoderFallback));
145                         } catch (SerializationException) {
146                                 // .NET Framework 1.x has no fallbacks
147                                 this.isReadOnly = true;
148                         }
149                 }
150
151                 public void GetObjectData (SerializationInfo info, StreamingContext context)
152                 {
153                         throw new ArgumentException ("This class cannot be serialized.");
154                 }
155
156                 public object GetRealObject (StreamingContext context)
157                 {
158                         if (this.realObject == null) {
159                                 Encoding encoding = Encoding.GetEncoding (this.codePage);
160
161                                 if (!this.isReadOnly) {
162                                         encoding = (Encoding) encoding.Clone ();
163                                         encoding.EncoderFallback = this.encoderFallback;
164                                         encoding.DecoderFallback = this.decoderFallback;
165                                 }
166                                 this.realObject = encoding;
167                         }
168
169                         return this.realObject;
170                 }
171         }
172 }