123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259(*----------------------------------------------------------------------------
* Copyright (c) 2017 Inhabited Type LLC.
* Copyright (c) 2019 Antonio N. Monteiro.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the author nor the names of his contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*---------------------------------------------------------------------------*)(* If we ever drop support for OCaml < 4.06 we can use a variant of the
* following, and remove all the function forwarding.
*
* From https://caml.inria.fr/pub/docs/manual-ocaml/extn.html#sec249:
*
* Prior to OCaml 4.06, there were a number of restrictions: one could only
* remove types and modules at the outermost level (not inside submodules),
* and in the case of with type the definition had to be another type
* constructor with the same type parameters. *)(* include (Httpaf.Status : Status with type informational := [ | `Continue ]) *)(* From RFC7540§8.1.1:
* HTTP/2 removes support for the 101 (Switching Protocols) informational
* status code ([RFC7231], Section 6.2.2). *)typeinformational=[`Continue]typesuccessful=Httpaf.Status.successfultyperedirection=Httpaf.Status.redirectiontypeclient_error=[Httpaf.Status.client_error|(* From RFC7540§9.1.2:
* The 421 (Misdirected Request) status code indicates that the request
* was directed at a server that is not able to produce a response. This
* can be sent by a server that is not configured to produce responses
* for the combination of scheme and authority that are included in the
* request URI. *)`Misdirected_request]typeserver_error=Httpaf.Status.server_errortypestandard=[informational|successful|redirection|client_error|server_error]typet=[standard|`Codeofint](* Note: The value for reason phrases is never actually serialized to the
* input or output channels.
*
* From RFC7540§8.1.2.4:
* HTTP/2 does not define a way to carry the version or reason phrase that is
* included in an HTTP/1.1 status line. *)letdefault_reason_phrase=function|`Misdirected_request->"Misdirected Request"|#Httpaf.Status.standardast->Httpaf.Status.default_reason_phrasetletto_code=function|`Misdirected_request->421|#Httpaf.Status.tast->Httpaf.Status.to_codetletreally_unsafe_of_code=function(* Informational *)|100->`Continue(* Successful *)|200->`OK|201->`Created|202->`Accepted|203->`Non_authoritative_information|204->`No_content|205->`Reset_content|206->`Partial_content(* Redirection *)|300->`Multiple_choices|301->`Moved_permanently|302->`Found|303->`See_other|304->`Not_modified|305->`Use_proxy|307->`Temporary_redirect(* Client error *)|400->`Bad_request|401->`Unauthorized|402->`Payment_required|403->`Forbidden|404->`Not_found|405->`Method_not_allowed|406->`Not_acceptable|407->`Proxy_authentication_required|408->`Request_timeout|409->`Conflict|410->`Gone|411->`Length_required|412->`Precondition_failed|413->`Payload_too_large|414->`Uri_too_long|415->`Unsupported_media_type|416->`Range_not_satisfiable|417->`Expectation_failed|418->`I_m_a_teapot|420->`Enhance_your_calm|421->`Misdirected_request|426->`Upgrade_required(* Server error *)|500->`Internal_server_error|501->`Not_implemented|502->`Bad_gateway|503->`Service_unavailable|504->`Gateway_timeout|505->`Http_version_not_supported|c->`Codecletunsafe_of_codec=matchreally_unsafe_of_codecwith|`Codec->ifc<0thenfailwith(Printf.sprintf"Status.unsafe_of_code: %d is negative"c)else`Codec|s->sletof_codec=matchreally_unsafe_of_codecwith|`Codec->ifc<100||c>999thenfailwith(Printf.sprintf"Status.of_code: %d is not a three-digit number"c)else`Codec|s->sletis_informational=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_informationaltletis_successful=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_successfultletis_redirection=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_redirectiontletis_client_error=function|`Misdirected_request->true|#Httpaf.Status.tast->Httpaf.Status.is_client_errortletis_server_error=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_server_errortletis_error=function|`Misdirected_request->true|#Httpaf.Status.tast->Httpaf.Status.is_errortletto_string=function|`Misdirected_request->"421"|#Httpaf.Status.tast->Httpaf.Status.to_stringtletof_stringx=of_code(int_of_stringx)letpp_humfmtt=Format.fprintffmt"%u"(to_codet)