libdap Updated for version 3.20.11
libdap4 is an implementation of OPeNDAP's DAP protocol.
HTTPConnect.h
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// This file is part of libdap, A C++ implementation of the OPeNDAP Data
5// Access Protocol.
6
7// Copyright (c) 2002,2003 OPeNDAP, Inc.
8// Author: James Gallagher <jgallagher@opendap.org>
9//
10// This library is free software; you can redistribute it and/or
11// modify it under the terms of the GNU Lesser General Public
12// License as published by the Free Software Foundation; either
13// version 2.1 of the License, or (at your option) any later version.
14//
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18// Lesser General Public License for more details.
19//
20// You should have received a copy of the GNU Lesser General Public
21// License along with this library; if not, write to the Free Software
22// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23//
24// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25
26#ifndef _httpconnect_h
27#define _httpconnect_h
28
29
30#include <string>
31
32#include <curl/curl.h>
33//No longer used in CURL - pwest April 09, 2012
34//#include <curl/types.h>
35#include <curl/easy.h>
36
37#ifndef _rc_reader_h_
38#include "RCReader.h"
39#endif
40
41#ifndef _object_type_h
42#include "ObjectType.h"
43#endif
44
45#ifndef _http_cache_h
46#include "HTTPCache.h"
47#endif
48
49#ifndef http_response_h
50#include "HTTPResponse.h"
51#endif
52
53#ifndef _util_h
54#include "util.h"
55#endif
56
57using std::string;
58using std::vector;
59
60namespace libdap
61{
62
63extern int www_trace;
64extern int www_trace_extensive;
65extern int dods_keep_temps;
66
74{
75private:
76 CURL *d_curl;
77 RCReader *d_rcr;
78 HTTPCache *d_http_cache;
79
80 char d_error_buffer[CURL_ERROR_SIZE]; // A human-readable message.
81 std::string d_content_type; // apparently read by libcurl; this is valid only after curl_easy_perform()
82
83 bool d_accept_deflate;
84
85 string d_username; // extracted from URL
86 string d_password; // extracted from URL
87 string d_upstring; // used to pass info into curl
88
89 string d_cookie_jar;
90
91 vector<string> d_request_headers; // Request headers
92
93 int d_dap_client_protocol_major;
94 int d_dap_client_protocol_minor;
95
96 bool d_use_cpp_streams; // Build HTTPResponse objects using fstream and not FILE*
97
98 void www_lib_init();
99 long read_url(const string &url, FILE *stream, vector<string> *resp_hdrs,
100 const vector<string> *headers = 0);
101
102 HTTPResponse *plain_fetch_url(const string &url);
103 HTTPResponse *caching_fetch_url(const string &url);
104
105 bool url_uses_proxy_for(const string &url);
106 bool url_uses_no_proxy_for(const string &url) throw();
107
108 void extract_auth_info(string &url);
109
110 friend size_t save_raw_http_header(void *ptr, size_t size, size_t nmemb,
111 void *http_connect);
112 friend class HTTPConnectTest;
113 friend class ParseHeader;
114
115protected:
121 HTTPConnect();
122 HTTPConnect(const HTTPConnect &);
123 HTTPConnect &operator=(const HTTPConnect &);
125
126public:
127 HTTPConnect(RCReader *rcr, bool use_cpp = false);
128
129 virtual ~HTTPConnect();
130
131 void set_credentials(const string &u, const string &p);
132 void set_accept_deflate(bool defalte);
133 void set_xdap_protocol(int major, int minor);
134
135 bool use_cpp_streams() const { return d_use_cpp_streams; }
136 void set_use_cpp_streams(bool use_cpp_streams) { d_use_cpp_streams = use_cpp_streams; }
137
144 void set_cookie_jar(const string &cookie_jar) { d_cookie_jar = cookie_jar; }
145
151 void set_cache_enabled(bool enabled) {
152 if (d_http_cache)
153 d_http_cache->set_cache_enabled(enabled);
154 }
155
157 bool is_cache_enabled() { return (d_http_cache) ? d_http_cache->is_cache_enabled() : false; }
158
159 HTTPResponse *fetch_url(const string &url);
160};
161
162} // namespace libdap
163
164#endif // _httpconnect_h
void set_cache_enabled(bool mode)
Definition: HTTPCache.cc:635
bool is_cache_enabled() const
Definition: HTTPCache.cc:647
void set_accept_deflate(bool defalte)
HTTPResponse * fetch_url(const string &url)
Definition: HTTPConnect.cc:635
void set_credentials(const string &u, const string &p)
void set_cache_enabled(bool enabled)
Definition: HTTPConnect.h:151
void set_xdap_protocol(int major, int minor)
void set_cookie_jar(const string &cookie_jar)
Definition: HTTPConnect.h:144
top level DAP object to house generic methods
Definition: AlarmHandler.h:36