| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649 |
- //
- // HandlerTransportBindingElement.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright (C) 2005 Novell, Inc. http://www.novell.com
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.IO;
- using System.Net;
- using System.Net.Security;
- using System.Threading;
- using System.Xml;
- using System.ServiceModel;
- using System.ServiceModel.Channels;
- using System.ServiceModel.Description;
- namespace MonoTests.System.ServiceModel.Channels
- {
- public delegate Message RequestSender (Message input);
- public delegate Message RequestReceiver ();
- public delegate void ReplyHandler (Message input);
- public class HandlerTransportBindingElement : TransportBindingElement
- {
- RequestSender sender;
- ReplyHandler reply_handler;
- RequestReceiver receiver;
- public HandlerTransportBindingElement (RequestSender sender)
- {
- this.sender = sender;
- }
- public HandlerTransportBindingElement (ReplyHandler handler, RequestReceiver receiver)
- {
- this.reply_handler = handler;
- this.receiver = receiver;
- }
- public RequestSender RequestSender {
- get { return sender; }
- }
- public ReplyHandler ReplyHandler {
- get { return reply_handler; }
- }
- public RequestReceiver RequestReceiver {
- get { return receiver; }
- }
- public override string Scheme {
- get { return "stream"; }
- }
- public override BindingElement Clone ()
- {
- if (sender != null)
- return new HandlerTransportBindingElement (sender);
- else
- return new HandlerTransportBindingElement (reply_handler, receiver);
- }
- public override bool CanBuildChannelFactory<TChannel> (BindingContext context)
- {
- return typeof (TChannel) == typeof (IRequestChannel) ||
- typeof (TChannel) == typeof (IRequestChannel);
- }
- public override bool CanBuildChannelListener<TChannel> (BindingContext context)
- {
- return typeof (TChannel) == typeof (IReplyChannel) ||
- typeof (TChannel) == typeof (IInputChannel);
- }
- public override IChannelFactory<TChannel> BuildChannelFactory<TChannel> (BindingContext context)
- {
- return new HandlerTransportChannelFactory<TChannel> (this);
- }
- public override IChannelListener<TChannel> BuildChannelListener<TChannel> (BindingContext context)
- {
- // FIXME: pass uri
- return new HandlerTransportChannelListener<TChannel> (this, new Uri ("stream:dummy"));
- }
- }
- public class HandlerTransportChannelFactory<TChannel> : ChannelFactoryBase<TChannel>
- {
- HandlerTransportBindingElement source;
- public HandlerTransportChannelFactory (HandlerTransportBindingElement source)
- {
- this.source = source;
- }
- public HandlerTransportBindingElement Source {
- get { return source; }
- }
- protected override TChannel OnCreateChannel (EndpointAddress address, Uri via)
- {
- if (typeof (TChannel) == typeof (IRequestChannel))
- return (TChannel) (object) new HandlerTransportRequestChannel ((HandlerTransportChannelFactory<IRequestChannel>) (object) this, address, via);
- if (typeof (TChannel) == typeof (IOutputChannel))
- return (TChannel) (object) new HandlerTransportOutputChannel ((HandlerTransportChannelFactory<IOutputChannel>) (object) this, address, via);
- throw new NotSupportedException (String.Format ("Channel '{0}' is not supported.", typeof (TChannel)));
- }
- protected override IAsyncResult OnBeginOpen (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotSupportedException ();
- }
- protected override void OnEndOpen (IAsyncResult result)
- {
- throw new NotSupportedException ();
- }
- protected override void OnOpen (TimeSpan timeout)
- {
- // do nothing
- }
- }
- public class HandlerTransportOutputChannel : OutputChannelBase
- {
- HandlerTransportChannelFactory<IOutputChannel> source;
- EndpointAddress address;
- Uri via;
- public HandlerTransportOutputChannel (HandlerTransportChannelFactory<IOutputChannel> source, EndpointAddress address, Uri via)
- : base (source)
- {
- this.source = source;
- this.address = address;
- this.via = via;
- }
- public override EndpointAddress RemoteAddress {
- get { return address; }
- }
- public override Uri Via {
- get { return via; }
- }
- public override void Send (Message input, TimeSpan timeout)
- {
- source.Source.RequestSender (input);
- }
- class OutputAsyncResult : IAsyncResult
- {
- Message message;
- object state;
- bool completed = true;
- public OutputAsyncResult (Message message, object state)
- {
- this.message = message;
- this.state = state;
- }
- public Message Message {
- get { return message; }
- }
- public object AsyncState {
- get { return state; }
- }
- public WaitHandle AsyncWaitHandle {
- get { return null; }
- }
- public bool CompletedSynchronously {
- get { return true; }
- }
- public bool IsCompleted {
- get { return completed; }
- internal set { completed = value; }
- }
- }
- public override IAsyncResult BeginSend (Message input, TimeSpan timeout, AsyncCallback callback, object state)
- {
- // FIXME: timeout is not considered here.
- return new OutputAsyncResult (input, state);
- }
- public override void EndSend (IAsyncResult result)
- {
- source.Source.RequestSender (((OutputAsyncResult) result).Message);
- }
- protected override void OnAbort ()
- {
- }
- protected override void OnOpen (TimeSpan timeout)
- {
- // throw new NotImplementedException ("OnOpen");
- }
- protected override IAsyncResult OnBeginOpen (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginOpen");
- }
- protected override void OnEndOpen (IAsyncResult result)
- {
- throw new NotImplementedException ("OnEndOpen");
- }
- protected override void OnClose (TimeSpan timeout)
- {
- // throw new NotImplementedException ("OnClose");
- }
- protected override IAsyncResult OnBeginClose (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginClose");
- }
- protected override void OnEndClose (IAsyncResult result)
- {
- throw new NotImplementedException ("OnEndClose");
- }
- }
- public class HandlerTransportRequestChannel : RequestChannelBase
- {
- HandlerTransportChannelFactory<IRequestChannel> source;
- EndpointAddress address;
- Uri via;
- public HandlerTransportRequestChannel (HandlerTransportChannelFactory<IRequestChannel> source, EndpointAddress address, Uri via)
- : base (source)
- {
- this.source = source;
- this.address = address;
- this.via = via;
- }
- public override EndpointAddress RemoteAddress {
- get { return address; }
- }
- public override Uri Via {
- get { return via; }
- }
- public override Message Request (Message input, TimeSpan timeout)
- {
- return source.Source.RequestSender (input);
- }
- class RequestAsyncResult : IAsyncResult
- {
- Message message;
- object state;
- bool completed = true;
- public RequestAsyncResult (Message message, object state)
- {
- this.message = message;
- this.state = state;
- }
- public Message Message {
- get { return message; }
- }
- public object AsyncState {
- get { return state; }
- }
- public WaitHandle AsyncWaitHandle {
- get { return null; }
- }
- public bool CompletedSynchronously {
- get { return true; }
- }
- public bool IsCompleted {
- get { return completed; }
- internal set { completed = value; }
- }
- }
- public override IAsyncResult BeginRequest (Message input, TimeSpan timeout, AsyncCallback callback, object state)
- {
- // FIXME: timeout is not considered here.
- return new RequestAsyncResult (input, state);
- }
- public override Message EndRequest (IAsyncResult result)
- {
- return source.Source.RequestSender (((RequestAsyncResult) result).Message);
- }
- protected override void OnAbort ()
- {
- }
- protected override void OnOpen (TimeSpan timeout)
- {
- // throw new NotImplementedException ("OnOpen");
- }
- protected override IAsyncResult OnBeginOpen (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginOpen");
- }
- protected override void OnEndOpen (IAsyncResult result)
- {
- throw new NotImplementedException ("OnEndOpen");
- }
- protected override void OnClose (TimeSpan timeout)
- {
- // throw new NotImplementedException ("OnClose");
- }
- protected override IAsyncResult OnBeginClose (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginClose");
- }
- protected override void OnEndClose (IAsyncResult result)
- {
- throw new NotImplementedException ("OnEndClose");
- }
- }
- public class HandlerTransportChannelListener<TChannel>
- : ChannelListenerBase<TChannel>
- where TChannel : class, IChannel
- {
- HandlerTransportBindingElement source;
- Uri uri;
- public HandlerTransportChannelListener (HandlerTransportBindingElement source, Uri uri)
- {
- this.source = source;
- this.uri = uri;
- }
- public HandlerTransportBindingElement Source {
- get { return source; }
- }
- public override Uri Uri {
- get { return uri; }
- }
- protected override TChannel OnAcceptChannel (TimeSpan timeout)
- {
- if (typeof (TChannel) == typeof (IReplyChannel))
- return (TChannel) (object) new HandlerTransportReplyChannel ((HandlerTransportChannelListener<IReplyChannel>) (object) this);
- throw new NotSupportedException ();
- }
- protected override IAsyncResult OnBeginAcceptChannel (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginAcceptChannel");
- }
- protected override TChannel OnEndAcceptChannel (IAsyncResult result)
- {
- throw new NotImplementedException ("EndAcceptChannel");
- }
- protected override bool OnWaitForChannel (TimeSpan timeout)
- {
- return true;
- }
- protected override IAsyncResult OnBeginWaitForChannel (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginWaitForChannel");
- }
- protected override bool OnEndWaitForChannel (IAsyncResult result)
- {
- throw new NotImplementedException ("EndWaitForChannel");
- }
- protected override void OnAbort ()
- {
- }
- protected override void OnOpen (TimeSpan timeout)
- {
- // throw new NotImplementedException ("OnOpen");
- }
- protected override IAsyncResult OnBeginOpen (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginOpen");
- }
- protected override void OnEndOpen (IAsyncResult result)
- {
- throw new NotImplementedException ("EndOpen");
- }
- protected override void OnClose (TimeSpan timeout)
- {
- //throw new NotImplementedException ("Close");
- }
- protected override IAsyncResult OnBeginClose (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginClose");
- }
- protected override void OnEndClose (IAsyncResult result)
- {
- throw new NotImplementedException ("OnEndClose");
- }
- }
- public class HandlerTransportReplyChannel : ReplyChannelBase
- {
- EndpointAddress address;
- HandlerTransportChannelListener<IReplyChannel> source;
- public HandlerTransportReplyChannel (HandlerTransportChannelListener<IReplyChannel> source)
- : base (source)
- {
- this.source = source;
- address = new EndpointAddress (source.Uri);
- }
- public HandlerTransportChannelListener<IReplyChannel> Source {
- get { return source; }
- }
- public override EndpointAddress LocalAddress {
- get { return address; }
- }
- class ReceiveRequestAsyncResult : IAsyncResult
- {
- object state;
- bool completed = true;
- public ReceiveRequestAsyncResult (object state)
- {
- this.state = state;
- }
- public object AsyncState {
- get { return state; }
- }
- public WaitHandle AsyncWaitHandle {
- get { return null; }
- }
- public bool CompletedSynchronously {
- get { return true; }
- }
- public bool IsCompleted {
- get { return completed; }
- internal set { completed = value; }
- }
- }
- public override RequestContext ReceiveRequest (TimeSpan timeout)
- {
- RequestContext ret;
- if (!TryReceiveRequest (timeout, out ret))
- throw new Exception ();
- return ret;
- }
- public override IAsyncResult BeginReceiveRequest (TimeSpan timeout, AsyncCallback callback, object state)
- {
- return new ReceiveRequestAsyncResult (state);
- }
- public override RequestContext EndReceiveRequest (IAsyncResult result)
- {
- //ReceiveRequestAsyncResult r =
- // (ReceiveRequestAsyncResult) result;
- return new HandlerRequestContext (this);
- }
- public override bool TryReceiveRequest (TimeSpan timeout, out RequestContext ret)
- {
- ret = new HandlerRequestContext (this);
- return true;
- }
- public override IAsyncResult BeginTryReceiveRequest (TimeSpan timeout, AsyncCallback callback, object state)
- {
- // hack, hack
- return new ReceiveRequestAsyncResult (state);
- }
- public override bool EndTryReceiveRequest (IAsyncResult result, out RequestContext ret)
- {
- // hack, hack
- //ReceiveRequestAsyncResult r =
- // (ReceiveRequestAsyncResult) result;
- return TryReceiveRequest (TimeSpan.FromSeconds (5), out ret);
- }
- public override bool WaitForRequest (TimeSpan timeout)
- {
- throw new NotImplementedException ();
- }
- public override IAsyncResult BeginWaitForRequest (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("BeginWaitForRequest");
- }
- public override bool EndWaitForRequest (IAsyncResult result)
- {
- throw new NotImplementedException ("EndWaitForRequest");
- }
- protected override void OnAbort ()
- {
- }
- protected override void OnOpen (TimeSpan timeout)
- {
- // throw new NotImplementedException ("OnOpen");
- }
- protected override IAsyncResult OnBeginOpen (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginOpen");
- }
- protected override void OnEndOpen (IAsyncResult result)
- {
- throw new NotImplementedException ("EndOpen");
- }
- protected override void OnClose (TimeSpan timeout)
- {
- //throw new NotImplementedException ("Close");
- }
- protected override IAsyncResult OnBeginClose (TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("OnBeginClose");
- }
- protected override void OnEndClose (IAsyncResult result)
- {
- throw new NotImplementedException ("OnEndClose");
- }
- }
- public class HandlerRequestContext : RequestContext
- {
- HandlerTransportReplyChannel source;
- Message request_message;
- public HandlerRequestContext (HandlerTransportReplyChannel source)
- {
- this.source = source;
- if (source.Source.Source.RequestReceiver != null)
- request_message = source.Source.Source.RequestReceiver ();
- }
- public override void Abort ()
- {
- }
- public override void Close ()
- {
- }
- public override void Close (TimeSpan timeout)
- {
- }
- public override Message RequestMessage {
- get { return request_message; }
- }
- public override void Reply (Message msg)
- {
- source.Source.Source.ReplyHandler (msg);
- }
- public override void Reply (Message msg, TimeSpan timeout)
- {
- source.Source.Source.ReplyHandler (msg);
- }
- public override IAsyncResult BeginReply (Message msg, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("BeginReply");
- }
- public override IAsyncResult BeginReply (Message msg, TimeSpan timeout, AsyncCallback callback, object state)
- {
- throw new NotImplementedException ("BeginReply");
- }
- public override void EndReply (IAsyncResult result)
- {
- throw new NotImplementedException ("EndReply");
- }
- }
- }
|