| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- //
- // System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.cs
- //
- // Author: Dietmar Maurer ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System.Collections;
- using System.IO;
- using System.Net.Sockets;
- using System.Runtime.Remoting.Messaging;
- using System.Runtime.Remoting.Channels;
- using System.Runtime.Remoting.Channels.Simple;
- using System.Threading;
- namespace System.Runtime.Remoting.Channels.Tcp
- {
- public class TcpClientChannel : IChannelSender, IChannel
- {
- int priority = 1;
- string name = "tcp";
- IClientChannelSinkProvider _sinkProvider;
-
- public TcpClientChannel ()
- {
- }
- public TcpClientChannel (IDictionary properties, IClientChannelSinkProvider sinkProvider)
- {
- priority = 1;
- if (_sinkProvider != null)
- {
- _sinkProvider = sinkProvider;
- // add the tcp provider at the end of the chain
- IClientChannelSinkProvider prov = sinkProvider;
- while (prov.Next != null) prov = prov.Next;
- prov.Next = new TcpClientTransportSinkProvider ();
- // Note: a default formatter is added only when
- // no sink providers are specified in the config file.
- }
- else
- {
- // FIXME: change soap to binary
- _sinkProvider = new SimpleClientFormatterSinkProvider ();
- _sinkProvider.Next = new TcpClientTransportSinkProvider ();
- }
- }
- public TcpClientChannel (string name, IClientChannelSinkProvider sinkProvider)
- {
- priority = 1;
- this.name = name;
- _sinkProvider = sinkProvider;
- // add the tcp provider at the end of the chain
- IClientChannelSinkProvider prov = sinkProvider;
- while (prov.Next != null) prov = prov.Next;
- prov.Next = new TcpClientTransportSinkProvider ();
- }
-
- public string ChannelName
- {
- get {
- return name;
- }
- }
- public int ChannelPriority
- {
- get {
- return priority;
- }
- }
- public IMessageSink CreateMessageSink (string url,
- object remoteChannelData,
- out string objectURI)
- {
- if (url == null && remoteChannelData != null) {
- IChannelDataStore ds = remoteChannelData as IChannelDataStore;
- if (ds != null)
- url = ds.ChannelUris [0];
- }
-
- if (Parse (url, out objectURI) == null)
- return null;
- return (IMessageSink) _sinkProvider.CreateSink (this, url, remoteChannelData);
- }
- public string Parse (string url, out string objectURI)
- {
- return TcpChannel.ParseChannelUrl (url, out objectURI);
- }
- }
- }
|