zrg
2024-08-28 26ba47c84ba0b96943869a541178e7e394d424f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
#region MIT License
/**
 * WebSocket.cs
 *
 * A C# implementation of the WebSocket interface.
 * This code derived from WebSocket.java (http://github.com/adamac/Java-WebSocket-client).
 *
 * The MIT License
 *
 * Copyright (c) 2009 Adam MacBeth
 * Copyright (c) 2010-2012 sta.blockhead
 * 
 * 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.
 */
#endregion
 
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.IO;
using System.Net.Sockets;
using System.Security.Cryptography;
using System.Text;
using System.Threading;
using WebSocketSharp.Frame;
using WebSocketSharp.Net;
using WebSocketSharp.Net.Sockets;
 
namespace WebSocketSharp
{
 
    /// <summary>
    /// Implements the WebSocket interface.
    /// </summary>
    /// <remarks>
    /// The WebSocket class provides methods and properties for two-way communication using the WebSocket protocol (RFC 6455).
    /// </remarks>
    public class WebSocket : IDisposable
    {
        #region Private Const Fields
 
        private const int _fragmentLen = 1016; // Max value is int.MaxValue - 14.
        private const string _guid = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
        private const string _version = "13";
 
        #endregion
 
        #region Private Fields
 
        private string _base64key;
        private HttpListenerContext _httpContext;
        private WebSocketContext _context;
        private System.Net.IPEndPoint _endPoint;
        private string _extensions;
        private AutoResetEvent _exitMessageLoop;
        private Object _forClose;
        private Object _forSend;
        private bool _isClient;
        private bool _isSecure;
        private string _protocol;
        private string _protocols;
        private NameValueCollection _queryString;
        private volatile WsState _readyState;
        private AutoResetEvent _receivePong;
        private TcpClient _tcpClient;
        private Uri _uri;
        private SynchronizedCollection<WsFrame> _unTransmittedBuffer;
        private WsStream _wsStream;
        private string _origin;
 
        #endregion
 
        #region Private Constructor
 
        private WebSocket()
        {
            _extensions = String.Empty;
            _forClose = new Object();
            _forSend = new Object();
            _protocol = String.Empty;
            _readyState = WsState.CONNECTING;
            _unTransmittedBuffer = new SynchronizedCollection<WsFrame>();
        }
 
        #endregion
 
        #region Internal Constructor
 
        internal WebSocket(HttpListenerWebSocketContext context)
            : this()
        {
            _uri = Ext.ToUri(context.Path);
            _context = context;
            _httpContext = context.BaseContext;
            _wsStream = context.Stream;
            _endPoint = context.ServerEndPoint;
            _isClient = false;
            _isSecure = context.IsSecureConnection;
        }
 
        internal WebSocket(TcpListenerWebSocketContext context)
            : this()
        {
            _uri = Ext.ToUri(context.Path);
            _context = context;
            _tcpClient = context.Client;
            _wsStream = context.Stream;
            _endPoint = context.ServerEndPoint;
            _isClient = false;
            _isSecure = context.IsSecureConnection;
        }
 
        #endregion
 
        #region Public Constructors
 
        /// <summary>
        /// Initializes a new instance of the <see cref="WebSocketSharp.WebSocket"/> class with the specified WebSocket URL and subprotocols.
        /// </summary>
        /// <param name="url">
        /// A <see cref="string"/> that contains the WebSocket URL.
        /// </param>
        /// <param name="protocols">
        /// An array of <see cref="string"/> that contains the WebSocket subprotocols if any.
        /// </param>
        /// <exception cref="ArgumentNullException">
        /// <paramref name="url"/> is <see langword="null"/>.
        /// </exception>
        /// <exception cref="ArgumentException">
        /// <paramref name="url"/> is not valid WebSocket URL.
        /// </exception>
        public WebSocket(string url, params string[] protocols)
            : this()
        {
            if (url == null)
                throw new ArgumentNullException("url");
 
            Uri uri;
            string msg;
            if (!tryCreateUri(url, out uri, out msg))
                throw new ArgumentException(msg, "url");
 
            _uri = uri;
            _protocols = Ext.ToString(protocols, ", ");
            _base64key = createBase64Key();
            _isClient = true;
            _isSecure = uri.Scheme == "wss" ? true : false;
        }
 
