Line | Branch | Exec | Source |
---|---|---|---|
1 | // | ||
2 | // Copyright (c) 2021 Vinnie Falco (vinnie.falco@gmail.com) | ||
3 | // | ||
4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
6 | // | ||
7 | // Official repository: https://github.com/CPPAlliance/http_proto | ||
8 | // | ||
9 | |||
10 | #ifndef BOOST_HTTP_PROTO_IMPL_STATUS_IPP | ||
11 | #define BOOST_HTTP_PROTO_IMPL_STATUS_IPP | ||
12 | |||
13 | #include <boost/http_proto/status.hpp> | ||
14 | #include <boost/throw_exception.hpp> | ||
15 | |||
16 | namespace boost { | ||
17 | namespace http_proto { | ||
18 | |||
19 | status | ||
20 | 598 | int_to_status(unsigned v) | |
21 | { | ||
22 |
1/2✓ Branch 0 taken 598 times.
✗ Branch 1 not taken.
|
598 | switch(static_cast<status>(v)) |
23 | { | ||
24 | // 1xx | ||
25 | 598 | case status::continue_: | |
26 | case status::switching_protocols: | ||
27 | case status::processing: | ||
28 | BOOST_FALLTHROUGH; | ||
29 | |||
30 | // 2xx | ||
31 | case status::ok: | ||
32 | case status::created: | ||
33 | case status::accepted: | ||
34 | case status::non_authoritative_information: | ||
35 | case status::no_content: | ||
36 | case status::reset_content: | ||
37 | case status::partial_content: | ||
38 | case status::multi_status: | ||
39 | case status::already_reported: | ||
40 | case status::im_used: | ||
41 | BOOST_FALLTHROUGH; | ||
42 | |||
43 | // 3xx | ||
44 | case status::multiple_choices: | ||
45 | case status::moved_permanently: | ||
46 | case status::found: | ||
47 | case status::see_other: | ||
48 | case status::not_modified: | ||
49 | case status::use_proxy: | ||
50 | case status::temporary_redirect: | ||
51 | case status::permanent_redirect: | ||
52 | BOOST_FALLTHROUGH; | ||
53 | |||
54 | // 4xx | ||
55 | case status::bad_request: | ||
56 | case status::unauthorized: | ||
57 | case status::payment_required: | ||
58 | case status::forbidden: | ||
59 | case status::not_found: | ||
60 | case status::method_not_allowed: | ||
61 | case status::not_acceptable: | ||
62 | case status::proxy_authentication_required: | ||
63 | case status::request_timeout: | ||
64 | case status::conflict: | ||
65 | case status::gone: | ||
66 | case status::length_required: | ||
67 | case status::precondition_failed: | ||
68 | case status::payload_too_large: | ||
69 | case status::uri_too_long: | ||
70 | case status::unsupported_media_type: | ||
71 | case status::range_not_satisfiable: | ||
72 | case status::expectation_failed: | ||
73 | case status::misdirected_request: | ||
74 | case status::unprocessable_entity: | ||
75 | case status::locked: | ||
76 | case status::failed_dependency: | ||
77 | case status::upgrade_required: | ||
78 | case status::precondition_required: | ||
79 | case status::too_many_requests: | ||
80 | case status::request_header_fields_too_large: | ||
81 | case status::connection_closed_without_response: | ||
82 | case status::unavailable_for_legal_reasons: | ||
83 | case status::client_closed_request: | ||
84 | BOOST_FALLTHROUGH; | ||
85 | |||
86 | // 5xx | ||
87 | case status::internal_server_error: | ||
88 | case status::not_implemented: | ||
89 | case status::bad_gateway: | ||
90 | case status::service_unavailable: | ||
91 | case status::gateway_timeout: | ||
92 | case status::http_version_not_supported: | ||
93 | case status::variant_also_negotiates: | ||
94 | case status::insufficient_storage: | ||
95 | case status::loop_detected: | ||
96 | case status::not_extended: | ||
97 | case status::network_authentication_required: | ||
98 | case status::network_connect_timeout_error: | ||
99 | 598 | return static_cast<status>(v); | |
100 | |||
101 | ✗ | default: | |
102 | ✗ | break; | |
103 | } | ||
104 | ✗ | return status::unknown; | |
105 | } | ||
106 | |||
107 | status_class | ||
108 | 126 | to_status_class(unsigned v) | |
109 | { | ||
110 |
6/6✓ Branch 0 taken 6 times.
✓ Branch 1 taken 20 times.
✓ Branch 2 taken 16 times.
✓ Branch 3 taken 58 times.
✓ Branch 4 taken 24 times.
✓ Branch 5 taken 2 times.
|
126 | switch(v / 100) |
111 | { | ||
112 | 6 | case 1: return status_class::informational; | |
113 | 20 | case 2: return status_class::successful; | |
114 | 16 | case 3: return status_class::redirection; | |
115 | 58 | case 4: return status_class::client_error; | |
116 | 24 | case 5: return status_class::server_error; | |
117 | 2 | default: | |
118 | 2 | break; | |
119 | } | ||
120 | 2 | return status_class::unknown; | |
121 | } | ||
122 | |||
123 | status_class | ||
124 | 63 | to_status_class(status v) | |
125 | { | ||
126 | 63 | return to_status_class(static_cast<int>(v)); | |
127 | } | ||
128 | |||
129 | core::string_view | ||
130 | 59 | obsolete_reason( | |
131 | status v) | ||
132 | { | ||
133 |
59/63✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 1 times.
✓ Branch 5 taken 1 times.
✓ Branch 6 taken 1 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 1 times.
✓ Branch 9 taken 1 times.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 1 times.
✓ Branch 13 taken 1 times.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 1 times.
✓ Branch 17 taken 1 times.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 1 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 1 times.
✓ Branch 22 taken 1 times.
✓ Branch 23 taken 1 times.
✓ Branch 24 taken 1 times.
✓ Branch 25 taken 1 times.
✓ Branch 26 taken 1 times.
✓ Branch 27 taken 1 times.
✓ Branch 28 taken 1 times.
✓ Branch 29 taken 1 times.
✓ Branch 30 taken 1 times.
✓ Branch 31 taken 1 times.
✓ Branch 32 taken 1 times.
✓ Branch 33 taken 1 times.
✓ Branch 34 taken 1 times.
✓ Branch 35 taken 1 times.
✓ Branch 36 taken 1 times.
✓ Branch 37 taken 1 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 1 times.
✓ Branch 40 taken 1 times.
✓ Branch 41 taken 1 times.
✓ Branch 42 taken 1 times.
✓ Branch 43 taken 1 times.
✓ Branch 44 taken 1 times.
✓ Branch 45 taken 1 times.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✓ Branch 48 taken 1 times.
✗ Branch 49 not taken.
✓ Branch 50 taken 1 times.
✓ Branch 51 taken 1 times.
✓ Branch 52 taken 1 times.
✓ Branch 53 taken 1 times.
✓ Branch 54 taken 1 times.
✓ Branch 55 taken 1 times.
✓ Branch 56 taken 1 times.
✓ Branch 57 taken 1 times.
✓ Branch 58 taken 1 times.
✓ Branch 59 taken 1 times.
✓ Branch 60 taken 1 times.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
|
59 | switch(static_cast<status>(v)) |
134 | { | ||
135 | // 1xx | ||
136 | 1 | case status::continue_: return "Continue"; | |
137 | 1 | case status::switching_protocols: return "Switching Protocols"; | |
138 | 1 | case status::processing: return "Processing"; | |
139 | |||
140 | // 2xx | ||
141 | 1 | case status::ok: return "OK"; | |
142 | 1 | case status::created: return "Created"; | |
143 | 1 | case status::accepted: return "Accepted"; | |
144 | 1 | case status::non_authoritative_information: return "Non-Authoritative Information"; | |
145 | 1 | case status::no_content: return "No Content"; | |
146 | 1 | case status::reset_content: return "Reset Content"; | |
147 | 1 | case status::partial_content: return "Partial Content"; | |
148 | 1 | case status::multi_status: return "Multi-Status"; | |
149 | 1 | case status::already_reported: return "Already Reported"; | |
150 | 1 | case status::im_used: return "IM Used"; | |
151 | |||
152 | // 3xx | ||
153 | 1 | case status::multiple_choices: return "Multiple Choices"; | |
154 | 1 | case status::moved_permanently: return "Moved Permanently"; | |
155 | 1 | case status::found: return "Found"; | |
156 | 1 | case status::see_other: return "See Other"; | |
157 | 1 | case status::not_modified: return "Not Modified"; | |
158 | 1 | case status::use_proxy: return "Use Proxy"; | |
159 | 1 | case status::temporary_redirect: return "Temporary Redirect"; | |
160 | 1 | case status::permanent_redirect: return "Permanent Redirect"; | |
161 | |||
162 | // 4xx | ||
163 | 1 | case status::bad_request: return "Bad Request"; | |
164 | 1 | case status::unauthorized: return "Unauthorized"; | |
165 | 1 | case status::payment_required: return "Payment Required"; | |
166 | 1 | case status::forbidden: return "Forbidden"; | |
167 | 1 | case status::not_found: return "Not Found"; | |
168 | 1 | case status::method_not_allowed: return "Method Not Allowed"; | |
169 | 1 | case status::not_acceptable: return "Not Acceptable"; | |
170 | 1 | case status::proxy_authentication_required: return "Proxy Authentication Required"; | |
171 | 1 | case status::request_timeout: return "Request Timeout"; | |
172 | 1 | case status::conflict: return "Conflict"; | |
173 | 1 | case status::gone: return "Gone"; | |
174 | 1 | case status::length_required: return "Length Required"; | |
175 | 1 | case status::precondition_failed: return "Precondition Failed"; | |
176 | 1 | case status::payload_too_large: return "Payload Too Large"; | |
177 | 1 | case status::uri_too_long: return "URI Too Long"; | |
178 | 1 | case status::unsupported_media_type: return "Unsupported Media Type"; | |
179 | 1 | case status::range_not_satisfiable: return "Range Not Satisfiable"; | |
180 | 1 | case status::expectation_failed: return "Expectation Failed"; | |
181 | 1 | case status::misdirected_request: return "Misdirected Request"; | |
182 | 1 | case status::unprocessable_entity: return "Unprocessable Entity"; | |
183 | 1 | case status::locked: return "Locked"; | |
184 | 1 | case status::failed_dependency: return "Failed Dependency"; | |
185 | 1 | case status::upgrade_required: return "Upgrade Required"; | |
186 | 1 | case status::precondition_required: return "Precondition Required"; | |
187 | 1 | case status::too_many_requests: return "Too Many Requests"; | |
188 | 1 | case status::request_header_fields_too_large: return "Request Header Fields Too Large"; | |
189 | ✗ | case status::connection_closed_without_response: return "Connection Closed Without Response"; | |
190 | 1 | case status::unavailable_for_legal_reasons: return "Unavailable For Legal Reasons"; | |
191 | ✗ | case status::client_closed_request: return "Client Closed Request"; | |
192 | // 5xx | ||
193 | 1 | case status::internal_server_error: return "Internal Server Error"; | |
194 | 1 | case status::not_implemented: return "Not Implemented"; | |
195 | 1 | case status::bad_gateway: return "Bad Gateway"; | |
196 | 1 | case status::service_unavailable: return "Service Unavailable"; | |
197 | 1 | case status::gateway_timeout: return "Gateway Timeout"; | |
198 | 1 | case status::http_version_not_supported: return "HTTP Version Not Supported"; | |
199 | 1 | case status::variant_also_negotiates: return "Variant Also Negotiates"; | |
200 | 1 | case status::insufficient_storage: return "Insufficient Storage"; | |
201 | 1 | case status::loop_detected: return "Loop Detected"; | |
202 | 1 | case status::not_extended: return "Not Extended"; | |
203 | 1 | case status::network_authentication_required: return "Network Authentication Required"; | |
204 | ✗ | case status::network_connect_timeout_error: return "Network Connect Timeout Error"; | |
205 | |||
206 | ✗ | default: | |
207 | ✗ | break; | |
208 | } | ||
209 | ✗ | return "<unknown-status>"; | |
210 | } | ||
211 | |||
212 | std::ostream& | ||
213 | ✗ | operator<<(std::ostream& os, status v) | |
214 | { | ||
215 | ✗ | return os << obsolete_reason(v); | |
216 | } | ||
217 | |||
218 | } // http_proto | ||
219 | } // boost | ||
220 | |||
221 | #endif | ||
222 |