forked from apple/swift-nio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTTPTypes.swift
More file actions
1517 lines (1394 loc) · 46.6 KB
/
Copy pathHTTPTypes.swift
File metadata and controls
1517 lines (1394 loc) · 46.6 KB
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2017-2021 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 NIOCore
let crlf: StaticString = "\r\n"
let headerSeparator: StaticString = ": "
extension HTTPHeaders {
internal enum ConnectionHeaderValue {
case keepAlive
case close
case unspecified
}
}
// Keep track of keep alive state.
internal enum KeepAliveState {
// We know keep alive should be used.
case keepAlive
// We know we should close the connection.
case close
// We need to scan the headers to find out if keep alive is used or not
case unknown
}
/// A representation of the request line and header fields of a HTTP request.
public struct HTTPRequestHead: Equatable {
private final class _Storage {
var method: HTTPMethod
var uri: String
var version: HTTPVersion
init(method: HTTPMethod, uri: String, version: HTTPVersion) {
self.method = method
self.uri = uri
self.version = version
}
func copy() -> _Storage {
.init(method: self.method, uri: self.uri, version: self.version)
}
}
private var _storage: _Storage
/// The header fields for this HTTP request.
// warning: do not put this in `_Storage` as it'd trigger a CoW on every mutation
public var headers: HTTPHeaders
/// The HTTP method for this request.
public var method: HTTPMethod {
get {
self._storage.method
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.method = newValue
}
}
// This request's URI.
public var uri: String {
get {
self._storage.uri
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.uri = newValue
}
}
/// The version for this HTTP request.
public var version: HTTPVersion {
get {
self._storage.version
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.version = newValue
}
}
/// Create a `HTTPRequestHead`
///
/// - Parameters:
/// - version: The version for this HTTP request.
/// - method: The HTTP method for this request.
/// - uri: The URI used on this request.
/// - headers: This request's HTTP headers.
public init(version: HTTPVersion, method: HTTPMethod, uri: String, headers: HTTPHeaders) {
self._storage = .init(method: method, uri: uri, version: version)
self.headers = headers
}
/// Create a `HTTPRequestHead`
///
/// - Parameter version: The version for this HTTP request.
/// - Parameter method: The HTTP method for this request.
/// - Parameter uri: The URI used on this request.
public init(version: HTTPVersion, method: HTTPMethod, uri: String) {
self.init(version: version, method: method, uri: uri, headers: HTTPHeaders())
}
public static func == (lhs: HTTPRequestHead, rhs: HTTPRequestHead) -> Bool {
lhs.method == rhs.method && lhs.uri == rhs.uri && lhs.version == rhs.version && lhs.headers == rhs.headers
}
private mutating func copyStorageIfNotUniquelyReferenced() {
if !isKnownUniquelyReferenced(&self._storage) {
self._storage = self._storage.copy()
}
}
}
extension HTTPRequestHead: @unchecked Sendable {}
/// The parts of a complete HTTP message, representing either a request or a response.
///
/// An HTTP message is made up of:
/// - a request or status line with several headers, encoded by a single ``HTTPPart/head(_:)`` part,
/// - zero or more ``HTTPPart/body(_:)`` parts,
/// - and some optional trailers (represented as headers) in a single ``HTTPPart/end(_:)`` part.
///
/// To indicate that a complete HTTP message has been sent or received,
/// an ``HTTPPart/end(_:)`` part must be used, even when no trailers are included.
public enum HTTPPart<HeadT: Equatable, BodyT: Equatable> {
/// The headers of an HTTP request or response.
///
/// A single part is always used to encode all headers.
case head(HeadT)
/// A part of an HTTP request or response's body.
///
/// Zero or more body parts can be sent or received. The stream is finished when
/// an ``HTTPPart/end(_:)`` part is received.
case body(BodyT)
/// The end of an HTTP request or response, optionally containing trailers.
///
/// A single part is always used to encode all trailers.
case end(HTTPHeaders?)
}
extension HTTPPart: Sendable where HeadT: Sendable, BodyT: Sendable {}
extension HTTPPart: Equatable {}
/// The components of a HTTP request from the view of a HTTP client.
public typealias HTTPClientRequestPart = HTTPPart<HTTPRequestHead, IOData>
/// The components of a HTTP request from the view of a HTTP server.
public typealias HTTPServerRequestPart = HTTPPart<HTTPRequestHead, ByteBuffer>
/// The components of a HTTP response from the view of a HTTP client.
public typealias HTTPClientResponsePart = HTTPPart<HTTPResponseHead, ByteBuffer>
/// The components of a HTTP response from the view of a HTTP server.
public typealias HTTPServerResponsePart = HTTPPart<HTTPResponseHead, IOData>
extension HTTPRequestHead {
/// Whether this HTTP request is a keep-alive request: that is, whether the
/// connection should remain open after the request is complete.
public var isKeepAlive: Bool {
headers.isKeepAlive(version: version)
}
}
extension HTTPResponseHead {
/// Whether this HTTP response is a keep-alive request: that is, whether the
/// connection should remain open after the request is complete.
public var isKeepAlive: Bool {
self.headers.isKeepAlive(version: self.version)
}
}
/// A representation of the status line and header fields of a HTTP response.
public struct HTTPResponseHead: Equatable {
private final class _Storage {
var status: HTTPResponseStatus
var version: HTTPVersion
init(status: HTTPResponseStatus, version: HTTPVersion) {
self.status = status
self.version = version
}
func copy() -> _Storage {
.init(status: self.status, version: self.version)
}
}
private var _storage: _Storage
/// The HTTP headers on this response.
// warning: do not put this in `_Storage` as it'd trigger a CoW on every mutation
public var headers: HTTPHeaders
/// The HTTP response status.
public var status: HTTPResponseStatus {
get {
self._storage.status
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.status = newValue
}
}
/// The HTTP version that corresponds to this response.
public var version: HTTPVersion {
get {
self._storage.version
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.version = newValue
}
}
/// Create a `HTTPResponseHead`
///
/// - Parameter version: The version for this HTTP response.
/// - Parameter status: The status for this HTTP response.
/// - Parameter headers: The headers for this HTTP response.
public init(version: HTTPVersion, status: HTTPResponseStatus, headers: HTTPHeaders = HTTPHeaders()) {
self.headers = headers
self._storage = _Storage(status: status, version: version)
}
public static func == (lhs: HTTPResponseHead, rhs: HTTPResponseHead) -> Bool {
lhs.status == rhs.status && lhs.version == rhs.version && lhs.headers == rhs.headers
}
private mutating func copyStorageIfNotUniquelyReferenced() {
if !isKnownUniquelyReferenced(&self._storage) {
self._storage = self._storage.copy()
}
}
}
extension HTTPResponseHead: @unchecked Sendable {}
extension HTTPResponseHead {
/// Determines if the head is purely informational. If a head is informational another head will follow this
/// head eventually.
var isInformational: Bool {
100 <= self.status.code && self.status.code < 200 && self.status.code != 101
}
}
extension UInt8 {
fileprivate var isASCII: Bool {
self <= 127
}
}
extension HTTPHeaders {
func isKeepAlive(version: HTTPVersion) -> Bool {
switch self.keepAliveState {
case .close:
return false
case .keepAlive:
return true
case .unknown:
var state = KeepAliveState.unknown
for word in self[canonicalForm: "connection"] {
if word.utf8.compareCaseInsensitiveASCIIBytes(to: "close".utf8) {
// if we see multiple values, that's clearly bad and we default to 'close'
state = state != .unknown ? .close : .close
} else if word.utf8.compareCaseInsensitiveASCIIBytes(to: "keep-alive".utf8) {
// if we see multiple values, that's clearly bad and we default to 'close'
state = state != .unknown ? .close : .keepAlive
}
}
switch state {
case .close:
return false
case .keepAlive:
return true
case .unknown:
// HTTP 1.1 use keep-alive by default if not otherwise told.
return version.major == 1 && version.minor >= 1
}
}
}
}
/// A representation of a block of HTTP header fields.
///
/// HTTP header fields are a complex data structure. The most natural representation
/// for these is a sequence of two-tuples of field name and field value, both as
/// strings. This structure preserves that representation, but provides a number of
/// convenience features in addition to it.
///
/// For example, this structure enables access to header fields based on the
/// case-insensitive form of the field name, but preserves the original case of the
/// field when needed. It also supports recomposing headers to a maximally joined
/// or split representation, such that header fields that are able to be repeated
/// can be represented appropriately.
public struct HTTPHeaders: CustomStringConvertible, ExpressibleByDictionaryLiteral {
@usableFromInline
internal var headers: [(String, String)]
internal var keepAliveState: KeepAliveState = .unknown
public var description: String {
self.headers.lazy.map {
"\($0.0): \($0.1)"
}
.joined(separator: "; ")
}
internal var names: [String] {
self.headers.map { $0.0 }
}
internal init(_ headers: [(String, String)], keepAliveState: KeepAliveState) {
self.headers = headers
self.keepAliveState = keepAliveState
}
internal func isConnectionHeader(_ name: String) -> Bool {
name.utf8.compareCaseInsensitiveASCIIBytes(to: "connection".utf8)
}
/// Construct a `HTTPHeaders` structure.
///
/// - Parameters
/// - headers: An initial set of headers to use to populate the header block.
/// - allocator: The allocator to use to allocate the underlying storage.
public init(_ headers: [(String, String)] = []) {
// Note: this initializer exists because of https://bugs.swift.org/browse/SR-7415.
// Otherwise we'd only have the one below with a default argument for `allocator`.
self.init(headers, keepAliveState: .unknown)
}
/// Construct a `HTTPHeaders` structure.
///
/// - Parameters
/// - elements: name, value pairs provided by a dictionary literal.
public init(dictionaryLiteral elements: (String, String)...) {
self.init(elements)
}
/// Add a header name/value pair to the block.
///
/// This method is strictly additive: if there are other values for the given header name
/// already in the block, this will add a new entry.
///
/// - Parameter name: The header field name. For maximum compatibility this should be an
/// ASCII string. For future-proofing with HTTP/2 lowercase header names are strongly
/// recommended.
/// - Parameter value: The header field value to add for the given name.
public mutating func add(name: String, value: String) {
precondition(!name.utf8.contains(where: { !$0.isASCII }), "name must be ASCII")
self.headers.append((name, value))
if self.isConnectionHeader(name) {
self.keepAliveState = .unknown
}
}
/// Add a sequence of header name/value pairs to the block.
///
/// This method is strictly additive: if there are other entries with the same header
/// name already in the block, this will add new entries.
///
/// - Parameter other: The sequence of header name/value pairs. For maximum compatibility
/// the header should be an ASCII string. For future-proofing with HTTP/2 lowercase header
/// names are strongly recommended.
@inlinable
public mutating func add<S: Sequence>(contentsOf other: S) where S.Element == (String, String) {
self.headers.reserveCapacity(self.headers.count + other.underestimatedCount)
for (name, value) in other {
self.add(name: name, value: value)
}
}
/// Add another block of headers to the block.
///
/// - Parameter other: The block of headers to add to these headers.
public mutating func add(contentsOf other: HTTPHeaders) {
self.headers.append(contentsOf: other.headers)
if other.keepAliveState == .unknown {
self.keepAliveState = .unknown
}
}
/// Add a header name/value pair to the block, replacing any previous values for the
/// same header name that are already in the block.
///
/// This is a supplemental method to `add` that essentially combines `remove` and `add`
/// in a single function. It can be used to ensure that a header block is in a
/// well-defined form without having to check whether the value was previously there.
/// Like `add`, this method performs case-insensitive comparisons of the header field
/// names.
///
/// - Parameter name: The header field name. For maximum compatibility this should be an
/// ASCII string. For future-proofing with HTTP/2 lowercase header names are strongly
// recommended.
/// - Parameter value: The header field value to add for the given name.
public mutating func replaceOrAdd(name: String, value: String) {
if self.isConnectionHeader(name) {
self.keepAliveState = .unknown
}
self.remove(name: name)
self.add(name: name, value: value)
}
/// Remove all values for a given header name from the block.
///
/// This method uses case-insensitive comparisons for the header field name.
///
/// - Parameter name: The name of the header field to remove from the block.
public mutating func remove(name: String) {
if self.isConnectionHeader(name) {
self.keepAliveState = .unknown
}
self.headers.removeAll { (headerName, _) in
if name.utf8.count != headerName.utf8.count {
return false
}
return name.utf8.compareCaseInsensitiveASCIIBytes(to: headerName.utf8)
}
}
/// Retrieve all of the values for a give header field name from the block.
///
/// This method uses case-insensitive comparisons for the header field name. It
/// does not return a maximally-decomposed list of the header fields, but instead
/// returns them in their original representation: that means that a comma-separated
/// header field list may contain more than one entry, some of which contain commas
/// and some do not. If you want a representation of the header fields suitable for
/// performing computation on, consider `subscript(canonicalForm:)`.
///
/// - Parameter name: The header field name whose values are to be retrieved.
/// - Returns: A list of the values for that header field name.
public subscript(name: String) -> [String] {
self.headers.reduce(into: []) { target, lr in
let (key, value) = lr
if key.utf8.compareCaseInsensitiveASCIIBytes(to: name.utf8) {
target.append(value)
}
}
}
/// Retrieves the first value for a given header field name from the block.
///
/// This method uses case-insensitive comparisons for the header field name. It
/// does not return the first value from a maximally-decomposed list of the header fields,
/// but instead returns the first value from the original representation: that means
/// that a comma-separated header field list may contain more than one entry, some of
/// which contain commas and some do not. If you want a representation of the header fields
/// suitable for performing computation on, consider `subscript(canonicalForm:)`.
///
/// - Parameter name: The header field name whose first value should be retrieved.
/// - Returns: The first value for the header field name.
public func first(name: String) -> String? {
guard !self.headers.isEmpty else {
return nil
}
return self.headers.first { header in header.0.isEqualCaseInsensitiveASCIIBytes(to: name) }?.1
}
/// Checks if a header is present
///
/// - Parameters:
/// - name: The name of the header
// - returns: `true` if a header with the name (and value) exists, `false` otherwise.
public func contains(name: String) -> Bool {
for kv in self.headers {
if kv.0.utf8.compareCaseInsensitiveASCIIBytes(to: name.utf8) {
return true
}
}
return false
}
/// Retrieves the header values for the given header field in "canonical form": that is,
/// splitting them on commas as extensively as possible such that multiple values received on the
/// one line are returned as separate entries. Also respects the fact that Set-Cookie should not
/// be split in this way.
///
/// - Parameter name: The header field name whose values are to be retrieved.
/// - Returns: A list of the values for that header field name.
public subscript(canonicalForm name: String) -> [Substring] {
let result = self[name]
guard result.count > 0 else {
return []
}
// It's not safe to split Set-Cookie on comma.
guard name.lowercased() != "set-cookie" else {
return result.map { $0[...] }
}
return result.flatMap { $0.split(separator: ",").map { $0.trimWhitespace() } }
}
}
extension HTTPHeaders: Sendable {}
extension HTTPHeaders {
/// The total number of headers that can be contained without allocating new storage.
public var capacity: Int {
self.headers.capacity
}
/// Reserves enough space to store the specified number of headers.
///
/// - Parameter minimumCapacity: The requested number of headers to store.
public mutating func reserveCapacity(_ minimumCapacity: Int) {
self.headers.reserveCapacity(minimumCapacity)
}
}
extension ByteBuffer {
/// Serializes this HTTP header block to bytes suitable for writing to the wire.
///
/// - Parameter buffer: A buffer to write the serialized bytes into. Will increment
/// the writer index of this buffer.
mutating func write(headers: HTTPHeaders) {
for header in headers.headers {
self.writeString(header.0)
self.writeStaticString(headerSeparator)
self.writeString(header.1)
self.writeStaticString(crlf)
}
self.writeStaticString(crlf)
}
}
extension HTTPHeaders: RandomAccessCollection {
public typealias Element = (name: String, value: String)
public struct Index: Comparable {
fileprivate let base: Array<(String, String)>.Index
public static func < (lhs: Index, rhs: Index) -> Bool {
lhs.base < rhs.base
}
}
public var startIndex: HTTPHeaders.Index {
.init(base: self.headers.startIndex)
}
public var endIndex: HTTPHeaders.Index {
.init(base: self.headers.endIndex)
}
public func index(before i: HTTPHeaders.Index) -> HTTPHeaders.Index {
.init(base: self.headers.index(before: i.base))
}
public func index(after i: HTTPHeaders.Index) -> HTTPHeaders.Index {
.init(base: self.headers.index(after: i.base))
}
public subscript(position: HTTPHeaders.Index) -> Element {
self.headers[position.base]
}
}
extension UTF8.CodeUnit {
var isASCIIWhitespace: Bool {
switch self {
case UInt8(ascii: " "),
UInt8(ascii: "\t"):
return true
default:
return false
}
}
}
extension String {
func trimASCIIWhitespace() -> Substring {
Substring(self).trimWhitespace()
}
}
extension Substring {
fileprivate func trimWhitespace() -> Substring {
guard let firstNonWhitespace = self.utf8.firstIndex(where: { !$0.isASCIIWhitespace }) else {
// The whole substring is ASCII whitespace.
return Substring()
}
// There must be at least one non-ascii whitespace character, so banging here is safe.
let lastNonWhitespace = self.utf8.lastIndex(where: { !$0.isASCIIWhitespace })!
return Substring(self.utf8[firstNonWhitespace...lastNonWhitespace])
}
}
extension HTTPHeaders: Equatable {
public static func == (lhs: HTTPHeaders, rhs: HTTPHeaders) -> Bool {
guard lhs.headers.count == rhs.headers.count else {
return false
}
let lhsNames = Set(lhs.names.map { $0.lowercased() })
let rhsNames = Set(rhs.names.map { $0.lowercased() })
guard lhsNames == rhsNames else {
return false
}
for name in lhsNames {
guard lhs[name].sorted() == rhs[name].sorted() else {
return false
}
}
return true
}
}
public enum HTTPMethod: Equatable, Sendable {
internal enum HasBody {
case yes
case no
case unlikely
}
case GET
case PUT
case ACL
case HEAD
case POST
case COPY
case LOCK
case MOVE
case BIND
case LINK
case PATCH
case TRACE
case MKCOL
case MERGE
case PURGE
case NOTIFY
case SEARCH
case UNLOCK
case REBIND
case UNBIND
case REPORT
case DELETE
case UNLINK
case CONNECT
case MSEARCH
case OPTIONS
case PROPFIND
case CHECKOUT
case PROPPATCH
case SUBSCRIBE
case MKCALENDAR
case MKACTIVITY
case UNSUBSCRIBE
case SOURCE
case RAW(value: String)
/// Whether requests with this verb may have a request body.
internal var hasRequestBody: HasBody {
switch self {
case .TRACE:
return .no
case .POST, .PUT, .PATCH:
return .yes
case .GET, .CONNECT, .OPTIONS, .HEAD, .DELETE:
fallthrough
default:
return .unlikely
}
}
}
/// A structure representing a HTTP version.
public struct HTTPVersion: Equatable, Sendable {
/// Create a HTTP version.
///
/// - Parameter major: The major version number.
/// - Parameter minor: The minor version number.
public init(major: Int, minor: Int) {
self._major = UInt16(major)
self._minor = UInt16(minor)
}
private var _minor: UInt16
private var _major: UInt16
/// The major version number.
public var major: Int {
get {
Int(self._major)
}
set {
self._major = UInt16(newValue)
}
}
/// The minor version number.
public var minor: Int {
get {
Int(self._minor)
}
set {
self._minor = UInt16(newValue)
}
}
/// HTTP/3
public static let http3 = HTTPVersion(major: 3, minor: 0)
/// HTTP/2
public static let http2 = HTTPVersion(major: 2, minor: 0)
/// HTTP/1.1
public static let http1_1 = HTTPVersion(major: 1, minor: 1)
/// HTTP/1.0
public static let http1_0 = HTTPVersion(major: 1, minor: 0)
/// HTTP/0.9 (not supported by SwiftNIO)
public static let http0_9 = HTTPVersion(major: 0, minor: 9)
}
extension HTTPParserError: CustomDebugStringConvertible {
public var debugDescription: String {
switch self {
case .invalidCharactersUsed:
return "illegal characters used in URL/headers"
case .trailingGarbage:
return "trailing garbage bytes"
case .invalidEOFState:
return "stream ended at an unexpected time"
case .headerOverflow:
return "too many header bytes seen; overflow detected"
case .closedConnection:
return "data received after completed connection: close message"
case .invalidVersion:
return "invalid HTTP version"
case .invalidStatus:
return "invalid HTTP status code"
case .invalidMethod:
return "invalid HTTP method"
case .invalidURL:
return "invalid URL"
case .invalidHost:
return "invalid host"
case .invalidPort:
return "invalid port"
case .invalidPath:
return "invalid path"
case .invalidQueryString:
return "invalid query string"
case .invalidFragment:
return "invalid fragment"
case .lfExpected:
return "LF character expected"
case .invalidHeaderToken:
return "invalid character in header"
case .invalidContentLength:
return "invalid character in content-length header"
case .unexpectedContentLength:
return "unexpected content-length header"
case .invalidChunkSize:
return "invalid character in chunk size header"
case .invalidConstant:
return "invalid constant string"
case .invalidInternalState:
return "invalid internal state (swift-http-parser error)"
case .strictModeAssertion:
return "strict mode assertion"
case .paused:
return "paused (swift-http-parser error)"
case .unknown:
return "unknown (http_parser error)"
}
}
}
/// Errors that can be raised while parsing HTTP/1.1.
public enum HTTPParserError: Error {
case invalidCharactersUsed
case trailingGarbage
// from CHTTPParser
case invalidEOFState
case headerOverflow
case closedConnection
case invalidVersion
case invalidStatus
case invalidMethod
case invalidURL
@available(*, deprecated, message: "Cannot be thrown")
case invalidHost
@available(*, deprecated, message: "Cannot be thrown")
case invalidPort
@available(*, deprecated, message: "Cannot be thrown")
case invalidPath
@available(*, deprecated, message: "Cannot be thrown")
case invalidQueryString
@available(*, deprecated, message: "Cannot be thrown")
case invalidFragment
case lfExpected
case invalidHeaderToken
case invalidContentLength
case unexpectedContentLength
case invalidChunkSize
case invalidConstant
case invalidInternalState
case strictModeAssertion
case paused
case unknown
}
extension HTTPResponseStatus {
/// The numerical status code for a given HTTP response status.
public var code: UInt {
get {
switch self {
case .continue:
return 100
case .switchingProtocols:
return 101
case .processing:
return 102
case .ok:
return 200
case .created:
return 201
case .accepted:
return 202
case .nonAuthoritativeInformation:
return 203
case .noContent:
return 204
case .resetContent:
return 205
case .partialContent:
return 206
case .multiStatus:
return 207
case .alreadyReported:
return 208
case .imUsed:
return 226
case .multipleChoices:
return 300
case .movedPermanently:
return 301
case .found:
return 302
case .seeOther:
return 303
case .notModified:
return 304
case .useProxy:
return 305
case .temporaryRedirect:
return 307
case .permanentRedirect:
return 308
case .badRequest:
return 400
case .unauthorized:
return 401
case .paymentRequired:
return 402
case .forbidden:
return 403
case .notFound:
return 404
case .methodNotAllowed:
return 405
case .notAcceptable:
return 406
case .proxyAuthenticationRequired:
return 407
case .requestTimeout:
return 408
case .conflict:
return 409
case .gone:
return 410
case .lengthRequired:
return 411
case .preconditionFailed:
return 412
case .payloadTooLarge:
return 413
case .uriTooLong:
return 414
case .unsupportedMediaType:
return 415
case .rangeNotSatisfiable:
return 416
case .expectationFailed:
return 417
case .imATeapot:
return 418
case .misdirectedRequest:
return 421
case .unprocessableEntity:
return 422
case .locked:
return 423
case .failedDependency:
return 424
case .upgradeRequired:
return 426
case .preconditionRequired:
return 428
case .tooManyRequests:
return 429
case .requestHeaderFieldsTooLarge:
return 431
case .unavailableForLegalReasons:
return 451
case .internalServerError:
return 500
case .notImplemented:
return 501
case .badGateway:
return 502
case .serviceUnavailable:
return 503
case .gatewayTimeout:
return 504
case .httpVersionNotSupported:
return 505
case .variantAlsoNegotiates:
return 506
case .insufficientStorage:
return 507
case .loopDetected:
return 508
case .notExtended:
return 510
case .networkAuthenticationRequired:
return 511
case .custom(let code, reasonPhrase: _):
return code
}
}
}
/// The string reason phrase for a given HTTP response status.
public var reasonPhrase: String {
get {
switch self {
case .continue:
return "Continue"
case .switchingProtocols:
return "Switching Protocols"
case .processing:
return "Processing"
case .ok:
return "OK"
case .created:
return "Created"
case .accepted:
return "Accepted"
case .nonAuthoritativeInformation:
return "Non-Authoritative Information"
case .noContent:
return "No Content"
case .resetContent:
return "Reset Content"
case .partialContent:
return "Partial Content"
case .multiStatus:
return "Multi-Status"
case .alreadyReported:
return "Already Reported"
case .imUsed:
return "IM Used"
case .multipleChoices:
return "Multiple Choices"
case .movedPermanently:
return "Moved Permanently"
case .found:
return "Found"
case .seeOther:
return "See Other"