        /// <summary>
        /// Initializes a new instance of the <see cref="WebSocketSharp.WebSocket"/> class with the specified WebSocket URL, OnOpen, OnMessage, OnError, OnClose event handlers and subprotocols.
        /// </summary>
        /// <param name="url">
        /// A <see cref="string"/> that contains the WebSocket URL.
        /// </param>
        /// <param name="onOpen">
        /// An OnOpen event handler.
        /// </param>
        /// <param name="onMessage">
        /// An OnMessage event handler.
        /// </param>
        /// <param name="onError">
        /// An OnError event handler.
        /// </param>
        /// <param name="onClose">
        /// An OnClose event handler.
        /// </param>
        /// <param name="protocols">
        /// An array of <see cref="string"/> that contains the WebSocket subprotocols if any.
        /// </param>
        /// <exception cref="ArgumentNullException">
        /// <paramref name="url"/> is <see langword="null"/>.
        /// </exception>
        /// <exception cref="ArgumentException">
        /// <paramref name="url"/> is not valid WebSocket URL.
        /// </exception>
        public WebSocket(
          string url,
          EventHandler onOpen,
          EventHandler<MessageEventArgs> onMessage,
          EventHandler<ErrorEventArgs> onError,
          EventHandler<CloseEventArgs> onClose,
          params string[] protocols)
            : this(url, protocols)
        {
            OnOpen = onOpen;
            OnMessage = onMessage;
            OnError = onError;
            OnClose = onClose;
 
            Connect();
        }
 
        #endregion
 
        #region Internal Property
 
        internal NameValueCollection QueryString
        {
            get
            {
                return _queryString;
            }
        }
 
        #endregion
 
        #region Public Properties
 
        /// <summary>
        /// Gets the amount of untransmitted data.
        /// </summary>
        /// <value>
        /// The number of bytes of untransmitted data.
        /// </value>
        public ulong BufferedAmount
        {
            get
            {
                lock (_unTransmittedBuffer.SyncRoot)
                {
                    ulong bufferedAmount = 0;
                    foreach (WsFrame frame in _unTransmittedBuffer)
                        bufferedAmount += frame.PayloadLength;
 
                    return bufferedAmount;
                }
            }
        }
 
        /// <summary>
        /// Gets the extensions selected by the server.
        /// </summary>
        /// <value>
        /// A <see cref="string"/> that contains the extensions if any. By default, <c>String.Empty</c>. (Currently this will only ever be the <c>String.Empty</c>.)
        /// </value>
        public string Extensions
        {
            get
            {
                return _extensions;
            }
        }
 
        /// <summary>
        /// Gets a value indicating whether a connection is alive.
        /// </summary>
        /// <value>
        /// <c>true</c> if the connection is alive; otherwise, <c>false</c>.
        /// </value>
        public bool IsAlive
        {
            get
            {
                if (_readyState != WsState.OPEN)
                    return false;
 
                return Ping();
            }
        }
 
        /// <summary>
        /// Gets a value indicating whether a connection is secure.
        /// </summary>
        /// <value>
        /// <c>true</c> if the connection is secure; otherwise, <c>false</c>.
        /// </value>
        public bool IsSecure
        {
            get
            {
                return _isSecure;
            }
        }
 
        /// <summary>
        /// Gets the subprotocol selected by the server.
        /// </summary>
        /// <value>
        /// A <see cref="string"/> that contains the subprotocol if any. By default, <c>String.Empty</c>.
        /// </value>
        public string Protocol
        {
            get
            {
                return _protocol;
            }
        }
 
        /// <summary>
        /// Gets the state of the connection.
        /// </summary>
        /// <value>
        /// A <see cref="WebSocketSharp.WsState"/>. By default, <c>WsState.CONNECTING</c>.
        /// </value>
        public WsState ReadyState
        {
            get
            {
                return _readyState;
            }
        }
 
        /// <summary>
        /// Gets the untransmitted WebSocket frames.
        /// </summary>
        /// <value>
        /// A <c>IList&lt;WsFrame&gt;</c> that contains the untransmitted WebSocket frames.
        /// </value>
        public IList<WsFrame> UnTransmittedBuffer
        {
            get
            {
                return _unTransmittedBuffer;
            }
        }
 
        /// <summary>
        /// Gets or sets the WebSocket URL.
        /// </summary>
        /// <value>
        /// A <see cref="Uri"/> that contains the WebSocket URL.
        /// </value>
        public Uri Url
        {
            get { return _uri; }
            set
            {
                if (_readyState == WsState.CONNECTING && !_isClient)
                    _uri = value;
            }
        }
 
        /// <summary>
        /// Gets or sets the WebSocket Origin.
        /// </summary>
        public string Origin
        {
            get { return this._origin; }
            set { this._origin = value; }
        }
 
        /// <summary>
        /// Gets or sets the extra WebSocket handshake headers.
        /// </summary>
        public IDictionary<string, string> ExtraHeaders { get; set; }
 
        #endregion
 
        #region Events
 
        /// <summary>
        /// Occurs when the WebSocket connection has been established.
        /// </summary>
        public event EventHandler OnOpen;
 
        /// <summary>
        /// Occurs when the WebSocket receives a data frame.
        /// </summary>
        public event EventHandler<MessageEventArgs> OnMessage;
 
        /// <summary>
        /// Occurs when the WebSocket gets an error.
        /// </summary>
        public event EventHandler<ErrorEventArgs> OnError;
 
