Fixed for Perl 5.8.2.
[perl4caml.git] / wrappers / pl_HTTP_Request.ml
1 (** Wrapper around Perl [HTTP::Request] class.
2   *
3   * Copyright (C) 2003 Merjis Ltd.
4   *
5   * $Id: pl_HTTP_Request.ml,v 1.3 2003-10-16 13:41:07 rich Exp $
6   *)
7
8 open Perl
9
10 open Pl_HTTP_Message
11 open Pl_URI
12
13 let _ = eval "use HTTP::Request"
14
15 class http_request sv =
16
17 object (self)
18   inherit http_message sv
19
20   method sv = sv
21
22   method method_ =
23     string_of_sv (call_method sv "method" [])
24   method set_method meth =
25     call_method_void sv "method" [sv_of_string meth]
26   method as_string =
27     string_of_sv (call_method sv "as_string" [])
28
29 end
30
31 let new_ meth ?uri_obj ?uri (* ?header ?content *) () =
32   let sv =
33     match uri_obj, uri with
34         None, None ->
35           failwith ("Pl_HTTP_Request.new_ must be called with either a "^
36                     "~uri_obj (URI object) or ~uri (string) parameter.")
37       | Some (uri_obj : uri), None ->
38           call_class_method "HTTP::Request" "new" [sv_of_string meth;
39                                                    uri_obj#sv]
40       | _, Some uri ->
41           call_class_method "HTTP::Request" "new" [sv_of_string meth;
42                                                    sv_of_string uri]
43   in
44   new http_request sv