Qore ConnectionProvider Module Reference  1.3
HttpConnection.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 // Qore HttpConnection class definition
3 
4 /* HttpConnection.qc Copyright 2016 - 2020 Qore Technologies, s.r.o.
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23 */
24 
25 
27 namespace ConnectionProvider {
29 
49 
50 public:
52  const Options = {
53  "assume_encoding": True,
54  "error_passthru": True,
55  "http_version": True,
56  "max_redirects": True,
57  "proxy": True,
58  "timeout": True,
59  "connect_timeout": True,
60  "redirect_passthru": True,
61  "ssl_cert_path": True,
62  "ssl_key_password": True,
63  "ssl_key_path": True,
64  "ssl_verify_cert": True,
65  };
66 
68  const DefaultOptions = {
69  "timeout": 45s,
70  "connect_timeout": 45s,
71  };
72 
73  const OptionList = Options.keys();
74 
76 
85  deprecated
86  constructor(string name, string desc, string url, bool monitor, *hash<auto> opts, hash<auto> urlh)
87  ;
88 
89 
91 
99  constructor(string name, string desc, string url, hash<auto> attributes = {}, hash<auto> options = {})
100  ;
101 
102 
104 
107 protected:
108  Qore::HTTPClient getImpl(bool connect = True, *hash rtopts);
109 public:
110 
111 
113 
132  hash<auto> getOptions();
133 
134 
136 
140  *hash<auto> getDefaultOptions();
141 
142 
144  string getType();
145 
146 
148 
150  deprecated
151  static HttpConnection make(string name, string desc, string url, bool monitor, *hash opts, hash urlh);
152  };
153 }; // ConnectionProvider namespace
ConnectionProvider
the ConnectionProvider namespace. All classes used in the ConnectionProvider module should be inside ...
Definition: AbstractConnection.qc.dox.h:27
Qore::HTTPClient
ConnectionProvider::AbstractConnection
abstract base class for connections
Definition: AbstractConnection.qc.dox.h:31
ConnectionProvider::AbstractConnection::name
string name
connection name
Definition: AbstractConnection.qc.dox.h:35
ConnectionProvider::HttpConnection::make
static deprecated HttpConnection make(string name, string desc, string url, bool monitor, *hash opts, hash urlh)
DEPRECATED: static constructor.
ConnectionProvider::HttpConnection::getDefaultOptions
*hash< auto > getDefaultOptions()
returns default options
ConnectionProvider::HttpConnection::DefaultOptions
const DefaultOptions
HttpConnection default options.
Definition: HttpConnection.qc.dox.h:68
ConnectionProvider::AbstractConnection::desc
string desc
connection description
Definition: AbstractConnection.qc.dox.h:38
True
const True
ConnectionProvider::HttpConnection::Options
const Options
HttpConnection object connection options.
Definition: HttpConnection.qc.dox.h:52
ConnectionProvider::AbstractConnection::opts
*hash< auto > opts
connection options
Definition: AbstractConnection.qc.dox.h:50
ConnectionProvider::HttpConnection::getType
string getType()
returns "http"
ConnectionProvider::AbstractConnection::urlh
hash< auto > urlh
broken down URL hash (as returned by Qore::parse_url())
Definition: AbstractConnection.qc.dox.h:53
ConnectionProvider::HttpConnection::getOptions
hash< auto > getOptions()
gets options
hash
hash< auto > hash(object obj)
ConnectionProvider::AbstractConnection::url
string url
connection URL (potentially with password info)
Definition: AbstractConnection.qc.dox.h:41
ConnectionProvider::AbstractConnection::monitor
bool monitor
monitoring flag
Definition: AbstractConnection.qc.dox.h:65
ConnectionProvider::HttpConnection
class for HTTP connections; returns Qore::HTTPClient objects
Definition: HttpConnection.qc.dox.h:48
ConnectionProvider::HttpConnection::getImpl
Qore::HTTPClient getImpl(bool connect=True, *hash rtopts)
returns an Qore::HTTPClient object
ConnectionProvider::HttpConnection::constructor
deprecated constructor(string name, string desc, string url, bool monitor, *hash< auto > opts, hash< auto > urlh)
DEPRECATED: creates the HttpConnection object.