        /// <summary>
        /// Occurs when the WebSocket receives a Close frame or the Close method is called.
        /// </summary>
        public event EventHandler<CloseEventArgs> OnClose;
 
        #endregion
 
        #region Private Methods
 
        // As Server
        private void acceptHandshake()
        {
            var req = receiveOpeningHandshake();
 
            string msg;
            if (!isValidRequest(req, out msg))
            {
                onError(msg);
                close(CloseStatusCode.HANDSHAKE_FAILURE, msg);
                return;
            }
 
            sendResponseHandshake();
            onOpen();
        }
 
        private bool canSendAsCloseFrame(PayloadData data)
        {
            if (data.Length >= 2)
            {
                var code = Ext.To<ushort>(Ext.SubArray(data.ToBytes(), 0, 2), ByteOrder.BIG);
                if (code == (ushort)CloseStatusCode.NO_STATUS_CODE ||
                    code == (ushort)CloseStatusCode.ABNORMAL ||
                    code == (ushort)CloseStatusCode.HANDSHAKE_FAILURE)
                    return false;
            }
 
            return true;
        }
 
        private void close(HttpStatusCode code)
        {
            if (_readyState != WsState.CONNECTING || _isClient)
                return;
 
            sendResponseHandshake(code);
            closeConnection();
        }
 
        private void close(PayloadData data)
        {
#if DEBUG
            Console.WriteLine("WS: Info@close: Current thread IsBackground ?: {0}", Thread.CurrentThread.IsBackground);
#endif
            lock (_forClose)
            {
                // Whether the closing handshake has been started already ?
                if (_readyState == WsState.CLOSING ||
                    _readyState == WsState.CLOSED)
                    return;
 
                // Whether the closing handshake as server is started before the connection has been established ?
                if (_readyState == WsState.CONNECTING && !_isClient)
                {
                    sendResponseHandshake(HttpStatusCode.BadRequest);
                    onClose(new CloseEventArgs(data));
 
                    return;
                }
 
                _readyState = WsState.CLOSING;
            }
 
            // Whether a close status code that must not be set for send is used ?
            if (!canSendAsCloseFrame(data))
            {
                onClose(new CloseEventArgs(data));
                return;
            }
 
            closeHandshake(data);
#if DEBUG
            Console.WriteLine("WS: Info@close: Exits close method.");
#endif
        }
 
        private void close(CloseStatusCode code, string reason)
        {
            close((ushort)code, reason);
        }
 
        private void close(ushort code, string reason)
        {
            var data = new List<byte>(Ext.ToBytes(code, ByteOrder.BIG));
            if (!Ext.IsNullOrEmpty(reason))
            {
                var buffer = Encoding.UTF8.GetBytes(reason);
                data.AddRange(buffer);
            }
 
            var payloadData = new PayloadData(data.ToArray());
            if (payloadData.Length > 125)
            {
                var msg = "A Close frame must have a payload length of 125 bytes or less.";
                onError(msg);
                return;
            }
 
            close(payloadData);
        }
 
        private bool closeConnection()
        {
            _readyState = WsState.CLOSED;
 
            try
            {
                if (_httpContext != null)
                {
                    _httpContext.Response.Close();
                    _wsStream = null;
                    _httpContext = null;
                }
 
                if (_wsStream != null)
                {
                    _wsStream.Dispose();
                    _wsStream = null;
                }
 
                if (_tcpClient != null)
                {
                    _tcpClient.Close();
                    _tcpClient = null;
                }
 
                return true;
            }
            catch (Exception ex)
            {
                onError(ex.Message);
                return false;
            }
        }
 
        private void closeHandshake(PayloadData data)
        {
            var args = new CloseEventArgs(data);
            var frame = createFrame(Fin.FINAL, Opcode.CLOSE, data);
            send(frame);
            onClose(args);
        }
 
        // As Client
        private string createBase64Key()
        {
            var src = new byte[16];
            var rand = new Random();
            rand.NextBytes(src);
 
            return Convert.ToBase64String(src);
        }
 
        // As Client
        private void createClientStream()
        {
            var host = _uri.DnsSafeHost;
            var port = _uri.Port > 0
                     ? _uri.Port
                     : _isSecure ? 443 : 80;
 
            _tcpClient = new TcpClient(host, port);
            _wsStream = WsStream.CreateClientStream(_tcpClient, host, _isSecure);
        }
 
        private WsFrame createFrame(Fin fin, Opcode opcode, PayloadData payloadData)
        {
            return _isClient
                   ? new WsFrame(fin, opcode, payloadData)
                   : new WsFrame(fin, opcode, Mask.UNMASK, payloadData);
        }
 
