123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- #region License
- /*
- * PayloadData.cs
- *
- * The MIT License
- *
- * Copyright (c) 2012-2022 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;
- using System.Collections.Generic;
- namespace WebSocketSharp
- {
- internal class PayloadData : IEnumerable<byte>
- {
- #region Private Fields
- private byte[] _data;
- private long _extDataLength;
- private long _length;
- #endregion
- #region Public Fields
- /// <summary>
- /// Represents the empty payload data.
- /// </summary>
- public static readonly PayloadData Empty;
- /// <summary>
- /// Represents the allowable max length of payload data.
- /// </summary>
- /// <remarks>
- /// <para>
- /// A <see cref="WebSocketException"/> is thrown when the length of
- /// incoming payload data is greater than the value of this field.
- /// </para>
- /// <para>
- /// If you would like to change the value of this field, it must be
- /// a number between <see cref="WebSocket.FragmentLength"/> and
- /// <see cref="Int64.MaxValue"/> inclusive.
- /// </para>
- /// </remarks>
- public static readonly ulong MaxLength;
- #endregion
- #region Static Constructor
- static PayloadData ()
- {
- Empty = new PayloadData (WebSocket.EmptyBytes, 0);
- MaxLength = Int64.MaxValue;
- }
- #endregion
- #region Internal Constructors
- internal PayloadData (byte[] data)
- : this (data, data.LongLength)
- {
- }
- internal PayloadData (byte[] data, long length)
- {
- _data = data;
- _length = length;
- }
- internal PayloadData (ushort code, string reason)
- {
- _data = code.Append (reason);
- _length = _data.LongLength;
- }
- #endregion
- #region Internal Properties
- internal ushort Code {
- get {
- return _length >= 2
- ? _data.SubArray (0, 2).ToUInt16 (ByteOrder.Big)
- : (ushort) 1005;
- }
- }
- internal long ExtensionDataLength {
- get {
- return _extDataLength;
- }
- set {
- _extDataLength = value;
- }
- }
- internal bool HasReservedCode {
- get {
- return _length >= 2 && Code.IsReservedStatusCode ();
- }
- }
- internal string Reason {
- get {
- if (_length <= 2)
- return String.Empty;
- var bytes = _data.SubArray (2, _length - 2);
- string reason;
- return bytes.TryGetUTF8DecodedString (out reason)
- ? reason
- : String.Empty;
- }
- }
- #endregion
- #region Public Properties
- public byte[] ApplicationData {
- get {
- return _extDataLength > 0
- ? _data.SubArray (_extDataLength, _length - _extDataLength)
- : _data;
- }
- }
- public byte[] ExtensionData {
- get {
- return _extDataLength > 0
- ? _data.SubArray (0, _extDataLength)
- : WebSocket.EmptyBytes;
- }
- }
- public ulong Length {
- get {
- return (ulong) _length;
- }
- }
- #endregion
- #region Internal Methods
- internal void Mask (byte[] key)
- {
- for (long i = 0; i < _length; i++)
- _data[i] = (byte) (_data[i] ^ key[i % 4]);
- }
- #endregion
- #region Public Methods
- public IEnumerator<byte> GetEnumerator ()
- {
- foreach (var b in _data)
- yield return b;
- }
- public byte[] ToArray ()
- {
- return _data;
- }
- public override string ToString ()
- {
- return BitConverter.ToString (_data);
- }
- #endregion
- #region Explicit Interface Implementations
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- #endregion
- }
- }
|