コード例 #1
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
 /// <summary>
 /// Receive a message from the WebSocket server.
 /// </summary>
 /// <param name="buffer">An ArraySegment of byte that was returned</param>
 /// <returns></returns>
 public PPError Receive(ArraySegment <byte> buffer)
 {
     ThrowIfNotConnected();
     // |receiveVar| must be valid until |callback| is invoked.
     // Just use a member variable.
     return((PPError)PPBWebSocket.ReceiveMessage(this, out receiveVar, new CompletionCallback <ArraySegment <byte> >(OnReceiveData, buffer)));
 }
コード例 #2
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        /// <summary>
        /// Sends a message to the WebSocket server
        /// </summary>
        /// <param name="buffer">An ArraySegment of bytes that will be sent to the WebSocket server.</param>
        /// <param name="messageType">This is the message type to send Binary or Text</param>
        /// <returns>Ok or an error</returns>
        public PPError Send(ArraySegment <byte> buffer, WebSocketMessageType messageType)
        {
            ThrowIfNotConnected();

            if (messageType != WebSocketMessageType.Binary &&
                messageType != WebSocketMessageType.Text)
            {
                throw new ArgumentException($"Invalid Message Type {messageType} in method Send - Valid values are {WebSocketMessageType.Binary}, {WebSocketMessageType.Text}",
                                            "messageType");
            }

            ValidateArraySegment <byte>(buffer, "buffer");

            if (messageType == WebSocketMessageType.Text)
            {
                var varBuffer = new Var(Encoding.UTF8.GetString(buffer.Array));
                return((PPError)PPBWebSocket.SendMessage(this, varBuffer));
            }
            else
            {
                var size        = (uint)buffer.Count;
                var arrayBuffer = new VarArrayBuffer(size);

                var data = arrayBuffer.Map();
                for (int i = 0; i < size; ++i)
                {
                    data[i] = buffer.Array[i];
                }
                arrayBuffer.Flush();
                arrayBuffer.Unmap();

                return((PPError)PPBWebSocket.SendMessage(this, arrayBuffer));
            }
        }
コード例 #3
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        /// <summary>
        /// Closes the connection to the WebSocket server
        /// </summary>
        /// <param name="closeCode">The WebSocket close status</param>
        /// <param name="reason">A description of the close status.</param>
        /// <returns></returns>
        public PPError Close(WebSocketCloseStatus closeCode, string reason = null)
        {
            ThrowIfNotConnected();

            return((PPError)PPBWebSocket.Close(this, (ushort)closeCode,
                                               string.IsNullOrEmpty(reason) ? null : new Var(reason),
                                               new CompletionCallback(OnClose)));
        }
コード例 #4
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        private async Task <PPError> ConnectAsyncCore(Uri uri, string[] protocols, MessageLoop connectLoop = null)
        {
            var tcs = new TaskCompletionSource <PPError>();
            EventHandler <PPError> handler = (s, e) => { tcs.TrySetResult(e); };

            try
            {
                Connection += handler;

                if (MessageLoop == null && connectLoop == null)
                {
                    Connect(uri, protocols);
                }
                else
                {
                    PPVar[] varProtocols = null;

                    if (protocols != null)
                    {
                        varProtocols = new PPVar[protocols.Length];

                        for (int p = 0; p < protocols.Length; p++)
                        {
                            varProtocols[p] = new Var(protocols[p]);
                        }
                    }
                    Action <PPError> action = new Action <PPError>((e) =>
                    {
                        var result = (PPError)PPBWebSocket.Connect(this, new Var(uri.AbsoluteUri),
                                                                   varProtocols, varProtocols == null ? 0 : (uint)varProtocols.Length,
                                                                   new BlockUntilComplete()
                                                                   );
                        tcs.TrySetResult(result);
                    }
                                                                   );
                    InvokeHelper(action, connectLoop);
                }
                return(await tcs.Task);
            }
            catch (Exception exc)
            {
                Console.WriteLine(exc.Message);
                tcs.SetException(exc);
                return(PPError.Aborted);
            }
            finally
            {
                Connection -= handler;
            }
        }