        // As Client
        private RequestHandshake createOpeningHandshake()
        {
            var path = _uri.PathAndQuery;
            var host = _uri.DnsSafeHost;
            var port = ((System.Net.IPEndPoint)_tcpClient.Client.RemoteEndPoint).Port;
            if (port != 80)
                host += ":" + port;
 
            var req = new RequestHandshake(path);
            req.AddHeader("Host", host);
            req.AddHeader("Sec-WebSocket-Key", _base64key);
            if (!Ext.IsNullOrEmpty(_protocols))
                req.AddHeader("Sec-WebSocket-Protocol", _protocols);
            req.AddHeader("Sec-WebSocket-Version", _version);
            if (!string.IsNullOrEmpty(this._origin))
                req.AddHeader("Origin", this._origin);
            //extra headers
            if (this.ExtraHeaders != null)
                foreach (var i in this.ExtraHeaders)
                    req.AddHeader(i.Key, i.Value);
 
            return req;
        }
 
        // As Server
        private ResponseHandshake createResponseHandshake()
        {
            var res = new ResponseHandshake();
            res.AddHeader("Sec-WebSocket-Accept", createResponseKey());
 
            return res;
        }
 
        // As Server
        private ResponseHandshake createResponseHandshake(HttpStatusCode code)
        {
            var res = ResponseHandshake.CreateCloseResponse(code);
            res.AddHeader("Sec-WebSocket-Version", _version);
 
            return res;
        }
 
        private string createResponseKey()
        {
            SHA1 sha1 = new SHA1CryptoServiceProvider();
            var sb = new StringBuilder(_base64key);
            sb.Append(_guid);
            var src = sha1.ComputeHash(Encoding.UTF8.GetBytes(sb.ToString()));
 
            return Convert.ToBase64String(src);
        }
 
        // As Client
        private void doHandshake()
        {
            var res = sendOpeningHandshake();
 
            string msg;
            if (!isValidResponse(res, out msg))
            {
                onError(msg);
                close(CloseStatusCode.HANDSHAKE_FAILURE, msg);
                return;
            }
 
            onOpen();
        }
 
        private bool isValidCloseStatusCode(ushort code, out string message)
        {
            if (code < 1000)
            {
                message = "Close status codes in the range 0-999 are not used: " + code;
                return false;
            }
 
            if (code > 4999)
            {
                message = "Out of reserved close status code range: " + code;
                return false;
            }
 
            message = String.Empty;
            return true;
        }
 
        private bool isValidFrame(WsFrame frame)
        {
            if (frame == null)
            {
                var msg = "The WebSocket frame can not be read from the network stream.";
                close(CloseStatusCode.ABNORMAL, msg);
 
                return false;
            }
 
            return true;
        }
 
        // As Server
        private bool isValidRequest(RequestHandshake request, out string message)
        {
            if (!request.IsWebSocketRequest)
            {
                message = "Invalid WebSocket request.";
                return false;
            }
 
            if (_uri.IsAbsoluteUri && !isValidRequestHost(request.Headers["Host"], out message))
                return false;
 
            if (!request.HeaderExists("Sec-WebSocket-Version", _version))
            {
                message = "Unsupported Sec-WebSocket-Version.";
                return false;
            }
 
            _base64key = request.Headers["Sec-WebSocket-Key"];
 
            if (request.HeaderExists("Sec-WebSocket-Protocol"))
                _protocols = request.Headers["Sec-WebSocket-Protocol"];
 
            if (request.HeaderExists("Sec-WebSocket-Extensions"))
                _extensions = request.Headers["Sec-WebSocket-Extensions"];
 
            _queryString = request.QueryString;
 
            message = String.Empty;
            return true;
        }
 
        // As Server
        private bool isValidRequestHost(string value, out string message)
        {
            var host = _uri.DnsSafeHost;
            var type = Uri.CheckHostName(host);
            var address = _endPoint.Address;
            var port = _endPoint.Port;
 
            var expectedHost1 = host;
            var expectedHost2 = type == UriHostNameType.Dns
                              ? address.ToString()
                              : System.Net.Dns.GetHostEntry(address).HostName;
 
            if (port != 80)
            {
                expectedHost1 += ":" + port;
                expectedHost2 += ":" + port;
            }
 
            if (Ext.NotEqual(expectedHost1, value, false) &&
               Ext.NotEqual(expectedHost2, value, false))
            {
                message = "Invalid Host.";
                return false;
            }
 
            message = String.Empty;
            return true;
        }
 
        // As Client
        private bool isValidResponse(ResponseHandshake response, out string message)
        {
            if (!response.IsWebSocketResponse)
            {
                message = "Invalid WebSocket response.";
                return false;
            }
 
            if (!response.HeaderExists("Sec-WebSocket-Accept", createResponseKey()))
            {
                message = "Invalid Sec-WebSocket-Accept.";
                return false;
            }
 
            if (response.HeaderExists("Sec-WebSocket-Version") &&
                !response.HeaderExists("Sec-WebSocket-Version", _version))
            {
                message = "Unsupported Sec-WebSocket-Version.";
                return false;
            }
 
            if (response.HeaderExists("Sec-WebSocket-Protocol"))
                _protocol = response.Headers["Sec-WebSocket-Protocol"];
 
            if (response.HeaderExists("Sec-WebSocket-Extensions"))
                _extensions = response.Headers["Sec-WebSocket-Extensions"];
 
            message = String.Empty;
            return true;
        }
 
