-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a LengthFieldPrepender class to prepend the length onto a messag…
…e. (#19) * Adds a LengthFieldPrepender class to prepend the length onto a message. This class is a type of byte to message encoder. Motivation: To encode a prepended length field on data so that messages of arbitrary size can be sent. Can work as a pair with the ‘LengthFieldBasedFrameDecoder’. Modifications: Added ‘LengthFieldPrepender’ Added unit tests for ‘LengthFieldPrepender’ in ‘LengthFieldPrependerTest’ Updated the linux text files by running the script. Result: The length can now be easily prepended to any message.
- Loading branch information
1 parent
292b0cf
commit 34a17fe
Showing
4 changed files
with
588 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
import NIO | ||
|
||
public enum LengthFieldPrependerError: Error { | ||
case messageDataTooLongForLengthField | ||
} | ||
|
||
/// | ||
/// An encoder that takes a `ByteBuffer` message and prepends the number of bytes in the message. | ||
/// The length field is always the same fixed length specified on construction. | ||
/// These bytes contain a binary specification of the message size. | ||
/// | ||
/// For example, if you received a packet with the 3 byte length (BCD)... | ||
/// Given that the specified header length is 1 byte, there would be a single byte prepended which contains the number 3 | ||
/// +---+-----+ | ||
/// | A | BCD | ('A' contains 0x03) | ||
/// +---+-----+ | ||
/// This initial prepended byte is called the 'length field'. | ||
/// | ||
public final class LengthFieldPrepender: ChannelOutboundHandler { | ||
|
||
/// | ||
/// An enumeration to describe the length of a piece of data in bytes. | ||
/// It is constrained to lengths that can be converted to integer types. | ||
/// | ||
public enum ByteLength { | ||
case one | ||
case two | ||
case four | ||
case eight | ||
|
||
fileprivate var length: Int { | ||
|
||
switch self { | ||
case .one: | ||
return 1 | ||
case .two: | ||
return 2 | ||
case .four: | ||
return 4 | ||
case .eight: | ||
return 8 | ||
} | ||
} | ||
|
||
fileprivate var max: UInt { | ||
|
||
switch self { | ||
case .one: | ||
return UInt(UInt8.max) | ||
case .two: | ||
return UInt(UInt16.max) | ||
case .four: | ||
return UInt(UInt32.max) | ||
case .eight: | ||
return UInt(UInt64.max) | ||
} | ||
} | ||
} | ||
|
||
public typealias OutboundIn = ByteBuffer | ||
public typealias OutboundOut = ByteBuffer | ||
|
||
private let lengthFieldLength: LengthFieldPrepender.ByteLength | ||
private let lengthFieldEndianness: Endianness | ||
|
||
private var lengthBuffer: ByteBuffer? | ||
|
||
/// Create `LengthFieldPrepender` with a given length field length. | ||
/// | ||
/// - parameters: | ||
/// - lengthFieldLength: The length of the field specifying the remaining length of the frame. | ||
/// - lengthFieldEndianness: The endianness of the field specifying the remaining length of the frame. | ||
/// | ||
public init(lengthFieldLength: ByteLength, lengthFieldEndianness: Endianness = .big) { | ||
|
||
// The value contained in the length field must be able to be represented by an integer type on the platform. | ||
// ie. .eight == 64bit which would not fit into the Int type on a 32bit platform. | ||
precondition(lengthFieldLength.length <= Int.bitWidth/8) | ||
|
||
self.lengthFieldLength = lengthFieldLength | ||
self.lengthFieldEndianness = lengthFieldEndianness | ||
} | ||
|
||
public func write(ctx: ChannelHandlerContext, data: NIOAny, promise: EventLoopPromise<Void>?) { | ||
|
||
let dataBuffer = self.unwrapOutboundIn(data) | ||
let dataLength = dataBuffer.readableBytes | ||
|
||
guard dataLength <= self.lengthFieldLength.max else { | ||
promise?.fail(error: LengthFieldPrependerError.messageDataTooLongForLengthField) | ||
return | ||
} | ||
|
||
var dataLengthBuffer: ByteBuffer | ||
|
||
if let existingBuffer = self.lengthBuffer { | ||
dataLengthBuffer = existingBuffer | ||
dataLengthBuffer.clear() | ||
} else { | ||
dataLengthBuffer = ctx.channel.allocator.buffer(capacity: self.lengthFieldLength.length) | ||
self.lengthBuffer = dataLengthBuffer | ||
} | ||
|
||
switch self.lengthFieldLength { | ||
case .one: | ||
dataLengthBuffer.write(integer: UInt8(dataLength), endianness: self.lengthFieldEndianness) | ||
case .two: | ||
dataLengthBuffer.write(integer: UInt16(dataLength), endianness: self.lengthFieldEndianness) | ||
case .four: | ||
dataLengthBuffer.write(integer: UInt32(dataLength), endianness: self.lengthFieldEndianness) | ||
case .eight: | ||
dataLengthBuffer.write(integer: UInt64(dataLength), endianness: self.lengthFieldEndianness) | ||
} | ||
|
||
ctx.write(self.wrapOutboundOut(dataLengthBuffer), promise: nil) | ||
ctx.write(data, promise: promise) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
Tests/NIOExtrasTests/LengthFieldPrependerTest+XCTest.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftNIO open source project | ||
// | ||
// Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See LICENSE.txt for license information | ||
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// LengthFieldPrependerTest+XCTest.swift | ||
// | ||
import XCTest | ||
|
||
/// | ||
/// NOTE: This file was generated by generate_linux_tests.rb | ||
/// | ||
/// Do NOT edit this file directly as it will be regenerated automatically when needed. | ||
/// | ||
|
||
extension LengthFieldPrependerTest { | ||
|
||
static var allTests : [(String, (LengthFieldPrependerTest) -> () throws -> Void)] { | ||
return [ | ||
("testEncodeWithUInt8HeaderWithData", testEncodeWithUInt8HeaderWithData), | ||
("testEncodeWithUInt16HeaderWithString", testEncodeWithUInt16HeaderWithString), | ||
("testEncodeWithUInt32HeaderWithString", testEncodeWithUInt32HeaderWithString), | ||
("testEncodeWithUInt64HeaderWithString", testEncodeWithUInt64HeaderWithString), | ||
("testEncodeWithInt64HeaderWithString", testEncodeWithInt64HeaderWithString), | ||
("testEncodeWithUInt64HeaderStringBigEndian", testEncodeWithUInt64HeaderStringBigEndian), | ||
("testEncodeWithInt64HeaderStringDefaultingToBigEndian", testEncodeWithInt64HeaderStringDefaultingToBigEndian), | ||
("testEmptyBuffer", testEmptyBuffer), | ||
("testLargeBuffer", testLargeBuffer), | ||
("testTooLargeForLengthField", testTooLargeForLengthField), | ||
] | ||
} | ||
} | ||
|
Oops, something went wrong.