コード例 #5
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        private async Task <PPError> CloseAsyncCore(WebSocketCloseStatus closeCode, string reason = null, MessageLoop closeLoop = null)
        {
            var tcs = new TaskCompletionSource <PPError>();
            EventHandler <PPError> handler = (s, e) => { tcs.TrySetResult(e); };

            try
            {
                Closed += handler;

                if (MessageLoop == null && closeLoop == null)
                {
                    Close(closeCode, reason);
                }
                else
                {
                    Action <PPError> action = new Action <PPError>((e) =>
                    {
                        var result = (PPError)PPBWebSocket.Close(this, (ushort)closeCode,
                                                                 string.IsNullOrEmpty(reason) ? null : new Var(reason),
                                                                 new BlockUntilComplete()
                                                                 );
                        tcs.TrySetResult(result);
                    }
                                                                   );
                    InvokeHelper(action, closeLoop);
                }
                return(await tcs.Task);
            }
            catch (Exception exc)
            {
                Console.WriteLine(exc.Message);
                tcs.SetException(exc);
                return(PPError.Aborted);
            }
            finally
            {
                Closed -= handler;
            }
        }
コード例 #6
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        /// <summary>
        /// Connects asynchronously to the specified WebSocket server
        /// </summary>
        /// <param name="url">The URI of the WebSocket server to connect to.</param>
        /// <param name="protocols"></param>
        ///
        public Task <PPError> ConnectAsync(Uri url, MessageLoop messageLoop, string[] protocols = null, MessageLoop connectLoop = null)
        {
            if (PPBWebSocket.IsWebSocket(this) != PPBool.True)
            {
                throw new PlatformNotSupportedException("Websocket not supported");
            }

            if (url == null)
            {
                throw new ArgumentNullException(nameof(url));
            }
            if (!url.IsAbsoluteUri)
            {
                throw new ArgumentException("Not Absolute URI", nameof(url));
            }
            if (url.Scheme.ToLower() != UriSchemeWs && url.Scheme.ToLower() != UriSchemeWss)
            {
                throw new ArgumentException("Scheme invalid", nameof(url));
            }

            return(ConnectAsyncCore(url, protocols, connectLoop));
        }
コード例 #7
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        /// <summary>
        /// Connects to the specified WebSocket server
        /// </summary>
        /// <param name="url">The URI of the WebSocket server to connect to.</param>
        /// <param name="protocols"></param>
        public void Connect(Uri url, string[] protocols = null)
        {
            if (PPBWebSocket.IsWebSocket(this) != PPBool.True)
            {
                throw new PlatformNotSupportedException("Websocket not supported");
            }

            if (url == null)
            {
                throw new ArgumentNullException(nameof(url));
            }
            if (!url.IsAbsoluteUri)
            {
                throw new ArgumentException("Not Absolute URI", nameof(url));
            }
            if (url.Scheme.ToLower() != UriSchemeWs && url.Scheme.ToLower() != UriSchemeWss)
            {
                throw new ArgumentException("Scheme invalid", nameof(url));
            }

            PPVar[] varProtocols = null;

            if (protocols != null)
            {
                varProtocols = new PPVar[protocols.Length];

                for (int p = 0; p < protocols.Length; p++)
                {
                    varProtocols[p] = new Var(protocols[p]);
                }
            }

            var connectResult = (PPError)PPBWebSocket.Connect(this, new Var(url.AbsoluteUri),
                                                              varProtocols, varProtocols == null ? 0 : (uint)varProtocols.Length,
                                                              new CompletionCallback(OnConnect)
                                                              );
        }