        private void onClose(CloseEventArgs eventArgs)
        {
            if (!Thread.CurrentThread.IsBackground)
                if (_exitMessageLoop != null)
                    _exitMessageLoop.WaitOne(5 * 1000, false);
 
            if (closeConnection())
                eventArgs.WasClean = true;
 
            Ext.Emit(OnClose, this, eventArgs);
        }
 
        private void onError(string message)
        {
#if DEBUG
            var callerFrame = new StackFrame(1);
            var caller = callerFrame.GetMethod();
            Console.WriteLine("WS: Error@{0}: {1}", caller.Name, message);
#endif
            Ext.Emit(OnError, this, new ErrorEventArgs(message));
        }
 
        private void onMessage(MessageEventArgs eventArgs)
        {
            if (eventArgs != null)
                Ext.Emit(OnMessage, this, eventArgs);
        }
 
        private void onOpen()
        {
            _readyState = WsState.OPEN;
            startMessageLoop();
            Ext.Emit(OnOpen, this, EventArgs.Empty);
        }
 
        private bool ping(string message, int millisecondsTimeout)
        {
            var buffer = Encoding.UTF8.GetBytes(message);
            if (buffer.Length > 125)
            {
                var msg = "A Ping frame must have a payload length of 125 bytes or less.";
                onError(msg);
                return false;
            }
 
            if (!send(Fin.FINAL, Opcode.PING, buffer))
                return false;
 
            return _receivePong.WaitOne(millisecondsTimeout, false);
        }
 
        private void pong(PayloadData data)
        {
            var frame = createFrame(Fin.FINAL, Opcode.PONG, data);
            send(frame);
        }
 
        private void pong(string data)
        {
            var payloadData = new PayloadData(data);
            pong(payloadData);
        }
 
        private WsFrame readFrame()
        {
            var frame = _wsStream.ReadFrame();
            return isValidFrame(frame) ? frame : null;
        }
 
        private string[] readHandshake()
        {
            return _wsStream.ReadHandshake();
        }
 
        private MessageEventArgs receive(WsFrame frame)
        {
            if (!isValidFrame(frame))
                return null;
 
            if ((frame.Fin == Fin.FINAL && frame.Opcode == Opcode.CONT) ||
                (frame.Fin == Fin.MORE && frame.Opcode == Opcode.CONT))
                return null;
 
            if (frame.Fin == Fin.MORE)
            {// MORE
                var merged = receiveFragmented(frame);
                return merged != null
                       ? new MessageEventArgs(frame.Opcode, new PayloadData(merged))
                       : null;
            }
 
            if (frame.Opcode == Opcode.CLOSE)
            {// FINAL & CLOSE
#if DEBUG
                Console.WriteLine("WS: Info@receive: Starts closing handshake.");
#endif
                close(frame.PayloadData);
                return null;
            }
 
            if (frame.Opcode == Opcode.PING)
            {// FINAL & PING
#if DEBUG
                Console.WriteLine("WS: Info@receive: Returns Pong.");
#endif
                pong(frame.PayloadData);
                return null;
            }
 
            if (frame.Opcode == Opcode.PONG)
            {// FINAL & PONG
#if DEBUG
                Console.WriteLine("WS: Info@receive: Receives Pong.");
#endif
                _receivePong.Set();
                return null;
            }
 
            // FINAL & (TEXT | BINARY)
            return new MessageEventArgs(frame.Opcode, frame.PayloadData);
        }
 
        private byte[] receiveFragmented(WsFrame firstFrame)
        {
            var buffer = new List<byte>(firstFrame.PayloadData.ToBytes());
 
            while (true)
            {
                var frame = readFrame();
                if (frame == null)
                    return null;
 
                if (frame.Fin == Fin.MORE)
                {
                    if (frame.Opcode == Opcode.CONT)
                    {// MORE & CONT
                        buffer.AddRange(frame.PayloadData.ToBytes());
                        continue;
                    }
 
#if DEBUG
                    Console.WriteLine("WS: Info@receiveFragmented: Starts closing handshake.");
#endif
                    close(CloseStatusCode.INCORRECT_DATA, String.Empty);
                    return null;
                }
 
                if (frame.Opcode == Opcode.CONT)
                {// FINAL & CONT
                    buffer.AddRange(frame.PayloadData.ToBytes());
                    break;
                }
 
                if (frame.Opcode == Opcode.CLOSE)
                {// FINAL & CLOSE
#if DEBUG
                    Console.WriteLine("WS: Info@receiveFragmented: Starts closing handshake.");
#endif
                    close(frame.PayloadData);
                    return null;
                }
 
                if (frame.Opcode == Opcode.PING)
                {// FINAL & PING
#if DEBUG
                    Console.WriteLine("WS: Info@receiveFragmented: Returns Pong.");
#endif
                    pong(frame.PayloadData);
                    continue;
                }
 
                if (frame.Opcode == Opcode.PONG)
                {// FINAL & PONG
#if DEBUG
                    Console.WriteLine("WS: Info@receiveFragmented: Receives Pong.");
#endif
                    _receivePong.Set();
                    continue;
                }
 
                // FINAL & (TEXT | BINARY)
#if DEBUG
                Console.WriteLine("WS: Info@receiveFragmented: Starts closing handshake.");
#endif
                close(CloseStatusCode.INCORRECT_DATA, String.Empty);
                return null;
            }
 
            return buffer.ToArray();
        }
 
