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
|
%{
(* Ocsigen
* http://www.ocsigen.org
* http_parser.mly Copyright (C) 2005 Denis Berthod
* Laboratoire PPS - CNRS Universit Paris Diderot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
open Ocsigen_http_frame
open Http_header
let mode = ref Nofirstline
let proto = ref HTTP11
let headers = ref Http_headers.empty
let reset_header () = headers := Http_headers.empty
let add_header (n, v) = headers := Http_headers.add n v !headers
let make_header() =
{mode = !mode;
proto= !proto;
headers= !headers}
let meth_of_string =
function
| "GET" -> GET
| "POST" -> POST
| "HEAD" -> HEAD
| "PUT" -> PUT
| "DELETE" -> DELETE
| "TRACE" -> TRACE
| "OPTIONS" -> OPTIONS
| "CONNECT" -> CONNECT
| "LINK" -> LINK
| "UNLINK" -> UNLINK
| "PATCH" -> PATCH
| s -> assert false
let proto_of_string =
function
| "HTTP/1.1" -> HTTP11
| "HTTP/1.0" -> HTTP10
| s -> raise (Http_error.Http_exception (505, None, None))
(*
let split_string s =
try
let ind = String.index s ':' in
(String.lowercase (String.sub s 0 ind )),
String.lowercase (String.sub s (ind+1) ((String.length s) - ind-1) )
with Not_found ->
raise (Http_error.Http_exception (Some 400,["bad header format"]))
*)
%}
%token COLON EOL
%token <string>METHOD
%token <string>PROTO
%token <string>STRING
%token <string>CODE
%start header nofirstline
%type <Ocsigen_http_frame.Http_header.http_header>header
%type <Ocsigen_http_frame.Http_header.http_header>nofirstline
%%
header :
| firstline EOL {make_header()}
| firstline lines EOL {make_header()}
firstline :
| METHOD STRING end_of_firstline {reset_header ();
let (a, b) = $3 in
mode := Query (meth_of_string($1), $2^a);
proto := b}
| PROTO CODE strings EOL {reset_header ();
mode := Answer (int_of_string $2);
proto:=(proto_of_string $1)
}
nofirstline :
| EOL {mode := Nofirstline;
proto := HTTP11;
make_header()}
| lines EOL {mode := Nofirstline;
proto := HTTP11;
make_header()}
lines :
| line {add_header $1}
| line lines {add_header $1;$2}
| strings EOL {}
| strings EOL lines {$3}
line :
| STRING COLON strings EOL {(Http_headers.name $1,$3)}
| CODE COLON strings EOL {(Http_headers.name $1,$3) (*XXX Check*)}
| STRING COLON EOL {(Http_headers.name $1,"")}
| CODE COLON EOL {(Http_headers.name $1,"") (*XXX Check*)}
/* EOL {split_string $1}*/
strings :
| COLON {":"}
| STRING {$1}
| STRING COLON strings {$1^":"^$3}
| STRING strings {$1^" "^$2}
| PROTO {$1}
| PROTO COLON strings {$1^":"^$3}
| PROTO strings {$1^" "^$2}
| METHOD {$1}
| METHOD COLON strings {$1^":"^$3}
| METHOD strings {$1^" "^$2}
| CODE {$1}
| CODE strings {$1^" "^$2}
| CODE COLON strings {$1^":"^$3}
end_of_firstline:
| PROTO EOL {("", proto_of_string $1)}
| COLON end_of_firstline {let (a, b) = $2 in (":"^a, b)}
| STRING end_of_firstline {let (a, b) = $2 in ($1^a, b)}
%%
let nofirstline a =
reset_header ();
nofirstline a
|