package dream-httpaf
Internal: shared http/af stack for Dream (server) and Hyper (client)
Install
dune-project
Dependency
Authors
Maintainers
Sources
dream-1.0.0-alpha6.tar.gz
sha256=8d3b6344c0e175aca628b3d5bb8ee58265e8c1074fc2d40d63f136fef83daf90
doc/src/dream-httpaf.dream-h2/respd.ml.html
Source file respd.ml
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
(*---------------------------------------------------------------------------- * Copyright (c) 2019 António Nuno 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 copyright holder nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 COPYRIGHT HOLDER 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. *---------------------------------------------------------------------------*) (* TODO(anmonteiro): think about whether we wanna expose this module. it might * be helpful to expose a way to reset streams, and I think we'd need a * reference to the Respd *) module Writer = Serialize.Writer type error = [ `Malformed_response of string | `Invalid_response_body_length of Response.t | `Protocol_error of Error_code.t * string | `Exn of exn ] type error_handler = error -> unit type response_handler = Response.t -> Body.Reader.t -> unit type response_info = { response : Response.t ; response_body : Body.Reader.t ; mutable response_body_bytes : int64 ; mutable trailers_parser : Stream.partial_headers option } type trailers_handler = Headers.t -> unit type active_request = { request : Request.t ; request_body : Body.Writer.t ; response_handler : response_handler ; trailers_handler : trailers_handler } type active_state = (response_info, response_info Stream.remote_state) Stream.active_state type state = ( active_state , active_request , active_request Stream.remote_state ) Stream.state type t = (state, error, error_handler) Stream.t let create_active_response response response_body = Stream.ActiveMessage { response ; response_body ; response_body_bytes = Int64.zero ; trailers_parser = None } let response_body_exn (t : t) = match t.state with | Idle | Reserved _ -> failwith "h2.Respd.response_exn: response has not arrived" | Active ( ( Open (ActiveMessage { response_body; _ }) | HalfClosed (ActiveMessage { response_body; _ }) ) , _ ) -> response_body | Active ((Open _ | HalfClosed _), _) -> failwith "h2.Respd.response_exn: response has not arrived" | Closed _ -> failwith "h2.Respd.response_exn: stream already closed" let close_stream (t : t) = (* TODO: reserved *) match t.state with | Active (HalfClosed _, _) -> (* easy case, just transition to the closed state. *) Stream.finish_stream t Finished | Active (Open _, _) -> (* Still not done sending, reset stream with no error? *) (* TODO: *) () | _ -> () let _report_error (t : t) ?response_body (error : error) error_code = match t.error_code with | No_error -> (match response_body with | Some response_body -> Body.Reader.close response_body | None -> ()); t.error_code <- Stream.error_to_code error error_code; t.error_handler error | Exn _ | Other _ -> (* Already handling error. * TODO(anmonteiro): Log a message when we add Logs support *) () let report_error (t : t) error error_code = match t.state with | Active ( ( Open (ActiveMessage { response_body; _ }) | HalfClosed (ActiveMessage { response_body; _ }) ) , s ) -> Body.Writer.close s.request_body; _report_error t ~response_body error error_code; Stream.reset_stream t error_code | Reserved (ActiveMessage s) | Active (_, s) -> Body.Writer.close s.request_body; _report_error t error error_code; Stream.reset_stream t error_code | Reserved _ -> (* Streams in the reserved state don't yet have a stream-level error * handler registered with them *) () | Idle | Closed _ -> (* Not allowed to send RST_STREAM frames in these states *) ignore (_report_error t error error_code) let requires_output (t : t) = match t.state with | Idle -> true | Reserved _ -> false | Active (Open _, _) -> true | Active (HalfClosed _, _) -> false | Closed _ -> false let flush_request_body (t : t) ~max_bytes = match t.state with | Active (Open active_state, ({ request_body; _ } as s)) -> if Body.Writer.has_pending_output request_body && max_bytes > 0 then Body.Writer.transfer_to_writer request_body t.writer ~max_frame_size:t.max_frame_size ~max_bytes t.id else if Body.Writer.is_closed request_body then ( (* closed and no pending output *) (* From RFC7540§6.9.1: * Frames with zero length with the END_STREAM flag set (that is, an * empty DATA frame) MAY be sent if there is no available space in * either flow-control window. *) let frame_info = Writer.make_frame_info ~max_frame_size:t.max_frame_size ~flags:Flags.(set_end_stream default_flags) t.id in Writer.schedule_data t.writer frame_info ~len:0 Bigstringaf.empty; t.state <- Active (HalfClosed active_state, s); 0) else (* not closed and no pending output *) 0 | _ -> 0 let deliver_trailer_headers (t : t) headers = match t.state with | Active ( (Open (ActiveMessage _) | HalfClosed (ActiveMessage _)) , { trailers_handler; _ } ) -> trailers_handler headers | _ -> assert false let flush_response_body (t : t) = match t.state with | Active ( ( Open (ActiveMessage { response_body; _ }) | HalfClosed (ActiveMessage { response_body; _ }) ) , _ ) -> if Body.Reader.has_pending_output response_body then ( try Body.Reader.execute_read response_body with | exn -> report_error t (`Exn exn) InternalError) | _ -> ()
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>