        // As Server
        private RequestHandshake receiveOpeningHandshake()
        {
            var req = RequestHandshake.Parse(_context);
#if DEBUG
            Console.WriteLine("WS: Info@receiveOpeningHandshake: Opening handshake from client:\n");
            Console.WriteLine(req.ToString());
#endif
            return req;
        }
 
        // As Client
        private ResponseHandshake receiveResponseHandshake()
        {
            var res = ResponseHandshake.Parse(readHandshake());
#if DEBUG
            Console.WriteLine("WS: Info@receiveResponseHandshake: Response handshake from server:\n");
            Console.WriteLine(res.ToString());
#endif
            return res;
        }
 
        private bool send(WsFrame frame)
        {
            if (_readyState == WsState.CONNECTING ||
                _readyState == WsState.CLOSED)
            {
                var msg = "The WebSocket connection isn't established or has been closed.";
                onError(msg);
                return false;
            }
 
            try
            {
                if (_unTransmittedBuffer.Count == 0)
                {
                    if (_wsStream != null)
                    {
                        _wsStream.WriteFrame(frame);
                        return true;
                    }
                }
 
                if (_unTransmittedBuffer.Count > 0)
                {
                    _unTransmittedBuffer.Add(frame);
                    var msg = "Current data can not be sent because there is untransmitted data.";
                    onError(msg);
                }
 
                return false;
            }
            catch (Exception ex)
            {
                _unTransmittedBuffer.Add(frame);
                onError(ex.Message);
                return false;
            }
        }
 
        private void send(Opcode opcode, byte[] data)
        {
            using (MemoryStream ms = new MemoryStream(data))
            {
                send(opcode, ms);
            }
        }
 
        private void send(Opcode opcode, Stream stream)
        {
            lock (_forSend)
            {
                try
                {
                    if (_readyState != WsState.OPEN)
                    {
                        var msg = "The WebSocket connection isn't established or has been closed.";
                        onError(msg);
                        return;
                    }
 
                    var length = stream.Length;
                    if (length <= _fragmentLen)
                        send(Fin.FINAL, opcode, Ext.ReadBytes(stream, (int)length));
                    else
                        sendFragmented(opcode, stream);
                }
                catch (Exception ex)
                {
                    onError(ex.Message);
                }
            }
        }
 
        private bool send(Fin fin, Opcode opcode, byte[] data)
        {
            var frame = createFrame(fin, opcode, new PayloadData(data));
            return send(frame);
        }
 
        private void sendAsync(Opcode opcode, byte[] data, Action completed)
        {
            sendAsync(opcode, new MemoryStream(data), completed);
        }
 
        private void sendAsync(Opcode opcode, Stream stream, Action completed)
        {
            Action<Opcode, Stream> action = send;
 
            AsyncCallback callback = (ar) =>
            {
                try
                {
                    action.EndInvoke(ar);
                    if (completed != null)
                        completed();
                }
                catch (Exception ex)
                {
                    onError(ex.Message);
                }
                finally
                {
                    stream.Close();
                }
            };
 
            action.BeginInvoke(opcode, stream, callback, null);
        }
 
        private long sendFragmented(Opcode opcode, Stream stream)
        {
            var length = stream.Length;
            var quo = length / _fragmentLen;
            var rem = length % _fragmentLen;
            var count = rem == 0 ? quo - 2 : quo - 1;
 
            // First
            var buffer = new byte[_fragmentLen];
            long readLen = stream.Read(buffer, 0, _fragmentLen);
            send(Fin.MORE, opcode, buffer);
 
            // Mid
            Ext.Times(count, () =>
            {
                readLen += stream.Read(buffer, 0, _fragmentLen);
                send(Fin.MORE, Opcode.CONT, buffer);
            });
 
            // Final
            if (rem != 0)
                buffer = new byte[rem];
            readLen += stream.Read(buffer, 0, buffer.Length);
            send(Fin.FINAL, Opcode.CONT, buffer);
 
            return readLen;
        }
 
