Modified closing
This commit is contained in:
parent
4e420c6bc3
commit
31463022ee
@ -237,13 +237,6 @@ namespace WebSocketSharp
|
||||
: null;
|
||||
}
|
||||
|
||||
internal static string CheckIfValidCloseData (this byte [] data)
|
||||
{
|
||||
return data.Length > 125
|
||||
? "'reason' length must be less."
|
||||
: null;
|
||||
}
|
||||
|
||||
internal static string CheckIfValidCloseStatusCode (this ushort code)
|
||||
{
|
||||
return !code.IsCloseStatusCode ()
|
||||
|
@ -6,7 +6,7 @@
|
||||
*
|
||||
* The MIT License
|
||||
*
|
||||
* Copyright (c) 2012-2013 sta.blockhead
|
||||
* Copyright (c) 2012-2014 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
|
||||
@ -535,6 +535,11 @@ namespace WebSocketSharp.Server
|
||||
return true;
|
||||
}
|
||||
|
||||
private string checkIfCanStop (Func<string> checkParams)
|
||||
{
|
||||
return _state.CheckIfStarted () ?? checkParams ();
|
||||
}
|
||||
|
||||
private string checkIfCertExists ()
|
||||
{
|
||||
return _secure &&
|
||||
@ -757,19 +762,19 @@ namespace WebSocketSharp.Server
|
||||
/// and <see cref="string"/> used to stop the WebSocket services.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that contains a status code indicating the reason
|
||||
/// for stop.
|
||||
/// A <see cref="ushort"/> that represents the status code indicating the
|
||||
/// reason for stop.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that contains the reason for stop.
|
||||
/// A <see cref="string"/> that represents the reason for stop.
|
||||
/// </param>
|
||||
public void Stop (ushort code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
lock (_sync) {
|
||||
var msg = _state.CheckIfStarted () ??
|
||||
code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanStop (
|
||||
() => code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
@ -789,23 +794,23 @@ namespace WebSocketSharp.Server
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Stops receiving the HTTP requests with the specified
|
||||
/// <see cref="CloseStatusCode"/> and <see cref="string"/> used to stop the
|
||||
/// WebSocket services.
|
||||
/// Stops receiving the HTTP requests with the specified <see cref="CloseStatusCode"/>
|
||||
/// and <see cref="string"/> used to stop the WebSocket services.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that represent the status
|
||||
/// codes indicating the reasons for stop.
|
||||
/// One of the <see cref="CloseStatusCode"/> enum values, represents the
|
||||
/// status code indicating the reasons for stop.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that contains the reason for stop.
|
||||
/// A <see cref="string"/> that represents the reason for stop.
|
||||
/// </param>
|
||||
public void Stop (CloseStatusCode code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
lock (_sync) {
|
||||
var msg = _state.CheckIfStarted () ??
|
||||
(data = ((ushort) code).Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanStop (
|
||||
() => (data = ((ushort) code).Append (reason))
|
||||
.CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
|
@ -6,7 +6,7 @@
|
||||
*
|
||||
* The MIT License
|
||||
*
|
||||
* Copyright (c) 2012-2013 sta.blockhead
|
||||
* Copyright (c) 2012-2014 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
|
||||
@ -549,6 +549,11 @@ namespace WebSocketSharp.Server
|
||||
return true;
|
||||
}
|
||||
|
||||
private string checkIfCanStop (Func<string> checkParams)
|
||||
{
|
||||
return _state.CheckIfStarted () ?? checkParams ();
|
||||
}
|
||||
|
||||
private string checkIfCertExists ()
|
||||
{
|
||||
return _secure && _cert == null
|
||||
@ -773,19 +778,19 @@ namespace WebSocketSharp.Server
|
||||
/// <see cref="ushort"/> and <see cref="string"/>.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that contains a status code indicating the reason
|
||||
/// for stop.
|
||||
/// A <see cref="ushort"/> that represents the status code indicating the
|
||||
/// reason for stop.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that contains the reason for stop.
|
||||
/// A <see cref="string"/> that represents the reason for stop.
|
||||
/// </param>
|
||||
public void Stop (ushort code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
lock (_sync) {
|
||||
var msg = _state.CheckIfStarted () ??
|
||||
code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanStop (
|
||||
() => code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
@ -809,18 +814,19 @@ namespace WebSocketSharp.Server
|
||||
/// <see cref="CloseStatusCode"/> and <see cref="string"/>.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that represent the status
|
||||
/// codes indicating the reasons for stop.
|
||||
/// One of the <see cref="CloseStatusCode"/> enum values, represents the
|
||||
/// status code indicating the reason for stop.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that contains the reason for stop.
|
||||
/// A <see cref="string"/> that represents the reason for stop.
|
||||
/// </param>
|
||||
public void Stop (CloseStatusCode code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
lock (_sync) {
|
||||
var msg = _state.CheckIfStarted () ??
|
||||
(data = ((ushort) code).Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanStop (
|
||||
() => (data = ((ushort) code).Append (reason))
|
||||
.CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
|
@ -400,48 +400,6 @@ namespace WebSocketSharp.Server
|
||||
_websocket.SendAsync (stream, length, completed);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Stops the current <see cref="WebSocketService"/> instance.
|
||||
/// </summary>
|
||||
protected void Stop ()
|
||||
{
|
||||
if (_websocket != null)
|
||||
_websocket.Close ();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Stops the current <see cref="WebSocketService"/> instance with the
|
||||
/// specified <see cref="ushort"/> and <see cref="string"/>.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that represents the status code for stop.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that represents the reason for stop.
|
||||
/// </param>
|
||||
protected void Stop (ushort code, string reason)
|
||||
{
|
||||
if (_websocket != null)
|
||||
_websocket.Close (code, reason);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Stops the current <see cref="WebSocketService"/> instance with the
|
||||
/// specified <see cref="CloseStatusCode"/> and <see cref="string"/>.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that indicate the status
|
||||
/// codes for stop.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that represents the reason for stop.
|
||||
/// </param>
|
||||
protected void Stop (CloseStatusCode code, string reason)
|
||||
{
|
||||
if (_websocket != null)
|
||||
_websocket.Close (code, reason);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Validates the HTTP Cookies used in the WebSocket connection request.
|
||||
/// </summary>
|
||||
|
@ -638,6 +638,11 @@ namespace WebSocketSharp
|
||||
: null;
|
||||
}
|
||||
|
||||
private string checkIfCanClose (Func<string> checkParams)
|
||||
{
|
||||
return _readyState.CheckIfClosable () ?? checkParams ();
|
||||
}
|
||||
|
||||
private string checkIfCanConnect ()
|
||||
{
|
||||
return !_client && _readyState == WebSocketState.CLOSED
|
||||
@ -1523,7 +1528,8 @@ namespace WebSocketSharp
|
||||
/// isn't in the allowable range of the WebSocket close status code.
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that indicates the status code for closure.
|
||||
/// A <see cref="ushort"/> that represents the status code that indicates the
|
||||
/// reason for closure.
|
||||
/// </param>
|
||||
public void Close (ushort code)
|
||||
{
|
||||
@ -1535,8 +1541,8 @@ namespace WebSocketSharp
|
||||
/// and releases all associated resources.
|
||||
/// </summary>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that indicate the status
|
||||
/// codes for closure.
|
||||
/// One of the <see cref="CloseStatusCode"/> enum values, represents the status
|
||||
/// code that indicates the reason for closure.
|
||||
/// </param>
|
||||
public void Close (CloseStatusCode code)
|
||||
{
|
||||
@ -1550,10 +1556,11 @@ namespace WebSocketSharp
|
||||
/// <remarks>
|
||||
/// This method emits a <see cref="OnError"/> event if <paramref name="code"/>
|
||||
/// isn't in the allowable range of the WebSocket close status code or the
|
||||
/// length of <paramref name="reason"/> is greater than 123 bytes.
|
||||
/// size of <paramref name="reason"/> is greater than 123 bytes.
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that indicates the status code for closure.
|
||||
/// A <see cref="ushort"/> that represents the status code that indicates the
|
||||
/// reason for closure.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that represents the reason for closure.
|
||||
@ -1561,15 +1568,15 @@ namespace WebSocketSharp
|
||||
public void Close (ushort code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
var msg = _readyState.CheckIfClosable () ??
|
||||
code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanClose (
|
||||
() => code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
String.Format ("{0}\ncode: {1} reason: {2}", msg, code, reason));
|
||||
error (msg);
|
||||
|
||||
error (msg);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1582,12 +1589,12 @@ namespace WebSocketSharp
|
||||
/// and <see cref="string"/>, and releases all associated resources.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This method emits a <see cref="OnError"/> event if the length of
|
||||
/// This method emits a <see cref="OnError"/> event if the size of
|
||||
/// <paramref name="reason"/> is greater than 123 bytes.
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that indicate the status
|
||||
/// codes for closure.
|
||||
/// One of the <see cref="CloseStatusCode"/> enum values, represents the
|
||||
/// status code that indicates the reason for closure.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that represents the reason for closure.
|
||||
@ -1595,14 +1602,15 @@ namespace WebSocketSharp
|
||||
public void Close (CloseStatusCode code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
var msg = _readyState.CheckIfClosable () ??
|
||||
(data = ((ushort) code).Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanClose (
|
||||
() => (data = ((ushort) code).Append (reason))
|
||||
.CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
String.Format ("{0}\ncode: {1} reason: {2}", msg, code, reason));
|
||||
error (msg);
|
||||
|
||||
error (msg);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1645,7 +1653,8 @@ namespace WebSocketSharp
|
||||
/// </para>
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that indicates the status code for closure.
|
||||
/// A <see cref="ushort"/> that represents the status code that indicates the
|
||||
/// reason for closure.
|
||||
/// </param>
|
||||
public void CloseAsync (ushort code)
|
||||
{
|
||||
@ -1660,8 +1669,8 @@ namespace WebSocketSharp
|
||||
/// This method doesn't wait for the close to be complete.
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that indicate the status
|
||||
/// codes for closure.
|
||||
/// One of the <see cref="CloseStatusCode"/> enum values, represents the
|
||||
/// status code that indicates the reason for closure.
|
||||
/// </param>
|
||||
public void CloseAsync (CloseStatusCode code)
|
||||
{
|
||||
@ -1680,11 +1689,12 @@ namespace WebSocketSharp
|
||||
/// <para>
|
||||
/// This method emits a <see cref="OnError"/> event if <paramref name="code"/>
|
||||
/// isn't in the allowable range of the WebSocket close status code or the
|
||||
/// length of <paramref name="reason"/> is greater than 123 bytes.
|
||||
/// size of <paramref name="reason"/> is greater than 123 bytes.
|
||||
/// </para>
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// A <see cref="ushort"/> that indicates the status code for closure.
|
||||
/// A <see cref="ushort"/> that represents the status code that indicates the
|
||||
/// reason for closure.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that represents the reason for closure.
|
||||
@ -1692,15 +1702,15 @@ namespace WebSocketSharp
|
||||
public void CloseAsync (ushort code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
var msg = _readyState.CheckIfClosable () ??
|
||||
code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanClose (
|
||||
() => code.CheckIfValidCloseStatusCode () ??
|
||||
(data = code.Append (reason)).CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
String.Format ("{0}\ncode: {1} reason: {2}", msg, code, reason));
|
||||
error (msg);
|
||||
|
||||
error (msg);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1718,13 +1728,13 @@ namespace WebSocketSharp
|
||||
/// This method doesn't wait for the close to be complete.
|
||||
/// </para>
|
||||
/// <para>
|
||||
/// This method emits a <see cref="OnError"/> event if the length of
|
||||
/// This method emits a <see cref="OnError"/> event if the size of
|
||||
/// <paramref name="reason"/> is greater than 123 bytes.
|
||||
/// </para>
|
||||
/// </remarks>
|
||||
/// <param name="code">
|
||||
/// One of the <see cref="CloseStatusCode"/> values that indicate the status
|
||||
/// codes for closure.
|
||||
/// One of the <see cref="CloseStatusCode"/> enum values, represents the
|
||||
/// status code that indicates the reason for closure.
|
||||
/// </param>
|
||||
/// <param name="reason">
|
||||
/// A <see cref="string"/> that represents the reason for closure.
|
||||
@ -1732,14 +1742,15 @@ namespace WebSocketSharp
|
||||
public void CloseAsync (CloseStatusCode code, string reason)
|
||||
{
|
||||
byte [] data = null;
|
||||
var msg = _readyState.CheckIfClosable () ??
|
||||
(data = ((ushort) code).Append (reason)).CheckIfValidCloseData ();
|
||||
var msg = checkIfCanClose (
|
||||
() => (data = ((ushort) code).Append (reason))
|
||||
.CheckIfValidControlData ("reason"));
|
||||
|
||||
if (msg != null) {
|
||||
_logger.Error (
|
||||
String.Format ("{0}\ncode: {1} reason: {2}", msg, code, reason));
|
||||
error (msg);
|
||||
|
||||
error (msg);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user