forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpGeneralHeaders.cs
More file actions
225 lines (206 loc) · 8.03 KB
/
HttpGeneralHeaders.cs
File metadata and controls
225 lines (206 loc) · 8.03 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics;
namespace System.Net.Http.Headers
{
// The purpose of this type is to extract the handling of general headers in one place rather than duplicating
// functionality in both HttpRequestHeaders and HttpResponseHeaders.
internal sealed class HttpGeneralHeaders
{
private HttpHeaderValueCollection<string>? _connection;
private HttpHeaderValueCollection<string>? _trailer;
private HttpHeaderValueCollection<TransferCodingHeaderValue>? _transferEncoding;
private HttpHeaderValueCollection<ProductHeaderValue>? _upgrade;
private HttpHeaderValueCollection<ViaHeaderValue>? _via;
private HttpHeaderValueCollection<WarningHeaderValue>? _warning;
private HttpHeaderValueCollection<NameValueHeaderValue>? _pragma;
private readonly HttpHeaders _parent;
private bool _transferEncodingChunkedSet;
private bool _connectionCloseSet;
public CacheControlHeaderValue? CacheControl
{
get { return (CacheControlHeaderValue?)_parent.GetParsedValues(KnownHeaders.CacheControl.Descriptor); }
set { _parent.SetOrRemoveParsedValue(KnownHeaders.CacheControl.Descriptor, value); }
}
public bool? ConnectionClose
{
get
{
// Separated out into a static to enable access to TransferEncodingChunked
// without the caller needing to force the creation of HttpGeneralHeaders
// if it wasn't created for other reasons.
return GetConnectionClose(_parent, this);
}
set
{
if (value == true)
{
_connectionCloseSet = true;
if (!_parent.ContainsParsedValue(KnownHeaders.Connection.Descriptor, HeaderUtilities.ConnectionClose))
{
_parent.AddParsedValue(KnownHeaders.Connection.Descriptor, HeaderUtilities.ConnectionClose);
}
}
else
{
_connectionCloseSet = value != null;
// We intentionally ignore the return value. It's OK if "close" wasn't in the store.
_parent.RemoveParsedValue(KnownHeaders.Connection.Descriptor, HeaderUtilities.ConnectionClose);
}
}
}
internal static bool? GetConnectionClose(HttpHeaders parent, HttpGeneralHeaders? headers)
{
if (parent.ContainsParsedValue(KnownHeaders.Connection.Descriptor, HeaderUtilities.ConnectionClose))
{
return true;
}
if (headers != null && headers._connectionCloseSet)
{
return false;
}
return null;
}
public DateTimeOffset? Date
{
get { return HeaderUtilities.GetDateTimeOffsetValue(KnownHeaders.Date.Descriptor, _parent); }
set { _parent.SetOrRemoveParsedValue(KnownHeaders.Date.Descriptor, value); }
}
public HttpHeaderValueCollection<NameValueHeaderValue> Pragma
{
get
{
if (_pragma == null)
{
_pragma = new HttpHeaderValueCollection<NameValueHeaderValue>(KnownHeaders.Pragma.Descriptor, _parent);
}
return _pragma;
}
}
public HttpHeaderValueCollection<string> Trailer
{
get
{
if (_trailer == null)
{
_trailer = new HttpHeaderValueCollection<string>(KnownHeaders.Trailer.Descriptor, _parent);
}
return _trailer;
}
}
internal static bool? GetTransferEncodingChunked(HttpHeaders parent, HttpGeneralHeaders? headers)
{
if (parent.ContainsParsedValue(KnownHeaders.TransferEncoding.Descriptor, HeaderUtilities.TransferEncodingChunked))
{
return true;
}
if (headers != null && headers._transferEncodingChunkedSet)
{
return false;
}
return null;
}
public bool? TransferEncodingChunked
{
get
{
// Separated out into a static to enable access to TransferEncodingChunked
// without the caller needing to force the creation of HttpGeneralHeaders
// if it wasn't created for other reasons.
return GetTransferEncodingChunked(_parent, this);
}
set
{
if (value == true)
{
_transferEncodingChunkedSet = true;
if (!_parent.ContainsParsedValue(KnownHeaders.TransferEncoding.Descriptor, HeaderUtilities.TransferEncodingChunked))
{
_parent.AddParsedValue(KnownHeaders.TransferEncoding.Descriptor, HeaderUtilities.TransferEncodingChunked);
}
}
else
{
_transferEncodingChunkedSet = value != null;
// We intentionally ignore the return value. It's OK if "chunked" wasn't in the store.
_parent.RemoveParsedValue(KnownHeaders.TransferEncoding.Descriptor, HeaderUtilities.TransferEncodingChunked);
}
}
}
public HttpHeaderValueCollection<ProductHeaderValue> Upgrade
{
get
{
if (_upgrade == null)
{
_upgrade = new HttpHeaderValueCollection<ProductHeaderValue>(KnownHeaders.Upgrade.Descriptor, _parent);
}
return _upgrade;
}
}
public HttpHeaderValueCollection<ViaHeaderValue> Via
{
get
{
if (_via == null)
{
_via = new HttpHeaderValueCollection<ViaHeaderValue>(KnownHeaders.Via.Descriptor, _parent);
}
return _via;
}
}
public HttpHeaderValueCollection<WarningHeaderValue> Warning
{
get
{
if (_warning == null)
{
_warning = new HttpHeaderValueCollection<WarningHeaderValue>(KnownHeaders.Warning.Descriptor, _parent);
}
return _warning;
}
}
public HttpHeaderValueCollection<string> Connection
{
get
{
if (_connection == null)
{
_connection = new HttpHeaderValueCollection<string>(KnownHeaders.Connection.Descriptor, _parent);
}
return _connection;
}
}
public HttpHeaderValueCollection<TransferCodingHeaderValue> TransferEncoding
{
get
{
if (_transferEncoding == null)
{
_transferEncoding = new HttpHeaderValueCollection<TransferCodingHeaderValue>(KnownHeaders.TransferEncoding.Descriptor, _parent);
}
return _transferEncoding;
}
}
internal HttpGeneralHeaders(HttpHeaders parent)
{
Debug.Assert(parent != null);
_parent = parent;
}
internal void AddSpecialsFrom(HttpGeneralHeaders sourceHeaders)
{
// Copy special values, but do not overwrite
bool? chunked = TransferEncodingChunked;
if (!chunked.HasValue)
{
TransferEncodingChunked = sourceHeaders.TransferEncodingChunked;
}
bool? close = ConnectionClose;
if (!close.HasValue)
{
ConnectionClose = sourceHeaders.ConnectionClose;
}
}
}
}