2005-08-24 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / Mono.Posix / Mono.Remoting.Channels.Unix / UnixBinaryServerFormatterSinkProvider.cs
1 //
2 // Mono.Remoting.Channels.Unix.UnixBinaryServerFormatterSinkProvider.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 using System.Runtime.Remoting.Channels;
35
36 namespace Mono.Remoting.Channels.Unix
37 {
38         internal class UnixBinaryServerFormatterSinkProvider: IServerFormatterSinkProvider, IServerChannelSinkProvider
39         {
40                 IServerChannelSinkProvider next = null;
41                 UnixBinaryCore _binaryCore;
42                 
43                 internal static string[] AllowedProperties = new string [] { "includeVersions", "strictBinding" };
44
45                 public UnixBinaryServerFormatterSinkProvider ()
46                 {
47                         _binaryCore = UnixBinaryCore.DefaultInstance;
48                 }
49
50                 public UnixBinaryServerFormatterSinkProvider (IDictionary properties, ICollection providerData)
51                 {
52                         _binaryCore = new UnixBinaryCore (this, properties, AllowedProperties);
53                 }
54
55                 public IServerChannelSinkProvider Next
56                 {
57                         get {
58                                 return next;
59                         }
60
61                         set {
62                                 next = value;
63                         }
64                 }
65
66                 public IServerChannelSink CreateSink (IChannelReceiver channel)
67                 {
68                         IServerChannelSink next_sink = null;
69                         UnixBinaryServerFormatterSink result;
70                         
71                         if (next != null)
72                                 next_sink = next.CreateSink (channel);
73                         
74                         result = new UnixBinaryServerFormatterSink (next_sink, channel);
75
76                         result.BinaryCore = _binaryCore;
77                         return result;
78                 }
79
80                 public void GetChannelData (IChannelDataStore channelData)
81                 {
82                         // Nothing to add here
83                 }
84         }
85 }