コード例 #8
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        private async Task <WebSocketReceiveResult> ReceiveAsyncCore(ArraySegment <byte> buffer, MessageLoop receiveLoop = null)
        {
            var tcs = new TaskCompletionSource <WebSocketReceiveResult>();
            EventHandler <WebSocketReceiveResult> handler = (s, e) => { tcs.TrySetResult(e); };

            try
            {
                ReceiveData += handler;

                if (MessageLoop == null)
                {
                    //Console.WriteLine("Receive no message loop");
                    var receiveResult = Receive(buffer);
                    if (receiveResult != PPError.Ok && !tcs.Task.IsCompleted)
                    {
                        tcs.TrySetResult(new WebSocketReceiveResult(0, WebSocketMessageType.Close, true));
                    }
                }
                else
                {
                    Action <PPError> action = new Action <PPError>((e) =>
                    {
                        var rcvMsgResult = (PPError)PPBWebSocket.ReceiveMessage(this, out receiveVar, new BlockUntilComplete());
                        WebSocketReceiveResult receiveResult = null;
                        var recVar = (Var)receiveVar;
                        if (State == WebSocketState.Open)
                        {
                            if (recVar.IsArrayBuffer)
                            {
                                var arrayBuffer = new VarArrayBuffer(receiveVar);
                                var size        = (uint)Math.Min(buffer.Count, arrayBuffer.ByteLength);

                                int offs = 0;
                                var data = arrayBuffer.Map();
                                for (offs = 0; offs < size; offs++)
                                {
                                    buffer.Array[offs] = data[offs];
                                }
                                arrayBuffer.Unmap();
                                receiveResult = new WebSocketReceiveResult(size, WebSocketMessageType.Binary, true);
                            }
                            else
                            {
                                var msg  = Encoding.UTF8.GetBytes(recVar.AsString());
                                var size = (uint)Math.Min(buffer.Count, msg.Length);

                                int offs = 0;
                                for (offs = 0; offs < size; offs++)
                                {
                                    buffer.Array[offs] = msg[offs];
                                }
                                receiveResult = new WebSocketReceiveResult(size, WebSocketMessageType.Text, true);
                            }
                        }
                        else
                        {
                            receiveResult = new WebSocketReceiveResult(0, WebSocketMessageType.Close, true, CloseStatus, CloseStatusDescription);
                        }

                        tcs.TrySetResult(receiveResult);
                    }
                                                                   );
                    InvokeHelper(action, receiveLoop);
                }
                return(await tcs.Task);
            }
            catch (Exception exc)
            {
                Console.WriteLine(exc.Message);
                tcs.SetException(exc);
                return(new WebSocketReceiveResult(0, WebSocketMessageType.Close, true));
            }
            finally
            {
                ReceiveData -= handler;
            }
        }
コード例 #9
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
 /// <summary>
 /// Constructs a WebSocket object.
 /// </summary>
 /// <param name="instance">The instance with which this resource will be
 /// associated.</param>
 public WebSocket(Instance instance)
 {
     handle = PPBWebSocket.Create(instance);
 }
コード例 #10
0
ファイル: WebSocket.cs プロジェクト: vzolotov/WebSharp
        private async Task <PPError> SendAsyncCore(ArraySegment <byte> buffer, WebSocketMessageType messageType, MessageLoop sendLoop)
        {
            var tcs = new TaskCompletionSource <PPError>();

            try
            {
                if (messageType == WebSocketMessageType.Text)
                {
                    if (MessageLoop == null)
                    {
                        tcs.TrySetResult(Send(buffer, messageType));
                    }
                    else
                    {
                        Action <PPError> action = new Action <PPError>((e) =>
                        {
                            var varBuffer = new Var(Encoding.UTF8.GetString(buffer.Array));
                            var result    = (PPError)PPBWebSocket.SendMessage(this, varBuffer);
                            tcs.TrySetResult(result);
                        }
                                                                       );
                        InvokeHelper(action, sendLoop);
                    }
                }
                else
                {
                    if (MessageLoop == null)
                    {
                        tcs.TrySetResult(Send(buffer, messageType));
                    }
                    else
                    {
                        Action <PPError> action = new Action <PPError>((e) =>
                        {
                            var size        = (uint)buffer.Count;
                            var arrayBuffer = new VarArrayBuffer(size);

                            var data = arrayBuffer.Map();
                            for (int i = 0; i < size; ++i)
                            {
                                data[i] = buffer.Array[i];
                            }
                            arrayBuffer.Flush();
                            arrayBuffer.Unmap();

                            var result = (PPError)PPBWebSocket.SendMessage(this, arrayBuffer);
                            tcs.TrySetResult(result);
                        });
                        InvokeHelper(action, sendLoop);
                    }
                }

                return(await tcs.Task);
            }
            catch (Exception exc)
            {
                Console.WriteLine(exc.Message);
                tcs.SetException(exc);
                return(PPError.Aborted);
            }
        }