/usr/lib/ocaml/netclient/nethttp_client.mli is in libocamlnet-ocaml-dev 4.0.4-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 | (* $Id: nethttp_client.mli 2218 2015-01-25 00:42:52Z gerd $ *)
(** HTTP 1.1 client *)
(**********************************************************************)
(* HTTP/1.1 client *)
(* written by Gerd Stolpmann *)
(**********************************************************************)
(** {b Note for beginners:} There is a simplified interface called
* {!Nethttp_client.Convenience}.
*)
(**
* Implements the following advanced features:
* - chunked message transport
* - persistent connections
* - connections in pipelining mode ("full duplex" connections)
* - modular authentication methods, currently Basic, Digest, and Negotiate
* - event-driven implementation; allows concurrent service for
* several network connections
* - HTTP proxy support, also with Basic and Digest
* authentication
* - SOCKS proxy support (1)
* - HTTPS support is now built-in, but requires that a TLS provider is
* initialized (see {!Tls} for more information).
* HTTPS proxies are also supported (CONNECT method) (1)
* - Automatic and configurable retry of failed idempotent requests
* - Redirections can be followed automatically
* - Compressed message bodies can be automatically decoded (gzip only,
* method [set_accept_encoding]) (1)
*
* Left out:
* - multipart messages, including multipart/byterange
* - content digests specified by RFC 2068 and 2069 (2)
* - content negotiation (2)
* - conditional and partial GET (2)
* - client-side caching (2)
* - HTTP/0.9 compatibility
*
* (1) Since Ocamlnet-3.3
*
* (2) These features can be implemented on top of this module if really needed,
* but there is no special support for them.
*
* Related modules/software:
* - {!Nethttp_fs} allows you to access HTTP servers in the style of filesystems
* - WebDAV: If you are looking for WebDAV there is an extension of this module:
* {{:http://oss.wink.com/webdav/} Webdav}, which is separately available.
*)
(** {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 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 Name_resolution_error of string
(** Could not resolve this name - same as {!Uq_engines.Host_not_found} *)
exception URL_syntax_error of string
(** This URL cannot be parsed after a redirection has been followed.
*)
exception Timeout of string
(** A timeout. The string explains which connection is affected.
{b New since Ocamlnet-3.3.}
*)
exception Proxy_error of int
(** An error status from a proxy. This is only used when extra proxy messages
are used to configure the proxy (e.g. the CONNECT message).
*)
exception Response_too_large
(** The length of the response exceeds the configured maximum *)
exception Http_protocol of exn;;
(** The request could not be processed because the exception condition
* was raised. The inner exception is one of the above defined.
*)
exception Http_error of (int * string);;
(** {b Deprecated in the scope of [pipeline].}
* 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], and by the
* {!Nethttp_client.Convenience} module. Note that for the latter
* usage the exception does not count as deprecated.
*)
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 'a auth_status =
[ `Continue of 'a
| `OK
| `Auth_error
| `Reroute of int
| `Continue_reroute of 'a * int
| `None
]
(** Status of HTTP-level authentication:
* - [`None]: Authentication wasn't tried.
* - [`OK]: The authentication protocol finished. What this means exactly
* depends on the protocol. For most protocols it just means that the
* server authenticated the client. For some protocols it may also mean
* that the client authenticated the server (mutual authentication).
* - [`Auth_error]: The authentication protocol did not succeed. Note that
* this state can also be reached for an otherwise successful HTTP
* response (i.e. code 200) when the client could not authenticate the
* server and the protocol demands this.
* - [`Reroute trans_id]: The request should be retried on a new connection
* for the transport identified by [trans_id]
* - [`Continue]: The authentication is still in progress. Normally the
* user should not see this state as the engine automatically continues
* the protocol. The argument of [`Continue] is private.
* - [`Continue_reroute]: the combination of continue and reroute: the
* auth protocol continues, but the next request must be sent on the
* indicated transport.
*)
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. It is legal to set the [Location]
* header as part of the action performed by the
* function. (Should be an absolute http URL.)
*)
| 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
| `Device of unit -> Uq_io.out_device
]
(** 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()]
* - [`Device f]: The response is directly forwarded to the device
* obtained by [f()] (new since Ocamlnet-3.3)
*
* When the function [f] is called in the latter cases the response
* header has already been received, and can be retrieved with the
* [response_header] method of the call object. Also, [response_status_text],
* [response_status_code], and [response_status] return meaningful
* values.
*)
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.
*
* Values > 8 are interpreted as 8.
*)
(** 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 resolver =
Unixqueue.unix_event_system ->
string ->
(Unix.inet_addr option -> unit) ->
unit
(** A name resolver is a function [r] called as [r esys name reply].
* As [name] the name to resolve is passed. The resolver must
* finally call [reply] with either the resolved address or
* with [None], indicating an error in the latter case.
* The event system [esys] can be used to carry out the resolution
* process in an asynchronous way, but this is optional.
*
* Only 1:1 resolution is supported, 1:n resolution not.
*)
type transport_layer_id = int
(** The ID identifies a requirement for the transport
channel, especially whether plain HTTP is sufficient, or HTTPS
needs to be used, and if so, whether there are further requirements
for the TLS context. There are the predefined IDs:
- {!Nethttp_client.http_trans_id} for HTTP connections
- {!Nethttp_client.https_trans_id} for HTTPS connections without user
certificates
- {!Nethttp_client.proxy_only_trans_id} for the restriction that this
protocol can only be used via a web proxy
*)
type http_options =
{ synchronization : synchronization;
(** Default: [Pipeline 5]. *)
maximum_connection_failures : int;
(** This option limits the number of connection attempts.
* Default: 2
*)
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 *)
resolver : resolver;
(** The function for name resolution *)
configure_socket : Unix.file_descr -> unit;
(** A function to configure socket options *)
tls : Netsys_crypto_types.tls_config option;
(** The TLS configuration to use by default for https URLs.
(This can be overridden per request by using a different
[transport_layer_id].)
*)
schemes : (string * Neturl.url_syntax * int option * transport_layer_id)
list;
(** The list of supported URL schemes. The tuples mean
[(scheme, syntax, default_port, cb)]. By default, the
schemes "http", "https", and "ipp" are supported.
*)
verbose_status : bool;
verbose_request_header : bool;
verbose_response_header : bool;
verbose_request_contents : bool;
verbose_response_contents : bool;
verbose_connection : bool;
verbose_events : 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.
* - [verbose_events]: everything about the interaction with [Unixqueue]
*
* By default, [verbose_status] and [verbose_connection] are enabled.
* Note that you also have to set [Debug.enable] to [true] to see
* any log message at all!
*)
}
(** Options for the whole pipeline. It is recommended to change options
* the following way:
* {[
* let opts = pipeline # get_options in
* let new_opts = { opts with <field> = <value>; ... } in
* pipeline # set_options new_opts
* ]}
*
* New fields can be added anytime to this record, and this style
* of changing options is transparent to field additions.
*)
;;
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 *)
method auth_status : unit auth_status
(** Authenticaton status. {b This status code is important for mutual
authentication (i.e. when the client also authenticates the server),
which can be enabled for some generic authentication handlers.
In this case [status] and all the other methods just report about the
last message from the server. They will not indicate whether the
authentication
failed on the side of the client (in particular, no exception is
thrown). It is required to check that [auth_status=`OK].}
An example of a mechanism with mutual authentication is
{!Netmech_digest_http.Digest_mutual}.
*)
(** {2 Security} *)
method tls_session_props : Nettls_support.tls_session_props option
(** If TLS is enabled, this returns the session properties *)
method gssapi_props : Netsys_gssapi.client_props option
(** If GSSAPI is active, return the properties *)
(** {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" or "https://server/path".
*)
method set_request_uri : string -> unit
(** Sets the request URI. This implicitly also sets the transport layer
ID (see below).
{b Changed in Ocamlnet-3.3:} The URI is no longer immediately parsed,
but first when the call is submitted to a pipeline. This means that
parsing errors will first be reported by the [add] method. The
background is that parsing now depends on pipeline options.
*)
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. (See also
* [set_expect_handshake] below.)
*
* 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 set_expect_handshake : unit -> unit
(** Configures that a handshake is done before sending the request body.
This is useful when the request body can be large, and
authentication or response indirections are possible.
{b New since Ocamlnet-3.3.}
*)
method set_chunked_request : unit -> unit
(** Configures that the request is transmitted using chunked encoding.
This has advantages when the size of the request is not known
in advance. However, this works only for true HTTP/1.1 servers.
{b New since Ocamlnet-3.3.}
*)
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. This method fails after
[set_request_device] has been called (no body then).
*)
method set_request_body : Netmime.mime_body -> unit
(** Replaces the whole body object *)
method set_request_device : (unit -> Uq_io.in_device) -> unit
(** Sets that the request data is read from the passed device instead
of taking it from a body object. The device must be connected with
the same event loop as the HTTP client.
*)
method set_accept_encoding : unit -> unit
(** Sets the [Accept-Encoding] field in the request header, and
includes all decompression algorithms registered in
{!Netcompression}. Additionally, the automatic decompression of
the response body is enabled.
Note that you need to ensure that the algorithms are really
registered at {!Netcompression}. For example, to get [gzip]
support, run {[ Netgzip.init() ]}, and include [netzip] as
library.
*)
(** {2 Accessing the response message (new style) }
*
* These methods will fail if the call has not yet been served!
* If the call has been finished, but a hard error (e.g. socket error)
* occurred, the
* exception [Http_protocol] is raised. When the server only
* sent an error code, no exception is raised - but the user can
* manually test for such codes (e.g. with [repsonse_status] or
* [status]).
*)
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.
*
* If the response is directly forwarded to a device (after
* calling [set_response_body_storage (`Device d)]), there is
* no accessible response body, and this method will fail.
*)
(** {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 max_response_body_length : int64
(** Returns the current maximum length (initially [Int64.max_int]) *)
method set_max_response_body_length : int64 -> unit
(** Sets a new maximum length. When the body exceeds this maximum
by more than the size of the internal buffer, the reception of
the response is interrupted, and the error is set to
[Response_too_large].
*)
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 proxy_use_connect : bool
(** Whether to use the CONNECT method if the connection is made via a
web proxy. This is normally true if the transport layer is
{!Nethttp_client.https_trans_id}
*)
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 Transport layer bindings}
Transport layer bindings are used to distinguish between security
requirements.
There are normally only two types of requirements:
- The ID {!Nethttp_client.http_trans_id} is used for messages that can only
be sent over HTTP connections, i.e. unencrypted TCP. It is automatically
set when the URL of the message starts with "http://".
- The ID {!Nethttp_client.https_trans_id} describes the requirement that the
message can only be sent over HTTPS connections, i.e. TLS-protected
TCP. It is automatically set when the URL of the message starts with
"https://".
It is possible to change the transport binding to establish further
types of security requirements (e.g. that certain client certificates
are used), or even other details of the transport connection.
*)
method set_transport_layer : transport_layer_id -> unit
(** Sets the transport layer. Note that [set_request_uri] also sets
this ID, but always to the default for the type of URL.
*)
(** {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 transport layer ID is the same
* - 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.
{b Changed in Ocamlnet-3.3:} The host can first be extracted after
the call is submitted to a pipeline.
*)
method get_port : unit -> int
(** The port number of the content server, extracted from the URI.
{b Changed in Ocamlnet-3.3:} The port can first be extracted after
the call is submitted to a pipeline.
*)
method get_path : unit -> string
(** The path (incl. query, if any) extracted from the URI.
{b Changed in Ocamlnet-3.3:} The path can first be extracted after
the call is submitted to a pipeline.
*)
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
;;
(** A cache object for storing TLS session data *)
class type tls_cache =
object
method set : domain:string -> port:int -> trans:transport_layer_id ->
data:string -> unit
(** This is called by the client to store a new session in the cache.
It is up to the cache for how long the session is remembered.
*)
method get : domain:string -> port:int -> trans:transport_layer_id -> string
(** Get a cached session (data string) *)
method clear : unit -> unit
(** Clear the cache *)
end
val null_tls_cache : unit -> tls_cache
(** This "cache" does not remember any session *)
val unlim_tls_cache : unit -> tls_cache
(** Returns a simple cache without limit for the number of cached
sessions
*)
class type transport_channel_type =
object
method identify_conn_by_name : bool
(** Whether connections must be identified by name, and not by
IP address. (Set for TLS connections.)
*)
method setup_e : Unix.file_descr -> transport_layer_id -> float -> exn ->
string -> int -> Unixqueue.event_system ->
tls_cache ->
Uq_engines.multiplex_controller Uq_engines.engine
(** [setup fd trans tmo tmo_x host port esys tls_cache]:
Create or configure a communication
circuit over the file descriptor [fd] that can be driven by the
returned multiplex controller object. Since OCamlnet-3.8, the method
can also return private data for the connection cache.
[tmo] is the timeout. After inactivity the exception [tmo_x] must be
raised.
[host] is the name of the machine to connect to. [port] is the port
number. The descriptor [fd] is already connected to this port, directly
or via a proxy.
*)
method continue : Unix.file_descr -> transport_layer_id -> float -> exn ->
string -> int -> Unixqueue.event_system ->
exn option ->
Uq_engines.multiplex_controller
(** [continue] is called when an already established circuit needs to
be continued. The additional argument contains the stashed TLS session.
Note that the event system can be different now.
If it is not possible to continue, the method may raise [Not_found].
*)
method default_port : int option
(** If set, the [Host] header omits this port number *)
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 : Neturl.url list
(** The domain URIs defining the protection space. The domain URIs
* are absolute URIs. For proxy keys the list must be empty.
*
* Normally, this is just a list with one element. The URI must include
* the protocol scheme, the host name, the port, and a path (at minimum "/").
* The key is valid for all request URIs
* for which this domain string is a prefix of the request URI.
* Examples: "http://localhost:80/" would cover all of "localhost".
* "http://localhost:80/space/" would cover all URIs at this or below this
* URI. "https://localhost:443/" would cover all of "localhost" when accessed
* via TLS.
*
* If the key is applicable to all domains, set this to [].
*)
method credentials : (string * string * (string * string) list) list
(** The key in the common "credentials" format that is used by
generic mechanisms. See {!Nethttp.HTTP_MECHANISM.init_credentials}
for details.
*)
end
val key : user:string -> password:string -> realm:string ->
domain:Neturl.url list -> key
(** Create a key object *)
val key_creds : user:string ->
creds:(string * string * (string * string) list) list ->
http_options -> key
(** Create a key object from a list of credentials *)
class type key_handler =
object
method inquire_key :
domain:Neturl.url option -> realm:string -> auth:string -> key
(** The method is called when a new session must be authenticated.
* The [domain] is the URI from the request. URIs
* must have the form "http://host:port/path", i.e. the port is
* always written out. If the request doesn't have a URI, or if the
* request is directed to a proxy, [domain] will be [None].
* The [realm] parameter is the realm identifier.
* In [auth] the name of the authentication
* method is passed (lowercase characters). The method must
* search (or interactively ask for) a key, and return it.
* The key must refer to one of the passed realms.
* 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. The [uplink]
is intended for interactively asking the user for a password.
If [no_invalidation] is set, keys are never invalidated (removed after
they did not work)
*)
class key_ring : ?uplink : #key_handler -> ?no_invalidation:bool -> 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 : Neturl.url list * int
(** The list of domain URIs defines the protection space. For requests
of the same protection space the mechanism may perform
re-authentication. Setting this to [] disables re-authentication.
The integer is the transport layer ID.
*)
method auth_realm : string
(** The realm *)
method auth_user : string
(** The user identifier *)
method authenticate : http_call -> bool -> (string * string) list auth_status
(** Returns a list of additional headers that will authenticate
* the passed call for this session. (This is usually only one
* header, [authorization].)
*
* If a re-authentication needs to be done, the call 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).
*
* The bool says whether this is the re-authentication path.
*)
method auth_session_id : string option
(** An optional ID which is only needed for multi-step authentication
protocols (i.e. which require more than one challenge/response step).
This is ID is first
retrieved after a successful [authenticate]. After a re-authentication
the ID may change.
*)
method invalidate : http_call -> unit
(** The session is notified that authentication failed. (This
* method is not called for failed re-authentications, but only
* if an authentication attempt after a 401 status failed.)
*)
end
(** An authentication handler has the capability of adding the necessary
* headers to messages.
*)
class type auth_handler =
object
method create_session : secure:bool -> http_call -> http_options ref -> auth_session option
(** Create a new authentication session. The passed call has status 401.
The [secure] flag is set when the connection is secured by TLS.
*)
method create_proxy_session : http_call -> http_options ref -> auth_session option
(** Same for proxy authentication (status 407) *)
method identify_session : http_call -> http_options ref ->
(string * string * string * int) option
(** Extracts (mech_name,realm,sess_id,trans_id) if possible. Only needed for
multi-step challenge/response authentication. THIS IS STILL
EXPERIMENTAL.
*)
method identify_proxy_session : http_call -> http_options ref ->
(string * string * string * int) option
(** Same for proxies. THIS IS STILL EXPERIMENTAL *)
method skip_challenge : bool
(** If true, this method allows to skip the challenge entirely
for authentication. This means that the credentials are added to
the HTTP request before any previous response was seen from the
server. This adds additional security risks, and may cause that
credentials are sent to servers that forge their identity.
This is {b only} supported for basic authentication. As no challenge
is known, the realm string is simply assumed to be "anywhere".
*)
method skip_challenge_session : http_call -> http_options ref -> auth_session option
(** Create a session for the case that the challenge was skipped *)
end
class basic_auth_handler :
?enable_reauth:bool -> ?skip_challenge:bool ->
#key_handler -> auth_handler
(** Basic authentication. Authentication information is obtained by
* the passed key_handler. {b Note that basic authentication is insecure
* and should only be run over TLS. But even then, the server obtains
* the password in clear. Use other methods if possible.}
*
* [enable_reauth]: If set to [true], a quicker authentication
* mode is enabled: when a request is sent out, it is checked whether
* a previous request/response cycle exists that needed authentication.
* If so, the same credentials are added to the request. Normally,
* the request would be sent without credentials first, and only after
* getting the authentication challenge the request is resent with the
* credentials. Reauthentication is only done for the same realm and the
* same domain. The path of the request URI, however, may be different.
*
* [skip_challenge]: This option enables a mode so that the credentials
* are added to HTTP requests even before any response has been seen
* by the server.
* This adds additional security risks, and may cause that
* credentials are sent to servers that forge their identity.
* As no challenge is known, the realm string is
* simply assumed to be "anywhere".
*)
class digest_auth_handler :
#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
*
* This handler is implemented on top of {!Netmech_digest_http.Digest}.
*)
class unified_auth_handler : ?insecure:bool -> #key_handler -> auth_handler
(** Support both digest and basic authentication, with preference to
digest. By default, basic authentication is only enabled over
TLS connections. You can enable basic authentication for normal
connections with the [insecure] option.
In the future this class will also enable other secure authentication
methods such as SCRAM or Digest with more secure hash functions.
(The RFCs for these methods are not yet published.)
Note that there is no way of enabling the [skip_challenge] mode,
as it is not known in advance which mechanism will be used.
*)
class generic_auth_handler : #key_handler ->
(module Nethttp.HTTP_MECHANISM) list ->
auth_handler
(** Authenticate with the passed generic HTTP mechanisms *)
(** For the [Negotiate] method (SPNEGO/GSSAPI), have a look at
{!Netmech_spnego_http}.
*)
(** {1 Transport} *)
(** 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 = Nethttp_client_conncache.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.
*)
val http_trans_id : transport_layer_id
(** Identifies the pure HTTP transport (without SSL), with or
without web proxies
*)
val https_trans_id : transport_layer_id
(** Identifies anonymous HTTPS transport (i.e. no client
certificates), with or without web proxies.
*)
val spnego_trans_id : transport_layer_id
(** Identifies an anonymous HTTPS transport that is additionally
authenticated via SPNEGO (as described in RFC 4559)
*)
val proxy_only_trans_id : transport_layer_id
(** Identifies web proxy connections. Use this to
e.g. send an FTP URL to a web proxy via HTTP
*)
val new_trans_id : unit -> transport_layer_id
(** Allocates and returns a new ID *)
val http_transport_channel_type : transport_channel_type
(** Transport via HTTP *)
val https_transport_channel_type :
Netsys_crypto_types.tls_config -> transport_channel_type
(** Create a new transport for HTTPS and this configuration.
As of OCamlnet-4, https is automatically enabled if
{!Netsys_crypto.current_tls} returns something, i.e. if TLS
is globally initialized, so there is often no reason to
configure a special https transport with this function.
You still need it if you want to enable special configurations
per request:
{[
let my_trans_id = Nethttp_client.new_trans_id()
let my_tct = Nethttp_client.https_transport_channel_type my_tls_config
pipeline # configure_transport my_trans_id my_tct;
]}
Now you can enable this special configuration for a request object
[call]:
{[
call # set_transport_layer my_trans_id
]}
If you want to change the TLS configuration for the whole pipeline,
just set the [tls] field of {!Nethttp_client.http_options}.
*)
type proxy_type = [`Http_proxy | `Socks5 ]
(** {1 Pipelines} *)
(** 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 event_system : Unixqueue.event_system
(** Returns the event system *)
method set_event_system : Unixqueue.event_system -> unit
(** Sets the event system. Must be called before the first call
* is added
*)
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_auth_handler : auth_handler -> unit
(** adds a new-style authentication handler *)
method set_proxy : string -> int -> unit
(** [set_proxy name port]:
* sets that an HTTP proxy [name] listening on [port] is to be used
*)
method set_proxy_auth : insecure:bool -> string -> string -> unit
(** sets user and password for the proxy. Works for both "digest"
and "basic" mechanisms (the latter only if the [insecure]
flag is set). Any realm is acceptable.
*)
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 : insecure:bool -> unit -> unit
(** Inspect the environment variables [http_proxy] and [no_proxy]
* and set the proxy options from them. If [insecure] is set,
basic authentication is enabled (otherwise only secure auth
methods like Digest).
*)
method set_socks5_proxy : string -> int -> unit
(** Sets that a SOCKS version 5 proxy is used at this host and port.
There is no authentication. The [avoid_proxy_for] setting is
honoured.
*)
method configure_transport :
transport_layer_id -> transport_channel_type -> unit
(** [configure_transport id transport]: Configures that messages with
transport layer ID [id] are exchanged on [transport].
By default, there is only a configuration for
{!Nethttp_client.http_trans_id}, i.e. for normal unencrypted channels.
*)
method set_tls_cache : tls_cache -> unit
(** Sets the TLS cache (NB. The default cache is [null_tls_cache]) *)
method set_transport_proxy : transport_layer_id ->
string ->
int ->
(string * string * bool) option ->
proxy_type -> unit
(** [set_transport_proxy id host port auth ptype]: Sets a special
proxy for the transport identified by [id]. This overrides
[set_proxy], [set_proxy_auth], and [set_socks5_proxy] for the
given transport.
The [auth] triple contains [(user,password,insecure)].
*)
method set_transport_proxy_from_environment :
insecure:bool ->
(string * transport_layer_id) list -> unit
(** Like [set_proxy_from_environment], this method inspects environment
variables and configures the proxy settings. This function, however,
is more flexible, and can use different environment variables for
different transports.
The argument list has pairs [(var_name, id)] meaning that the
environment variable [var_name] configures the proxy for [id].
For instance,
{[ [("http_proxy", http_trans_id); ("https_proxy", https_trans_id)] ]}
means that these two variables are used for the respective
transports.
The variable ["no_proxy"] is interpreted anyway.
[insecure]: whether basic authentication is enabled.
*)
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 add_e : http_call -> http_call Uq_engines.engine
(** The same as engine: The call [c] is added to the pipeline, and
when it is processed, the returned engine transitions to the
state [`Done c].
*)
method proxy_type : string -> proxy_type option
(** [proxy_type url] returns [Some pt] if a proxy would be used for this
[url], and [None] if a direct connection would be made.
*)
method proxy_type_of_call : http_call -> proxy_type option
(** Same for an already created call object *)
method transport_layer : http_call -> transport_layer_id
(** Reports the current transport of this call *)
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)
*)
method connections : (string * int * int) list
(** Reports which connections exist: [ (host, port, queue_length) ] *)
method cnt_new_connections : int
(** Counts new connections (or better: attempts to establish connections)
*)
method cnt_timed_out_connections : int
(** Counts connections given up because of timeouts *)
method cnt_crashed_connections : int
(** Counts connections with network or protocol errors *)
method cnt_server_eof_connections : int
(** Counts connections the server terminated with EOF *)
method cnt_successful_connections : int
(** Counts connections closed because pipelines become empty *)
method cnt_failed_connections : int
(** Counts totally failed connections (no more reconnects allowed) *)
method reset_counters : unit -> unit
(** Notes on counters:
*
* - [cnt_new_connections]: Is increased when a new connection attempt
* is started (that may fail or timeout in the future). Reconnects
* do not count.
* - [cnt_timed_out_connections]: Is increased whenever an established
* connection times out. Usually, it is immediately reconnected.
* - [cnt_crashed_connections]: Is increased whenever an established
* connection crashes. Usually, it is immediately reconnected.
* - [cnt_failed_connections]: Is increased when a timed out or
* crashed connection exceeds the maximum number of errors, and it is
* not tried to reconnect.
* - [cnt_successful_connections]: Is increased when all HTTP calls
* have been replied.
*
* When the client has done all of its jobs, we have
*
* {[ cnt_new_connections = cnt_failed_connections + cnt_successful_connections ]}
*
*)
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 -> ...
* | ...
* ]}
*)
(** {2 Auxiliary pipeline functions} *)
val parse_proxy_setting : insecure:bool ->
string ->
(string * int * (string * string * bool) option)
(** Parses the value of an environment variable like [http_proxy],
i.e. an HTTP URL. The argument is the URL.
Returns [(host,port,auth)] where [auth] may include user name,
password, and the [insecure] flag.
*)
val parse_no_proxy : string -> string list
(** Parses the value of an environment variable like [no_proxy]. Returns
the list of domains.
*)
(** {1 Convenience module for simple applications} *)
(** Do [open Nethttp_client.Convenience] for simple applications. *)
module Convenience :
sig
(** Convenience module for simple applications *)
(** Do [open Nethttp_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. {b Note that basic authentication is by default only enabled over
* connections that are secured via TLS! You can change that with the
* function [configure], see below.}
*
* 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.
*
* Error codes are reported as {!Nethttp_client.Http_error}. Note that
* this is different than what the pipeline core does.
*)
(** {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 configure : ?insecure:bool -> unit -> unit
(** Configurations:
- [insecure]: whether basic authentication over non-TLS connections
is enabled
You can only configure before the first user.
*)
val configure_pipeline : (pipeline -> unit) -> unit
(** This function will be called before the pipeline is used. This
is intended for fine-grained configuration.
*)
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 :
?verbose_status:bool ->
?verbose_request_header:bool ->
?verbose_response_header:bool ->
?verbose_request_contents:bool ->
?verbose_response_contents:bool ->
?verbose_connection:bool ->
?verbose_events:bool ->
unit -> unit
(** Turns on debug messages on stderr. By default, all options are
turned on.
*)
end
(** {1 Debugging} *)
module Debug : sig
val enable : bool ref
(** Enables {!Netlog}-style debugging of this module *)
end
|