* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels / BinaryServerFormatterSinkProvider.cs
1 //
2 // System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.cs
3 //
4 // Author: Rodrigo Moya (rodrigo@ximian.com)
5 //         Lluis Sanchez Gual (lluis@ximian.com)
6 //
7 // 2002 (C) Copyright, Ximian, 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 using System.Collections;
32 using System.Runtime.Serialization.Formatters;
33 using System.Runtime.InteropServices;
34
35 namespace System.Runtime.Remoting.Channels
36 {
37         public class BinaryServerFormatterSinkProvider :
38                 IServerFormatterSinkProvider, IServerChannelSinkProvider
39         {
40                 IServerChannelSinkProvider next = null;
41                 BinaryCore _binaryCore;
42                 
43 #if NET_1_0
44                 internal static string[] AllowedProperties = new string [] { "includeVersions", "strictBinding" };
45 #else
46                 internal static string[] AllowedProperties = new string [] { "includeVersions", "strictBinding", "typeFilterLevel" };
47 #endif
48
49                 public BinaryServerFormatterSinkProvider ()
50                 {
51                         _binaryCore = BinaryCore.DefaultInstance;
52                 }
53
54                 public BinaryServerFormatterSinkProvider (IDictionary properties,
55                                                           ICollection providerData)
56                 {
57                         _binaryCore = new BinaryCore (this, properties, AllowedProperties);
58                 }
59
60                 public IServerChannelSinkProvider Next
61                 {
62                         get {
63                                 return next;
64                         }
65
66                         set {
67                                 next = value;
68                         }
69                 }
70
71 #if NET_1_1
72                 [ComVisible(false)]
73                 public TypeFilterLevel TypeFilterLevel
74                 {
75                         get { return _binaryCore.TypeFilterLevel; }
76                         set 
77                         {
78                                 IDictionary props = (IDictionary) ((ICloneable)_binaryCore.Properties).Clone ();
79                                 props ["typeFilterLevel"] = value;
80                                 _binaryCore = new BinaryCore (this, props, AllowedProperties);
81                         }
82                 }
83 #endif
84
85                 public IServerChannelSink CreateSink (IChannelReceiver channel)
86                 {
87                         IServerChannelSink next_sink = null;
88                         BinaryServerFormatterSink result;
89                         
90                         if (next != null)
91                                 next_sink = next.CreateSink (channel);
92                         
93                         result = new BinaryServerFormatterSink (BinaryServerFormatterSink.Protocol.Other,
94                                                                 next_sink, channel);
95
96                         result.BinaryCore = _binaryCore;
97                         return result;
98                 }
99
100                 public void GetChannelData (IChannelDataStore channelData)
101                 {
102                         // Nothing to add here
103                 }
104         }
105 }