        // As Client
        private ResponseHandshake sendOpeningHandshake()
        {
            var req = createOpeningHandshake();
            sendOpeningHandshake(req);
 
            return receiveResponseHandshake();
        }
 
        // As Client
        private void sendOpeningHandshake(RequestHandshake request)
        {
#if DEBUG
            Console.WriteLine("WS: Info@sendOpeningHandshake: Opening handshake from client:\n");
            Console.WriteLine(request.ToString());
#endif
            writeHandshake(request);
        }
 
        // As Server
        private void sendResponseHandshake()
        {
            var res = createResponseHandshake();
            sendResponseHandshake(res);
        }
 
        // As Server
        private void sendResponseHandshake(HttpStatusCode code)
        {
            var res = createResponseHandshake(code);
            sendResponseHandshake(res);
        }
 
        // As Server
        private void sendResponseHandshake(ResponseHandshake response)
        {
#if DEBUG
            Console.WriteLine("WS: Info@sendResponseHandshake: Response handshake from server:\n");
            Console.WriteLine(response.ToString());
#endif
            writeHandshake(response);
        }
 
        private void startMessageLoop()
        {
            _exitMessageLoop = new AutoResetEvent(false);
            _receivePong = new AutoResetEvent(false);
 
            Action<WsFrame> completed = null;
            completed = (frame) =>
            {
                try
                {
                    onMessage(receive(frame));
                    if (_readyState == WsState.OPEN)
                        _wsStream.ReadFrameAsync(completed);
                    else
                        _exitMessageLoop.Set();
                }
                catch (WsReceivedTooBigMessageException ex)
                {
                    close(CloseStatusCode.TOO_BIG, ex.Message);
                }
                catch (Exception ex)
                {
                    //HACK:close with 1006 when onMessage exception?
                    close(CloseStatusCode.ABNORMAL
                        , string.Format("An exception has occured: {0}", ex.Message));
                }
            };
 
            _wsStream.ReadFrameAsync(completed);
        }
 
        private bool tryCreateUri(string uriString, out Uri result, out string message)
        {
            return Ext.TryCreateWebSocketUri(uriString, out result, out message);
        }
 
        private void writeHandshake(Handshake handshake)
        {
            _wsStream.WriteHandshake(handshake);
        }
 
        #endregion
 
        #region Internal Method
 
        // As Server
        internal void Close(HttpStatusCode code)
        {
            close(code);
        }
 
        #endregion
 
        #region Public Methods
 
        /// <summary>
        /// Closes the connection and releases all associated resources after sends a Close control frame.
        /// </summary>
        public void Close()
        {
            var data = new PayloadData(new byte[] { });
            close(data);
        }
 
        /// <summary>
        /// Closes the connection and releases all associated resources after sends a Close control frame.
        /// </summary>
        /// <param name="code">
        /// A <see cref="WebSocketSharp.Frame.CloseStatusCode"/> that contains a status code indicating a reason for closure.
        /// </param>
        public void Close(CloseStatusCode code)
        {
            Close(code, String.Empty);
        }
 
        /// <summary>
        /// Closes the connection and releases all associated resources after sends a Close control frame.
        /// </summary>
        /// <param name="code">
        /// A <see cref="ushort"/> that contains a status code indicating a reason for closure.
        /// </param>
        public void Close(ushort code)
        {
            Close(code, String.Empty);
        }
 
        /// <summary>
        /// Closes the connection and releases all associated resources after sends a Close control frame.
        /// </summary>
        /// <param name="code">
        /// A <see cref="WebSocketSharp.Frame.CloseStatusCode"/> that contains a status code indicating a reason for closure.
        /// </param>
        /// <param name="reason">
        /// A <see cref="string"/> that contains a reason for closure.
        /// </param>
        public void Close(CloseStatusCode code, string reason)
        {
            Close((ushort)code, reason);
        }
 
        /// <summary>
        /// Closes the connection and releases all associated resources after sends a Close control frame.
        /// </summary>
        /// <param name="code">
        /// A <see cref="ushort"/> that contains a status code indicating a reason for closure.
        /// </param>
        /// <param name="reason">
        /// A <see cref="string"/> that contains a reason for closure.
        /// </param>
        public void Close(ushort code, string reason)
        {
            string msg;
            if (!isValidCloseStatusCode(code, out msg))
            {
                onError(msg);
                return;
            }
 
            close(code, reason);
        }
 
        /// <summary>
        /// Establishes a connection.
        /// </summary>
        public void Connect()
        {
            if (_readyState == WsState.OPEN)
            {
                Console.WriteLine("WS: Info@Connect: The WebSocket connection has been established already.");
                return;
            }
 
            try
            {
                // As client
                if (_isClient)
                {
                    createClientStream();
                    doHandshake();
                    return;
                }
 
                // As server
                acceptHandshake();
            }
            catch (Exception ex)
            {
                onError(ex.Message);
                close(CloseStatusCode.HANDSHAKE_FAILURE, "An exception has occured.");
            }
        }
 
