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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
|
(* $Id: http_client.mli 146 2005-07-28 14:00:45Z gerd $ *)
(** HTTP 1.1 client *)
(**********************************************************************)
(* HTTP/1.1 client *)
(* written by Gerd Stolpmann *)
(**********************************************************************)
(** {b Note for beginners:} There is a simplified interface called
* {!Http_client.Convenience}.
*)
(** Implements much of HTTP/1.1.
* Implements the following advanced features:
* - chunked messages
* - persistent connections
* - connections in pipelining mode ("full duplex" connections)
* - modular authentication methods, currently Basic and Digest
* - event-driven implementation; allows concurrent service for
* several network connections
*
* Left out:
* - multipart messages, including multipart/byterange
* - content encoding (compression) (1)
* - content digests specified by RFC 2068 and 2069 (1)
* - content negotiation (1)
* - conditional and partial GET (1)
* - following code 303 redirections automatically (1)
* - client-side caching (1)
* - HTTP/0.9 compatibility
*
* (1) These features can be implemented on top of this module if really needed,
* but there is no special support for them.
*)
(** {b Thread safety}
*
* The module can be compiled such that it is thread-safe. In particular,
* one has to link the http_client_mt.cm[xo] object, and thread-safety is
* restricted to the following kinds of usage:
* - The golden rule is that threads must not share pipeline objects.
* If every thread uses its own pipeline, every thread will have its own
* set of state variables.
* It is not detected if two threads errornously share a pipeline,
* neither by an error message nor by implicit serialization. Strange
* things may happen.
* - The same applies to the other objects, e.g. http_call objects
* - The [Convenience] module even serializes; see below.
*)
(** {1 Types and Exceptions} *)
exception Bad_message of string;;
(** The server sent a message which cannot be interpreted. The string
* indicates the reason.
*)
exception Http_error of (int * string);;
(** {b Deprecated.}
* The server sent an error message. The left component of the pair is
* the error code, the right component is the error text.
* This exception is only used by [get_resp_body].
*)
exception No_reply;;
(** There was no response to the request because some other request failed
* earlier and it was not allowed to send the request again.
*)
exception Too_many_redirections
(** While following redirections the limit has been reached *)
exception Http_protocol of exn;;
(** The request could not be processed because the exception condition
* was raised.
*)
type status =
[ `Unserved
| `Http_protocol_error of exn
| `Successful
| `Redirection
| `Client_error
| `Server_error
]
(** Condensed status information of a HTTP call:
* - [`Unserved]: The call has not yet been finished
* - [`HTTP_protocol_error e]: An error on HTTP level occurred. Corresponds
* to the exception [Http_protocol].
* - [`Successful]: The call is successful, and the response code is between
* 200 and 299.
* - [`Redirection]: The call is successful, and the response code is
* between 300 and 399.
* - [`Client_error]: The call failed with a response code between 400 and
* 499.
* - [`Server_error]: The call failed for any other reason.
*)
type 'message_class how_to_reconnect =
Send_again (** Send the request automatically again *)
| Request_fails (** Drop the request *)
| Inquire of ('message_class -> bool)
(** If the function return [true] send again, otherwise
* drop the request.
*)
| Send_again_if_idem (** Default behaviour: [Send_again] for idempotent
* methods (GET, HEAD), [Request_fails] for the rest
*)
(** How to deal with automatic reconnections, especially when the
* connection crashes.
*)
;;
type 'message_class how_to_redirect =
Redirect (** Perform the redirection *)
| Do_not_redirect (** No redirection *)
| Redirect_inquire of ('message_class -> bool)
(** If the function return [true] redirect, otherwise
* do not redirect
*)
| Redirect_if_idem (** Default behaviour: [Redirect] for idempotent
* methods (GET, HEAD), [Do_not_redirect] for the rest
*)
;;
type private_api ;;
(** The private part of the [http_call] class type *)
type response_body_storage =
[ `Memory
| `File of unit -> string
| `Body of unit -> Netmime.mime_body
]
(** How to create the response body:
* - [`Memory]: The response body is in-memory
* - [`File f]: The response body is stored into the file whose name
* is returned by [f()]
* - [`Body f]: The response body is stored into the object returned
* by [f()]
*)
type synchronization =
| Sync
(** The next request begins after the response of the last request has
* been received.
*)
| Pipeline of int
(** The client is allowed to send several requests without waiting
* for responses. The number is the maximum number of unreplied
* requests that are allowed. A typical value: 5.
* If you increase this value, the risk becomes higher that requests
* must be repeatedly sent to the server in the case the connection
* crashes. Increasing is recommended if you send a bigger number of
* GET or HEAD requests to the server. Decreasing is recommended if you
* send large POST or PUT requests to the server.
*)
(** This type determines whether to keep requests and responses
* synchronized or not.
*
* The first request/response round is always done in
* Sync mode, because the protocol version of the other side
* is not known at that moment. [Pipeline] requires HTTP/1.1.
*
* In previous versions of netclient there was a third option,
* [Sync_with_handshake_before_request_body]. This option is no
* longer necessary because the HTTP specification has been updated
* in the meantime, and there is a better mechanism now (the
* [Expect] header is set).
*)
;;
type http_options =
{ synchronization : synchronization;
(** Default: [Pipeline 5]. *)
maximum_connection_failures : int;
(** This option limits the number of connection attempts.
* Default: 5
*)
maximum_message_errors : int;
(** This option limits the number of protocol errors tolerated per
* request. If a request leads to a protocol error, the connection
* is shut down, the server is connected again, and the request is
* tried again (if the kind of the message allows retransmission).
* If a request repeatedly fails, this option limits the number
* of retransmissions.
* Default: 2
*)
inhibit_persistency : bool;
(** This option turns persistent connections off.
* Default: [false]
* It is normally not necessary to change this option.
*)
connection_timeout : float;
(** If there is no network transmission for this period of time,
* the connection is shut down, and tried again.
* Default: 300.0 (seconds)
* It may be necessary to increase this value if HTTP is used for
* batch applications that contact extremely slow services.
*)
number_of_parallel_connections : int;
(** The client keeps up to this number of parallel connections to
* a single content server or proxy.
* Default: 2
* You may increase this value if you are mainly connected with
* an HTTP/1.0 proxy.
*)
maximum_redirections : int;
(** The maximum number of redirections per message *)
handshake_timeout : float;
(** The timeout when waiting for "100 Continue". Default: 1.0 *)
verbose_status : bool;
verbose_request_header : bool;
verbose_response_header : bool;
verbose_request_contents : bool;
verbose_response_contents : bool;
verbose_connection : bool;
(** Enable various debugging message types.
* - [verbose_status]: reports about status of received documents
* - [verbose_request_header]: prints the header sent to the server
* - [verbose_request_contents]: prints the document sent to the server
* - [verbose_response_header]: prints the header of the answer from the server
* - [verbose_response_contents]: prints the document received from the server
* - [verbose_connection]: reports many connection events; authentication,
* too.
*)
}
(** Options for the whole pipeline *)
;;
type header_kind = [ `Base | `Effective ]
(** The [`Base] header is set by the user of [http_call] and is never
* changed during processing the call. The [`Effective] header is a copy
* of the base header at the time the request is sent. The effective header
* contains additions like [Content-length] and authentication info.
*)
(** The container for HTTP calls *)
class type http_call =
object
(** [http_call] is the runtime container for HTTP method calls. It contains
* the request message, the response message, and the current transmission
* status.
*
* In previous versions of netclient, this class type was called
* [message]. This was quite inexact because this class embraces both
* messages that are part of a call.
*
* {b Incompatible changes}:
* - [using_proxy] has been removed. This simply isn't a property of
* an individual call.
* - [get_req_uri] has been removed from the public interface for similar
* reasons.
* - The request and response messages are now primarily stored as
* [Netmime.mime_header] and [Netmime.mime_body] objects. The old
* style access methods remain in the API for now. The advantage is
* that it is possible to use external files as body containers.
* - There are two request headers, [`Base] and [`Effective].
*)
(** {2 Call State} *)
method is_served : bool
(** [true] if request/response cycle(s) have been finished, i.e. the
* call was successful, or a final error state has been reached.
*)
method status : status
(** The condensed status *)
(** {2 Accessing the request message (new style) } *)
method request_method : string
(** The HTTP method as string *)
method request_uri : string
(** The request URI as string. This is always an absolute URI in the
* form "http://server/path".
*)
method set_request_uri : string -> unit
(** Sets the request URI *)
method request_header : header_kind -> Netmime.mime_header
(** The whole header of the request. Users of this class should only
* modify the [`Base] header. After the call has been processed,
* the [`Effective] header contains the version of the header that has
* actually been transmitted.
*
* The user should set the following headers:
* - [Content-length]: Set this to the length of the request body
* if known. (The client falls back to HTTP 1.0 if not set!)
* - [Content-type]: Set this to the media type of the request body
* - [Expect]: Set this to "100-continue" to enable a handshake before
* the body is sent. Recommended for large bodies.
*
* The following headers may be set, but there are reasonable defaults:
* - [Date]
* - [User-agent]
*
* The following headers must not be set:
* - [Connection]
*)
method set_request_header : Netmime.mime_header -> unit
(** Replaces the whole [`Base] header object *)
method effective_request_uri : string
(** The URI actually sent to the server in the request line of the
* protocol.
*)
method request_body : Netmime.mime_body
(** The whole body of the request *)
method set_request_body : Netmime.mime_body -> unit
(** Replaces the whole body object *)
(** {2 Accessing the response message (new style) }
*
* These method will fail if the call has not yet been served!
* If the call has been finished, but was not successful, the
* exception [Http_protocol] is raised.
*)
method response_status_code : int
(** The three-digit status code *)
method response_status_text : string
(** The text transmitted along with the code *)
(*
method response_status : Nethttp.http_status
(** The decoded code. Unknown codes are mapped to the generic status
* values [`Ok], [`Multiple_choices], [`Bad_request], and
* [`Internal_server_error].
*)
*)
method response_protocol : string
(** The HTTP version indicated in the response *)
method response_header : Netmime.mime_header
(** The whole header of the response. If the call has not succeeded,
* [Http_protocol] will be raised.
*)
method response_body : Netmime.mime_body
(** The whole body of the response. If the call has not succeeded,
* [Http_protocol] will be raised. If the call has succeeded,
* but no body has been transmitted, the empty body is substituted.
*)
(** {2 Options} *)
method response_body_storage : response_body_storage
(** How to create the response body. Defaults to [`Memory]. *)
method set_response_body_storage : response_body_storage -> unit
(** Sets how to create the response body *)
method get_reconnect_mode : http_call how_to_reconnect
(** Get what to do if the server needs to be reconnected, i.e.
* if the request must be sent repeatedly.
* By default, this is [Send_again_if_idem].
*)
method set_reconnect_mode : http_call how_to_reconnect -> unit
(** Sets the reconnect mode *)
method get_redirect_mode : http_call how_to_redirect
(** By default, the redirect mode is [Redirect_if_idem]. *)
method set_redirect_mode : http_call how_to_redirect -> unit
(** Sets the redirect mode *)
method proxy_enabled : bool
(** Returns the proxy mode *)
method set_proxy_enabled : bool -> unit
(** Sets the proxy mode *)
method no_proxy : unit -> unit
(** Same as [set_proxy_enabled false] *)
method is_proxy_allowed : unit -> bool
(** {b Deprecated.} Same as [proxy_enabled] *)
(** {2 Method characteristics}
*
* These properties describe the HTTP method
*)
method empty_path_replacement : string
(** The string to substitute in the request line for the empty
* path. This is usually "/", and for OPTIONS it is "*".
*)
method is_idempotent : bool
(** Whether the method is to be considered as idempotent ( = repeated
* invocations have the same result and no side effect). This is
* true for GET and HEAD.
*)
method has_req_body : bool
(** Whether the method allows to send a request body *)
method has_resp_body : bool
(** Whether the method allows to reply with a body. This is true
* except for HEAD.
*)
(** {2 Repeating calls} *)
method same_call : unit -> http_call
(** This method returns a new object that will perform the same call
* as this object (this function is called "reload" in browsers).
* The new object is initialized as follows:
* - The state is set to [`Unserved]
* - The request method remains the same (the class of the returned
* object remains the same)
* - The request URI is the same string as the original URI
* - The base request header is the same object
* - The request body is the same object
* - Options like reconnect, redirect mode, and proxy mode are
* copied.
*)
(** {2 Old style access methods}
*
* These method were introduced in previous versions of netclient,
* but are quite limited. Some questionable methods are now deprecated
* and will be removed in future versions of netclient.
*)
method get_req_method : unit -> string
(** Get the name of the request method. Same as [request_method]. *)
method get_host : unit -> string
(** The host name of the content server, extracted from the URI *)
method get_port : unit -> int
(** The port number of the content server, extracted from the URI *)
method get_path : unit -> string
(** The path extracted from the URI *)
method get_uri : unit -> string
(** the full URI of this message: http://server:port/path. If the
* path is empty, it is omitted. - Same as [request_uri].
*)
method get_req_body : unit -> string
(** What has been sent as body in the (last) request. Same as
* [request_body # value].
*)
method get_req_header : unit -> (string * string) list
(** {b Deprecated.}
* What has been sent as header in the (last) request. Returns
* (key, value) pairs, where the keys are all in lowercase.
*
* In new code, the [request_header] object should be accessed instead.
*)
method assoc_req_header : string -> string
(** Query a specific header entry, or raise [Not_found] *)
method assoc_multi_req_header : string -> string list
(** Return all header values for a given field name (header entries
* which allow several values separated by commas can also be
* transmitted by several header lines with the same name).
*)
method set_req_header : string -> string -> unit
(* Set the request header entry with given "name" to "value". *)
method get_resp_header : unit -> (string * string) list
(** {b Deprecated.}
* Get the header of the last response. The keys are in lowercase
* characters again.
*)
method assoc_resp_header : string -> string
(** Query a specific header entry of the response. *)
method assoc_multi_resp_header : string -> string list
(** Return all response header values for a given field name (header
* entries which allow several values separated by commas can also be
* transmitted by several header lines with the same name).
*)
method get_resp_body : unit -> string
(** {b Deprecated.}
* Returns the body of the last response if the response status
* is OK (i.e. the code is in the range 200 to 299).
*
* Otherwise, Http_error (code, body) is raised where 'code' is
* the response code and 'body' is the body of the (errorneous)
* response.
*)
method dest_status : unit -> (string * int * string)
(** Returns the status line of the last response (but status lines
* with code 100 are ignored).
* The returned triple is (http_string, code, text)
*)
(** {2 Private} *)
method private_api : private_api
end
;;
(** {1 HTTP methods} *)
(** This class is an implementation of [http_call]. A subclass must
* define the virtual methods that mostly define the general properties
* of the HTTP method.
*)
class virtual generic_call :
object
inherit http_call
method private virtual fixup_request : unit -> unit
(** This method is called just before sending the request. It can
* fix up things in the [`Effective] request header.
*)
(** The following methods define the values for the corresponding
* methods without the [def_] prefix:
*)
method private virtual def_request_method : string
method private virtual def_empty_path_replacement : string
method private virtual def_is_idempotent : bool
method private virtual def_has_req_body : bool
method private virtual def_has_resp_body : bool
end
;;
(** The following classes are implementations for the various HTTP
* methods. These classes do not initialize the call object.
*)
class get_call : http_call
class trace_call : http_call
class options_call : http_call
class head_call : http_call
class post_call : http_call
class put_call : http_call
class delete_call : http_call
(** The following classes initialize the request message of the
* call (header and body).
* These classes are also backward compatible to the classes
* found in earlier versions of netclient.
*)
class get : string -> http_call
(** Argument: URI *)
class trace : string -> int -> http_call
(** Arguments: URI, maximum number of hops *)
class options : string -> http_call
(** Argument: URI or "*" *)
class head : string -> http_call
(** Argument: URI *)
class post : string -> (string * string) list -> http_call
(** Arguments: URI, parameter list to be transferred as
* application/x-www-form-urlencoded body
*)
class post_raw : string -> string -> http_call
(** Arguments: URI, body *)
class put : string -> string -> http_call
(** Arguments: URI, body *)
class delete : string -> http_call
(** Argument: URI *)
(** {1 Authentication} *)
(** A [key] is a user/password combination for a certain realm *)
class type key =
object
method user : string
(** The user name *)
method password : string
(** The password in cleartext *)
method realm : string
(** The realm *)
method domain : string list
(** The domain URIs defining the protection space. The domain URIs
* are absolute URIs. The list must not be empty.
*)
end
class type key_handler =
object
method inquire_key :
domain:string list -> realms:string list -> auth:string -> key
(** The method is called when a new session must be authenticated.
* The [domain] is the URI list describing the protection space. URIs
* currently have the form "http://host:port/path", i.e. the port is
* always written out. The [realms] parameter is a list
* of realm identifiers. In [auth] the name of the authentication
* method is passed (lowercase characters). The method must
* search (or query for) a key, and return it. The key must refer to
* one of the passed realms. The domain of the key must be exactly
* the same as the passed [domain]. If the method raises [Not_found],
* authentication will fail.
*)
method invalidate_key : key -> unit
(** The handler is notified that authentication failed for this key *)
end
(** The [key_ring] is a cache for keys. The optional [uplink] handler
* is invoked when no matching key is found in the cache.
*)
class key_ring : ?uplink : #key_handler -> unit ->
object
inherit key_handler
method clear : unit -> unit
(** Deletes all keys from this key ring *)
method add_key : key -> unit
(** Adds a key to the ring *)
method keys : key list
(** List of all known keys *)
end
(** An [auth_session] represents an authenticated session *)
class type auth_session =
object
method auth_scheme : string
(** The authentication scheme, e.g. "basic" *)
method auth_domain : string list
(** The list of domain URIs defines the protection space. *)
method auth_realm : string
(** The realm *)
method auth_user : string
(** The user identifier *)
method auth_in_advance : bool
(** Whether "authentication in advance" is enabled *)
method authenticate : http_call -> (string * string) list
(** Returns a list of additional headers that will authenticate
* the passed call for this session. (This is usually only one
* header, [authorization].)
*
* If the call is authenticated in advance, it does not contain
* any authentication information. If the call is authenticated
* in reaction to a 401 status, the response header contains
* the [www-authenticate] field(s).
*)
(* Maybe future addition: method post_authenticate
* Needed for auth-int
*)
method invalidate : http_call -> bool
(** The session is notified that authentication failed. (This
* method is not called for authentication-in-advance, but only
* if an authentication attempt after a 401 status failed.)
* The method can return [true] if another authentication should
* be started immediately.
*
* Note: By returning [true] the session can indicate a "stale"
* condition in the sense of RFC 2617.
*)
end
(** An authentication handler has the capability of adding the necessary
* headers to messages.
*)
class type auth_handler =
object
method create_session : http_call -> auth_session option
(** Create a new authentication session. The passed call has status 401.
*)
end
class basic_auth_handler :
?enable_auth_in_advance:bool -> #key_handler -> auth_handler
(** Basic authentication. Authentication information is obtained by
* the passed key_handler.
*
* [enable_auth_in_advance]: If set to [true], authentication can be
* done in advance, i.e. before the server requests authentication.
* This reduces the number of messages exchanged with the server, but
* may be an additional security risk.
*)
class digest_auth_handler :
?enable_auth_in_advance:bool -> #key_handler -> auth_handler
(** Digest authentication. Authentication information is obtained by
* the passed key_handler.
*
* This handler is compatible with RFC 2069 and RFC 2617. In particular,
* the following protocol options are available:
* - The algorithms MD5 and MD5-sess are implemented
* - The quality of protection mode "auth" is implemented. The optional
* mode "auth-int" has been omitted.
* - The information of the [Authentication-Info] header is completely
* ignored
*
* [enable_auth_in_advance]: If set to [true], authentication can be
* done in advance, i.e. before the server requests authentication.
* This reduces the number of messages exchanged with the server, but
* may be an additional security risk.
*)
(** {b Deprecated.} For (limited) backwards compatibility: *)
class basic_auth_method :
object
method name : string
method set_realm : string -> string -> string -> unit
(* set_realm realm user password:
* adds that (user,password) should be used for the given realm
*)
method as_auth_handler : auth_handler
end
(** {b Deprecated.} For (limited) backwards compatibility: *)
class digest_auth_method : basic_auth_method
(** {1 Pipelines} *)
(** A connection cache is an object that keeps connections open that
* are currently unused. A connection cache can be shared by several
* pipelines.
*)
type connection_cache
val close_connection_cache : connection_cache -> unit
(** Closes all descriptors known to the cache *)
val create_restrictive_cache : unit -> connection_cache
(** A restrictive cache closes connections as soon as there are no
* pending requests.
*)
val create_aggressive_cache : unit -> connection_cache
(** This type of cache tries to keep connections as long open as
* possible. The consequence is that users are responsible for
* closing the descriptors (by calling [close_connection_cache]) when the
* cache is no longer in use.
*
* Aggressive caching is an experimental feature. Reports about success
* and/or problems are very welcome.
*)
(** A pipeline is a queue of HTTP calls to perform *)
class pipeline :
object
(** A [pipeline] object is a FIFO queue of HTTP calls. It is called
* "pipeline" because it is processed asynchronously: Requests may be
* sent to the HTTP server independently of whether responses of the
* previous requests already arrived or not.
*
* Furthermore, a [pipeline] object may keep connections to several
* servers at once. (More exactly, it has a FIFO queue for every
* server it is connected with.)
*
* The [pipeline] object keeps track what is happening, so you need
* not to care about the details of communications. The API is
* simple: Create a [pipeline] object, do some setup (add authentication
* methods; configure the proxy to use), add the requests, and
* [run] the pipeline. The rest is done automatically. To get the results,
* you can either memorize the requests you wanted to know yourself
* and ask every request object about the reply of the server; or
* you can specify that a callback function should be called once
* the request is processed (with positive or negative result).
* It is possible to add further requests to the pipeline from within
* these callback functions.
*
* If you want to have several pipelines, or some cooperation with
* other network services, you may specify a [Unixqueue.event_system].
* For example, to have two pipelines working concurrently:
*
* {[
* let ues = Unixqueue.create_unix_event_system() in
* let p1 = new pipeline in
* let p2 = new pipeline in
* p1 # set_event_system ues;
* p2 # set_event_system ues;
* Unixqueue.run ues (* run p1 and p2 in parallel *)
* ]}
*
* This works not only with pipelines, but with every network client
* or server which is compatible with the [Unixqueue] design.
*)
method set_event_system : Unixqueue.event_system -> unit
method connection_cache : connection_cache
(** The current connection cache. By default, a private
* restrictive cache is used.
*)
method set_connection_cache : connection_cache -> unit
(** Set the connection cache. This must happen before the first
* call is added.
*)
method add_authentication_method : basic_auth_method -> unit
(** adds an old-style authentication method *)
method add_auth_handler : auth_handler -> unit
(** adds a new-style authentication handler *)
method set_proxy : string -> int -> unit
(** [set_proxy name port]:
* sets that a proxy [name] listening on [port] is to be used
*)
method set_proxy_auth : string -> string -> unit
(** sets user and password for the proxy. Only the "basic"
* authentication method is implemented.
*)
method avoid_proxy_for : string list -> unit
(** sets a list of host names or domain suffixes for which no proxy
* should be used.
* e.g. [ "localhost"; ".our.net" ]
*)
method set_proxy_from_environment : unit -> unit
(** Inspect the environment variables [http_proxy] and [no_proxy]
* and set the proxy options from them.
*)
method reset : unit -> unit
(** Empties the pipeline and inactivates any open connection.
* The currently active operation is interrupted, and every request
* with response is set to [No_reply] (i.e. you get the exception
* [No_reply] if you try to access the response).
* If there are callbacks for these requests, the callback
* functions are invoked.
* The queues of open requests and replies are cleared. All
* connections to all servers are inactivated.
*
* Inactivation means that open connections are given back
* to the connection cache for further reuse if the state
* of the connection allows this; otherwise the connections are
* closed.
*)
method add : http_call -> unit
(** Adds the call to the end of the pipeline.
* One must not add calls that have already been served.
*)
method add_with_callback : http_call -> (http_call -> unit) -> unit
(** Adds the call to the end of the pipeline.
*
* After the call has been processed, the callback function
* is called. This function is called for every call that
* leaves the pipeline, it does not matter whether processing
* was successful or not. Invoke [status] on the message
* to get what happened; either some status information from the
* server is available (perhaps OK status), or an exception is
* indicated.
*)
method run : unit -> unit
(** Runs through the requests in the pipeline. If a request can be
* fulfilled, i.e. the server sends a response, the state of the
* request is set and the request is removed from the pipeline.
* If a request cannot be fulfilled (no response, bad response,
* network error), the exception is stored in the [http_call]
* object and will be raised once the state of the object is
* queried.
*
* Under certain conditions (serious network errors) [run] does
* not catch the exception; it simply cleans its own state up
* (aborting the errorneous network connection). In this case,
* simply invoke [run] again to continue.
* [run] terminates normally if the pipeline becomes empty.
*
* The engine handles the following HTTP return codes itself:
* - 100: This is an intermediate return code
* - 301: The redirection is followed if configured
* - 302: The redirection is followed if configured
* - 401: Content server authentication
* - 407: Proxy server authentication
*
* All other return codes remain uninterpreted, it is up to the
* caller of this function to react on them.
*
*)
method get_options : http_options
method set_options : http_options -> unit
(** Get/Set the available options for the HTTP engine.
* The new options will take into effect immediately.
*)
method number_of_open_messages : int
(** Returns the number of messages which are still in the pipeline. *)
method number_of_open_connections : int
(** Returns the number of connections which are open at the same time
* and currently being used by this object (i.e. connections
* returned to the cache do not count)
*)
end
;;
(** {b Example using the pipeline:}
*
* {[
* let call = new get "http://server/path" in
* let pipeline = new pipeline in
* pipeline # add call;
* pipeline # run(); (* Now the HTTP client is working... *)
* match call # status with
* | `Successful -> ...
* | ...
* ]}
*)
(** {1 Convenience module for simple applications} *)
(** Do [open Http_client.Convenience] for simple applications. *)
module Convenience :
sig
(** Convenience module for simple applications *)
(** Do [open Http_client.Convenience] for simple applications. *)
(** The functions of this module share the following behaviour:
*
* The environment variables [http_proxy] and [no_proxy] determine
* the proxy settings. [http_proxy] must be an http-URL that contains
* the proxy's name, its port, and optionally user and password.
* E.g. "http://eric:ericspassword\@proxy:8080/".
* The variable [no_proxy] is a comma-separated list of hosts and
* domains for which no proxy must be used.
* E.g. "localhost, sun, moon, .intra.net"
*
* There is a default behaviour for authentication. Both "basic" and
* "digest" methods are enabled. Two global variables, [http_user] and
* [http_password] set the user and password if the URL does not specify
* them. In the case that user and password are included in the URL,
* these values are always
* used.
*
* There is a default error behaviour. If a request fails, it is
* automatically repeated. The variable [http_trials] specifies the number
* of times a request is submitted at most.
* Requests are not repeated if there is a HTTP return code that indicates
* a normal operating condition.
* POST and DELETE requests are never repeated.
*)
(** {b Thread safety}
*
* The Convenience module is fully thread-safe with the exception of the
* exported variables (http_trials, http_user, and http_password). Note
* that all threads share the same pipeline, and access to the pipeline
* is serialized.
* The latter simply means that it always works, but that threads may
* block each other (i.e. the program slows down if more than one thread
* wants to open http connections at the same time).
*)
val http_trials : int ref
(** number of times every request is tried. Default: 3 *)
val http_user : string ref
(** The default user if authentication is required *)
val http_password : string ref
(** The default password if authentication is required *)
val http_get_message : string -> http_call
(** Does a "GET" request with the given URL and returns the message *)
val http_head_message : string -> http_call
(** Does a "HEAD" request with the given URL and returns the reply. *)
val http_post_message : string -> (string * string) list -> http_call
(** Does a "POST" request with the given URL and returns the reply.
* The list contains the parameters sent with the POST request.
*)
val http_put_message : string -> string -> http_call
(** Does a "PUT" request with the given URL and returns the reply.
* The second argument contains the contents to be put.
*)
val http_delete_message : string -> http_call
(** Does a "DELETE" request with the given URL and returns the reply. *)
val http_get : string -> string
(** Does a "GET" request with the given URL and returns the message
* body
*)
val http_post : string -> (string * string) list -> string
(** Does a "POST" request with the given URL and returns the response body.
* The list contains the parameters send with the POST request.
*)
val http_put : string -> string -> string
(** Does a "PUT" request with the given URL and returns the response body.
* The second argument contains the contents to be put.
*)
val http_delete : string -> string
(** Does a "DELETE" request with the given URL and returns the response
* body.
*)
val http_verbose : unit -> unit
(** Turns on debug messages on stderr. *)
end
(**/**)
val init_mt :
create_lock_unlock_pair:(unit -> ( (unit->unit) * (unit->unit) ) ) ->
unit
|