]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/ocaml-http/examples/damned_recursion.ml
0280b3f1c5a0795d9b98359813b97f502529dd4b
[helm.git] / helm / DEVEL / ocaml-http / examples / damned_recursion.ml
1
2 (*
3   OCaml HTTP - do it yourself (fully OCaml) HTTP daemon
4
5   Copyright (C) <2002> Stefano Zacchiroli <zack@cs.unibo.it>
6
7   This program is free software; you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation; either version 2 of the License, or
10   (at your option) any later version.
11
12   This program is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program; if not, write to the Free Software
19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 *)
21
22 open Http_types;;
23 open Printf;;
24
25 (*
26 let wget url =
27   prerr_endline (sprintf "DEBUG: wgetting url '%s'" url);
28   Http_client.Convenience.http_get url
29 in
30 *)
31 let wget addr port path =
32   let rec wget' inchan data =
33     try
34       wget' inchan (data ^ input_line inchan)
35     with End_of_file ->
36       data
37   in
38   prerr_endline (sprintf "DEBUG: wgetting url '%s:%d%s'" addr port path);
39   let sockaddr = Unix.ADDR_INET (Unix.inet_addr_of_string addr, port) in
40   let suck = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
41   Unix.connect suck sockaddr;
42   let outchan = Unix.out_channel_of_descr suck in
43   output_string outchan (sprintf "GET %s HTTP/1.0\r\n" path);
44   flush outchan;
45   let inchan = Unix.in_channel_of_descr suck in
46   wget' inchan ""
47 in
48 let callback (req: request) outchan =
49   let i = int_of_string (req#param "x") in
50   prerr_endline (string_of_int i);
51   match i with
52   | 0 -> output_string outchan "0"
53   | x when x>0 ->
54       let data =
55         wget "127.0.0.1" 9999 (sprintf "/foo?x=%d" (x-1))
56 (*         wget (sprintf "http://localhost:9999/foo?x=%d" (x-1)) *)
57 (*         wget "http://localhost:80/index.html" *)
58       in
59       output_string outchan (sprintf "%s %d" data x)
60   | _ -> assert false
61 in
62 Http_client.Convenience.http_trials := 1;
63 (* Http_daemon.start' ~port:9999 ~mode:`Thread callback *)
64 Http_daemon.start' ~port:9999 ~mode:`Fork callback