2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Ipc.Unix / IpcServerChannel.cs
blob2941cd0b24c4c1d30481dbc8c5337ab553a2bd45
1 //
2 // System.Runtime.Remoting.Channels.Ipc.Unix.IpcServerChannel.cs
3 //
4 // Author: Robert Jordan (robertj@gmx.net)
5 //
6 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
7 //
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 #if NET_2_0
31 using System;
32 using System.Collections;
33 using System.IO;
34 using System.Runtime.Remoting;
35 using Win32 = System.Runtime.Remoting.Channels.Ipc.Win32;
37 namespace System.Runtime.Remoting.Channels.Ipc.Unix
39 internal class IpcServerChannel : IChannelReceiver, IChannel
41 object _innerChannel;
42 string _portName;
43 string _path;
45 internal static string BuildPathFromPortName (string portName)
47 if (!Win32.IpcChannelHelper.IsValidPipeName (portName))
48 throw new RemotingException ("Invalid IPC port name");
49 return Path.Combine (Path.GetTempPath (), portName);
52 internal static IDictionary MapProperties (IDictionary props)
54 if (props == null) return null;
55 Hashtable h = new Hashtable ();
57 foreach (DictionaryEntry e in props) {
58 switch (e.Key as string) {
59 case "portName":
60 h ["path"] = BuildPathFromPortName ((string)e.Value);
61 break;
62 default:
63 h [e.Key] = e.Value;
64 break;
67 return h;
70 public IpcServerChannel (string portName)
72 _portName = portName;
73 _path = portName = BuildPathFromPortName (portName);
75 _innerChannel = Activator.CreateInstance(UnixChannelLoader.LoadServerChannel (), new object [] {portName});
78 public IpcServerChannel (string name, string portName,
79 IServerChannelSinkProvider serverSinkProvider)
81 _portName = portName;
82 _path = portName = BuildPathFromPortName (portName);
84 _innerChannel = Activator.CreateInstance(UnixChannelLoader.LoadServerChannel (), new object [] {name, portName, serverSinkProvider});
87 public IpcServerChannel (string name, string portName)
89 _portName = portName = BuildPathFromPortName (portName);
91 _innerChannel = Activator.CreateInstance(UnixChannelLoader.LoadServerChannel (), new object [] {name, portName});
94 public IpcServerChannel (IDictionary properties,
95 IServerChannelSinkProvider serverSinkProvider)
97 properties = MapProperties (properties);
98 if (properties != null) {
99 _portName = properties ["portName"] as string;
100 _path = properties ["path"] as string;
103 _innerChannel = Activator.CreateInstance(UnixChannelLoader.LoadServerChannel (), new object [] {properties, serverSinkProvider});
106 public string ChannelName
108 get { return ((IChannel)_innerChannel).ChannelName; }
111 public int ChannelPriority
113 get { return ((IChannel)_innerChannel).ChannelPriority; }
116 public string Parse (string url, out string objectUri)
118 return Win32.IpcChannelHelper.Parse (url, out objectUri);
121 public object ChannelData
123 get { return ((IChannelReceiver)_innerChannel).ChannelData; }
126 public string[] GetUrlsForUri(string objectUri)
128 string[] res = ((IChannelReceiver)_innerChannel).GetUrlsForUri (objectUri);
129 if (res != null) {
130 string[] urls = new string [res.Length + 1];
132 for (int i = 0; i < res.Length; i++)
133 urls [i] = res [i];
135 if (!objectUri.StartsWith ("/"))
136 objectUri = "/" + objectUri;
137 urls [res.Length] = "ipc://" + _portName + objectUri;
138 return urls;
140 return res;
143 public void StartListening (object data)
145 ((IChannelReceiver)_innerChannel).StartListening (data);
148 public void StopListening(object data)
150 ((IChannelReceiver)_innerChannel).StopListening (data);
155 #endif