        /// <summary>
        /// Closes the connection and releases all associated resources after sends a Close control frame.
        /// </summary>
        /// <remarks>
        /// Call <see cref="Dispose"/> when you are finished using the <see cref="WebSocketSharp.WebSocket"/>. The
        /// <see cref="Dispose"/> method leaves the <see cref="WebSocketSharp.WebSocket"/> in an unusable state. After
        /// calling <see cref="Dispose"/>, you must release all references to the <see cref="WebSocketSharp.WebSocket"/> so
        /// the garbage collector can reclaim the memory that the <see cref="WebSocketSharp.WebSocket"/> was occupying.
        /// </remarks>
        public void Dispose()
        {
            Close(CloseStatusCode.AWAY);
        }
 
        /// <summary>
        /// Sends a Ping frame using the connection.
        /// </summary>
        /// <returns>
        /// <c>true</c> if the WebSocket receives a Pong frame in a time; otherwise, <c>false</c>.
        /// </returns>
        public bool Ping()
        {
            return Ping(String.Empty);
        }
 
        /// <summary>
        /// Sends a Ping frame with a message using the connection.
        /// </summary>
        /// <param name="message">
        /// A <see cref="string"/> that contains the message to be sent.
        /// </param>
        /// <returns>
        /// <c>true</c> if the WebSocket receives a Pong frame in a time; otherwise, <c>false</c>.
        /// </returns>
        public bool Ping(string message)
        {
            if (message == null)
                message = String.Empty;
 
            return _isClient
                   ? ping(message, 5 * 1000)
                   : ping(message, 1 * 1000);
        }
 
        /// <summary>
        /// Sends a text data using the connection.
        /// </summary>
        /// <param name="data">
        /// A <see cref="string"/> that contains the text data to be sent.
        /// </param>
        public void Send(string data)
        {
            if (data == null)
            {
                onError("'data' must not be null.");
                return;
            }
 
            var buffer = Encoding.UTF8.GetBytes(data);
            send(Opcode.TEXT, buffer);
        }
 
        /// <summary>
        /// Sends a binary data using the connection.
        /// </summary>
        /// <param name="data">
        /// An array of <see cref="byte"/> that contains the binary data to be sent.
        /// </param>
        public void Send(byte[] data)
        {
            if (data == null)
            {
                onError("'data' must not be null.");
                return;
            }
 
            send(Opcode.BINARY, data);
        }
 
        /// <summary>
        /// Sends a binary data using the connection.
        /// </summary>
        /// <param name="file">
        /// A <see cref="FileInfo"/> that contains the binary data to be sent.
        /// </param>
        public void Send(FileInfo file)
        {
            if (file == null)
            {
                onError("'file' must not be null.");
                return;
            }
 
            using (FileStream fs = file.OpenRead())
            {
                send(Opcode.BINARY, fs);
            }
        }
 
        /// <summary>
        /// Sends a text data asynchronously using the connection.
        /// </summary>
        /// <param name="data">
        /// A <see cref="string"/> that contains the text data to be sent.
        /// </param>
        /// <param name="completed">
        /// An <see cref="Action"/> delegate that contains the method(s) that is called when an asynchronous operation completes.
        /// </param>
        public void SendAsync(string data, Action completed)
        {
            if (data == null)
            {
                onError("'data' must not be null.");
                return;
            }
 
            var buffer = Encoding.UTF8.GetBytes(data);
            sendAsync(Opcode.TEXT, buffer, completed);
        }
 
        /// <summary>
        /// Sends a binary data asynchronously using the connection.
        /// </summary>
        /// <param name="data">
        /// An array of <see cref="byte"/> that contains the binary data to be sent.
        /// </param>
        /// <param name="completed">
        /// An <see cref="Action"/> delegate that contains the method(s) that is called when an asynchronous operation completes.
        /// </param>
        public void SendAsync(byte[] data, Action completed)
        {
            if (data == null)
            {
                onError("'data' must not be null.");
                return;
            }
 
            sendAsync(Opcode.BINARY, data, completed);
        }
 
        /// <summary>
        /// Sends a binary data asynchronously using the connection.
        /// </summary>
        /// <param name="file">
        /// A <see cref="FileInfo"/> that contains the binary data to be sent.
        /// </param>
        /// <param name="completed">
        /// An <see cref="Action"/> delegate that contains the method(s) that is called when an asynchronous operation completes.
        /// </param>
        public void SendAsync(FileInfo file, Action completed)
        {
            if (file == null)
            {
                onError("'file' must not be null.");
                return;
            }
 
            sendAsync(Opcode.BINARY, file.OpenRead(), completed);
        }
 
        #endregion
    }
}