1 | /* -------------------------------------------------------------------------
|
---|
2 | * BKG NTRIP Client
|
---|
3 | * -------------------------------------------------------------------------
|
---|
4 | *
|
---|
5 | * Class: bncNetQueryV2
|
---|
6 | *
|
---|
7 | * Purpose: Blocking Network Requests (NTRIP Version 2)
|
---|
8 | *
|
---|
9 | * Author: L. Mervart
|
---|
10 | *
|
---|
11 | * Created: 27-Dec-2008
|
---|
12 | *
|
---|
13 | * Changes:
|
---|
14 | *
|
---|
15 | * -----------------------------------------------------------------------*/
|
---|
16 |
|
---|
17 | #include <iostream>
|
---|
18 |
|
---|
19 | #include "bncnetqueryv2.h"
|
---|
20 | #include "bncsettings.h"
|
---|
21 | #include "bncversion.h"
|
---|
22 |
|
---|
23 | // Constructor
|
---|
24 | ////////////////////////////////////////////////////////////////////////////
|
---|
25 | bncNetQueryV2::bncNetQueryV2(bool secure) {
|
---|
26 | _secure = secure;
|
---|
27 | _manager = new QNetworkAccessManager(this);
|
---|
28 | connect(_manager, SIGNAL(proxyAuthenticationRequired(const QNetworkProxy&,
|
---|
29 | QAuthenticator*)),
|
---|
30 | this, SLOT(slotProxyAuthenticationRequired(const QNetworkProxy&,
|
---|
31 | QAuthenticator*)));
|
---|
32 | _reply = 0;
|
---|
33 | _eventLoop = new QEventLoop(this);
|
---|
34 | _firstData = true;
|
---|
35 | _status = init;
|
---|
36 | }
|
---|
37 |
|
---|
38 | // Destructor
|
---|
39 | ////////////////////////////////////////////////////////////////////////////
|
---|
40 | bncNetQueryV2::~bncNetQueryV2() {
|
---|
41 | delete _eventLoop;
|
---|
42 | delete _reply;
|
---|
43 | delete _manager;
|
---|
44 | }
|
---|
45 |
|
---|
46 | // Stop (quit event loop)
|
---|
47 | ////////////////////////////////////////////////////////////////////////////
|
---|
48 | void bncNetQueryV2::stop() {
|
---|
49 | if (_reply) {
|
---|
50 | _reply->abort();
|
---|
51 | }
|
---|
52 | _eventLoop->quit();
|
---|
53 | _status = finished;
|
---|
54 | }
|
---|
55 |
|
---|
56 | // End of Request
|
---|
57 | ////////////////////////////////////////////////////////////////////////////
|
---|
58 | void bncNetQueryV2::slotFinished() {
|
---|
59 | _eventLoop->quit();
|
---|
60 | if (_reply && _reply->error() != QNetworkReply::NoError) {
|
---|
61 | _status = error;
|
---|
62 | emit newMessage(_url.path().toAscii().replace(0,1,"") +
|
---|
63 | ": NetQueryV2: server replied: " +
|
---|
64 | _reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toByteArray(),
|
---|
65 | true);
|
---|
66 | }
|
---|
67 | else {
|
---|
68 | _status = finished;
|
---|
69 | }
|
---|
70 | }
|
---|
71 |
|
---|
72 | //
|
---|
73 | ////////////////////////////////////////////////////////////////////////////
|
---|
74 | void bncNetQueryV2::slotProxyAuthenticationRequired(const QNetworkProxy&,
|
---|
75 | QAuthenticator*) {
|
---|
76 | emit newMessage("slotProxyAuthenticationRequired", true);
|
---|
77 | }
|
---|
78 |
|
---|
79 | // Start request, block till the next read
|
---|
80 | ////////////////////////////////////////////////////////////////////////////
|
---|
81 | void bncNetQueryV2::startRequest(const QUrl& url, const QByteArray& gga) {
|
---|
82 | startRequestPrivate(url, gga, false);
|
---|
83 | }
|
---|
84 |
|
---|
85 | // Start Request (Private Method)
|
---|
86 | ////////////////////////////////////////////////////////////////////////////
|
---|
87 | void bncNetQueryV2::startRequestPrivate(const QUrl& url, const QByteArray& gga,
|
---|
88 | bool full) {
|
---|
89 |
|
---|
90 | _status = running;
|
---|
91 |
|
---|
92 | // Default scheme and path
|
---|
93 | // -----------------------
|
---|
94 | _url = url;
|
---|
95 | if (_url.scheme().isEmpty()) {
|
---|
96 | if (_secure) {
|
---|
97 | _url.setScheme("https");
|
---|
98 | }
|
---|
99 | else {
|
---|
100 | _url.setScheme("http");
|
---|
101 | }
|
---|
102 | }
|
---|
103 | if (_url.path().isEmpty()) {
|
---|
104 | _url.setPath("/");
|
---|
105 | }
|
---|
106 |
|
---|
107 | // Proxy Settings
|
---|
108 | // --------------
|
---|
109 | bncSettings settings;
|
---|
110 | QString proxyHost = settings.value("proxyHost").toString();
|
---|
111 | int proxyPort = settings.value("proxyPort").toInt();
|
---|
112 |
|
---|
113 | if (!proxyHost.isEmpty()) {
|
---|
114 | QNetworkProxy proxy(QNetworkProxy::HttpProxy, proxyHost, proxyPort);
|
---|
115 | _manager->setProxy(proxy);
|
---|
116 | }
|
---|
117 |
|
---|
118 | // Network Request
|
---|
119 | // ---------------
|
---|
120 | QNetworkRequest request;
|
---|
121 | request.setUrl(_url);
|
---|
122 | request.setRawHeader("Host" , _url.host().toAscii());
|
---|
123 | request.setRawHeader("Ntrip-Version", "Ntrip/2.0");
|
---|
124 | request.setRawHeader("User-Agent" , "NTRIP BNC/"BNCVERSION);
|
---|
125 | if (!_url.userName().isEmpty()) {
|
---|
126 | QString uName = QUrl::fromPercentEncoding(_url.userName().toAscii());
|
---|
127 | QString passW = QUrl::fromPercentEncoding(_url.password().toAscii());
|
---|
128 | request.setRawHeader("Authorization", "Basic " +
|
---|
129 | (uName + ":" + passW).toAscii().toBase64());
|
---|
130 | }
|
---|
131 | if (!gga.isEmpty()) {
|
---|
132 | request.setRawHeader("Ntrip-GGA", gga);
|
---|
133 | }
|
---|
134 | request.setRawHeader("Connection" , "close");
|
---|
135 |
|
---|
136 | delete _reply;
|
---|
137 | _reply = _manager->get(request);
|
---|
138 |
|
---|
139 | // Connect Signals
|
---|
140 | // ---------------
|
---|
141 | connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
|
---|
142 | connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
|
---|
143 | connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),
|
---|
144 | this, SLOT(slotSslErrors(QList<QSslError>)));
|
---|
145 | if (!full) {
|
---|
146 | connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
|
---|
147 | }
|
---|
148 | }
|
---|
149 |
|
---|
150 | // Start Request, wait for its completion
|
---|
151 | ////////////////////////////////////////////////////////////////////////////
|
---|
152 | void bncNetQueryV2::waitForRequestResult(const QUrl& url, QByteArray& outData) {
|
---|
153 |
|
---|
154 | // Send Request
|
---|
155 | // ------------
|
---|
156 | startRequestPrivate(url, "", true);
|
---|
157 |
|
---|
158 | // Wait Loop
|
---|
159 | // ---------
|
---|
160 | _eventLoop->exec();
|
---|
161 |
|
---|
162 | // Copy Data and Return
|
---|
163 | // --------------------
|
---|
164 | outData = _reply->readAll();
|
---|
165 | }
|
---|
166 |
|
---|
167 | // Wait for next data
|
---|
168 | ////////////////////////////////////////////////////////////////////////////
|
---|
169 | void bncNetQueryV2::waitForReadyRead(QByteArray& outData) {
|
---|
170 |
|
---|
171 | // Wait Loop
|
---|
172 | // ---------
|
---|
173 | if (!_reply->bytesAvailable()) {
|
---|
174 | _eventLoop->exec();
|
---|
175 | }
|
---|
176 |
|
---|
177 | // Check NTRIPv2 error code
|
---|
178 | // ------------------------
|
---|
179 | if (_reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() != 200) {
|
---|
180 | _reply->abort();
|
---|
181 | }
|
---|
182 |
|
---|
183 | // Append Data
|
---|
184 | // -----------
|
---|
185 | else {
|
---|
186 | outData.append(_reply->readAll());
|
---|
187 | }
|
---|
188 | }
|
---|
189 |
|
---|
190 | // TSL/SSL
|
---|
191 | ////////////////////////////////////////////////////////////////////////////
|
---|
192 | void bncNetQueryV2::slotSslErrors(QList<QSslError>) {
|
---|
193 |
|
---|
194 | //// std::cout << "slotSslErrors" << std::endl;
|
---|
195 | _reply->ignoreSslErrors();
|
---|
196 | }
|
---|