Auto status change to "Under Review"
@@ -1,141 +1,148 | |||||
1 | #include "Network/NetworkController.h" |
|
1 | #include "Network/NetworkController.h" | |
2 |
|
2 | |||
3 | #include <QMutex> |
|
3 | #include <QMutex> | |
4 | #include <QNetworkAccessManager> |
|
4 | #include <QNetworkAccessManager> | |
5 | #include <QNetworkReply> |
|
5 | #include <QNetworkReply> | |
6 | #include <QNetworkRequest> |
|
6 | #include <QNetworkRequest> | |
7 | #include <QReadWriteLock> |
|
7 | #include <QReadWriteLock> | |
8 | #include <QThread> |
|
8 | #include <QThread> | |
9 |
|
9 | |||
10 | #include <unordered_map> |
|
10 | #include <unordered_map> | |
11 |
|
11 | |||
12 | Q_LOGGING_CATEGORY(LOG_NetworkController, "NetworkController") |
|
12 | Q_LOGGING_CATEGORY(LOG_NetworkController, "NetworkController") | |
13 |
|
13 | |||
14 | struct NetworkController::NetworkControllerPrivate { |
|
14 | struct NetworkController::NetworkControllerPrivate { | |
15 | explicit NetworkControllerPrivate(NetworkController *parent) : m_WorkingMutex{} {} |
|
15 | explicit NetworkControllerPrivate(NetworkController *parent) : m_WorkingMutex{} {} | |
16 |
|
16 | |||
17 | void lockRead() { m_Lock.lockForRead(); } |
|
17 | void lockRead() { m_Lock.lockForRead(); } | |
18 | void lockWrite() { m_Lock.lockForWrite(); } |
|
18 | void lockWrite() { m_Lock.lockForWrite(); } | |
19 | void unlock() { m_Lock.unlock(); } |
|
19 | void unlock() { m_Lock.unlock(); } | |
20 |
|
20 | |||
21 | QMutex m_WorkingMutex; |
|
21 | QMutex m_WorkingMutex; | |
22 |
|
22 | |||
23 | QReadWriteLock m_Lock; |
|
23 | QReadWriteLock m_Lock; | |
24 | std::unordered_map<QNetworkReply *, QUuid> m_NetworkReplyToId; |
|
24 | std::unordered_map<QNetworkReply *, QUuid> m_NetworkReplyToId; | |
25 | std::unique_ptr<QNetworkAccessManager> m_AccessManager{nullptr}; |
|
25 | std::unique_ptr<QNetworkAccessManager> m_AccessManager{nullptr}; | |
26 | }; |
|
26 | }; | |
27 |
|
27 | |||
28 | NetworkController::NetworkController(QObject *parent) |
|
28 | NetworkController::NetworkController(QObject *parent) | |
29 | : QObject(parent), impl{spimpl::make_unique_impl<NetworkControllerPrivate>(this)} |
|
29 | : QObject(parent), impl{spimpl::make_unique_impl<NetworkControllerPrivate>(this)} | |
30 | { |
|
30 | { | |
31 | } |
|
31 | } | |
32 |
|
32 | |||
33 | void NetworkController::onProcessRequested(std::shared_ptr<QNetworkRequest> request, |
|
33 | void NetworkController::onProcessRequested(std::shared_ptr<QNetworkRequest> request, | |
34 | QUuid identifier, |
|
34 | QUuid identifier, | |
35 | std::function<void(QNetworkReply *, QUuid)> callback) |
|
35 | std::function<void(QNetworkReply *, QUuid)> callback) | |
36 | { |
|
36 | { | |
37 | qCDebug(LOG_NetworkController()) << tr("NetworkController onProcessRequested") |
|
37 | qCDebug(LOG_NetworkController()) << tr("NetworkController onProcessRequested") | |
38 | << QThread::currentThread()->objectName() << &request; |
|
38 | << QThread::currentThread()->objectName() << &request; | |
39 | auto reply = impl->m_AccessManager->get(*request); |
|
39 | auto reply = impl->m_AccessManager->get(*request); | |
40 |
|
40 | |||
41 | // Store the couple reply id |
|
41 | // Store the couple reply id | |
42 | impl->lockWrite(); |
|
42 | impl->lockWrite(); | |
43 | impl->m_NetworkReplyToId[reply] = identifier; |
|
43 | impl->m_NetworkReplyToId[reply] = identifier; | |
44 | qCDebug(LOG_NetworkController()) << tr("Store for reply: ") << identifier; |
|
44 | qCDebug(LOG_NetworkController()) << tr("Store for reply: ") << identifier; | |
45 | impl->unlock(); |
|
45 | impl->unlock(); | |
46 |
|
46 | |||
47 | auto onReplyFinished = [request, reply, this, identifier, callback]() { |
|
47 | auto onReplyFinished = [request, reply, this, identifier, callback]() { | |
48 |
|
48 | |||
49 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyFinished") |
|
49 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyFinished") | |
50 | << QThread::currentThread() << request.get() << reply; |
|
50 | << QThread::currentThread() << request.get() << reply; | |
51 | impl->lockRead(); |
|
51 | impl->lockRead(); | |
52 | auto it = impl->m_NetworkReplyToId.find(reply); |
|
52 | auto it = impl->m_NetworkReplyToId.find(reply); | |
53 | impl->unlock(); |
|
|||
54 | if (it != impl->m_NetworkReplyToId.cend()) { |
|
53 | if (it != impl->m_NetworkReplyToId.cend()) { | |
|
54 | qCDebug(LOG_NetworkController()) << tr("Remove for reply: ") << it->second; | |||
|
55 | impl->unlock(); | |||
55 | impl->lockWrite(); |
|
56 | impl->lockWrite(); | |
56 | qCDebug(LOG_NetworkController()) << tr("Remove for reply: ") |
|
|||
57 | << impl->m_NetworkReplyToId[reply]; |
|
|||
58 | impl->m_NetworkReplyToId.erase(reply); |
|
57 | impl->m_NetworkReplyToId.erase(reply); | |
59 | impl->unlock(); |
|
58 | impl->unlock(); | |
60 | // Deletes reply |
|
59 | // Deletes reply | |
61 | callback(reply, identifier); |
|
60 | callback(reply, identifier); | |
62 | reply->deleteLater(); |
|
61 | reply->deleteLater(); | |
63 | } |
|
62 | } | |
|
63 | else { | |||
|
64 | impl->unlock(); | |||
|
65 | } | |||
64 |
|
66 | |||
65 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyFinished END") |
|
67 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyFinished END") | |
66 | << QThread::currentThread() << reply; |
|
68 | << QThread::currentThread() << reply; | |
67 | }; |
|
69 | }; | |
68 |
|
70 | |||
69 | auto onReplyProgress = [reply, request, this](qint64 bytesRead, qint64 totalBytes) { |
|
71 | auto onReplyProgress = [reply, request, this](qint64 bytesRead, qint64 totalBytes) { | |
70 |
|
72 | |||
71 | // NOTE: a totalbytes of 0 can happened when a request has been aborted |
|
73 | // NOTE: a totalbytes of 0 can happened when a request has been aborted | |
72 | if (totalBytes > 0) { |
|
74 | if (totalBytes > 0) { | |
73 | double progress = (bytesRead * 100.0) / totalBytes; |
|
75 | double progress = (bytesRead * 100.0) / totalBytes; | |
74 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyProgress") << progress |
|
76 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyProgress") << progress | |
75 | << QThread::currentThread() << request.get() << reply |
|
77 | << QThread::currentThread() << request.get() << reply | |
76 | << bytesRead << totalBytes; |
|
78 | << bytesRead << totalBytes; | |
77 | impl->lockRead(); |
|
79 | impl->lockRead(); | |
78 | auto it = impl->m_NetworkReplyToId.find(reply); |
|
80 | auto it = impl->m_NetworkReplyToId.find(reply); | |
79 | impl->unlock(); |
|
|||
80 | if (it != impl->m_NetworkReplyToId.cend()) { |
|
81 | if (it != impl->m_NetworkReplyToId.cend()) { | |
81 | emit this->replyDownloadProgress(it->second, request, progress); |
|
82 | auto id = it->second; | |
|
83 | impl->unlock(); | |||
|
84 | emit this->replyDownloadProgress(id, request, progress); | |||
|
85 | } | |||
|
86 | else { | |||
|
87 | impl->unlock(); | |||
82 | } |
|
88 | } | |
|
89 | ||||
83 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyProgress END") |
|
90 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyProgress END") | |
84 | << QThread::currentThread() << reply; |
|
91 | << QThread::currentThread() << reply; | |
85 | } |
|
92 | } | |
86 | }; |
|
93 | }; | |
87 |
|
94 | |||
88 |
|
95 | |||
89 | connect(reply, &QNetworkReply::finished, this, onReplyFinished); |
|
96 | connect(reply, &QNetworkReply::finished, this, onReplyFinished); | |
90 | connect(reply, &QNetworkReply::downloadProgress, this, onReplyProgress); |
|
97 | connect(reply, &QNetworkReply::downloadProgress, this, onReplyProgress); | |
91 | qCDebug(LOG_NetworkController()) << tr("NetworkController registered END") |
|
98 | qCDebug(LOG_NetworkController()) << tr("NetworkController registered END") | |
92 | << QThread::currentThread()->objectName() << reply; |
|
99 | << QThread::currentThread()->objectName() << reply; | |
93 | } |
|
100 | } | |
94 |
|
101 | |||
95 | void NetworkController::initialize() |
|
102 | void NetworkController::initialize() | |
96 | { |
|
103 | { | |
97 | qCDebug(LOG_NetworkController()) << tr("NetworkController init") << QThread::currentThread(); |
|
104 | qCDebug(LOG_NetworkController()) << tr("NetworkController init") << QThread::currentThread(); | |
98 | impl->m_WorkingMutex.lock(); |
|
105 | impl->m_WorkingMutex.lock(); | |
99 | impl->m_AccessManager = std::make_unique<QNetworkAccessManager>(); |
|
106 | impl->m_AccessManager = std::make_unique<QNetworkAccessManager>(); | |
100 |
|
107 | |||
101 |
|
108 | |||
102 | auto onReplyErrors = [this](QNetworkReply *reply, const QList<QSslError> &errors) { |
|
109 | auto onReplyErrors = [this](QNetworkReply *reply, const QList<QSslError> &errors) { | |
103 | qCCritical(LOG_NetworkController()) << tr("NetworkAcessManager errors: ") << errors; |
|
110 | qCCritical(LOG_NetworkController()) << tr("NetworkAcessManager errors: ") << errors; | |
104 |
|
111 | |||
105 | }; |
|
112 | }; | |
106 |
|
113 | |||
107 |
|
114 | |||
108 | connect(impl->m_AccessManager.get(), &QNetworkAccessManager::sslErrors, this, onReplyErrors); |
|
115 | connect(impl->m_AccessManager.get(), &QNetworkAccessManager::sslErrors, this, onReplyErrors); | |
109 |
|
116 | |||
110 | qCDebug(LOG_NetworkController()) << tr("NetworkController init END"); |
|
117 | qCDebug(LOG_NetworkController()) << tr("NetworkController init END"); | |
111 | } |
|
118 | } | |
112 |
|
119 | |||
113 | void NetworkController::finalize() |
|
120 | void NetworkController::finalize() | |
114 | { |
|
121 | { | |
115 | impl->m_WorkingMutex.unlock(); |
|
122 | impl->m_WorkingMutex.unlock(); | |
116 | } |
|
123 | } | |
117 |
|
124 | |||
118 | void NetworkController::onReplyCanceled(QUuid identifier) |
|
125 | void NetworkController::onReplyCanceled(QUuid identifier) | |
119 | { |
|
126 | { | |
120 | auto findReply = [identifier](const auto &entry) { return identifier == entry.second; }; |
|
127 | auto findReply = [identifier](const auto &entry) { return identifier == entry.second; }; | |
121 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyCanceled") |
|
128 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyCanceled") | |
122 | << QThread::currentThread() << identifier; |
|
129 | << QThread::currentThread() << identifier; | |
123 |
|
130 | |||
124 |
|
131 | |||
125 | impl->lockRead(); |
|
132 | impl->lockRead(); | |
126 | auto end = impl->m_NetworkReplyToId.cend(); |
|
133 | auto end = impl->m_NetworkReplyToId.cend(); | |
127 | auto it = std::find_if(impl->m_NetworkReplyToId.cbegin(), end, findReply); |
|
134 | auto it = std::find_if(impl->m_NetworkReplyToId.cbegin(), end, findReply); | |
128 | impl->unlock(); |
|
135 | impl->unlock(); | |
129 | if (it != end) { |
|
136 | if (it != end) { | |
130 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyCanceled ABORT DONE") |
|
137 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyCanceled ABORT DONE") | |
131 | << QThread::currentThread() << identifier; |
|
138 | << QThread::currentThread() << identifier; | |
132 | it->first->abort(); |
|
139 | it->first->abort(); | |
133 | } |
|
140 | } | |
134 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyCanceled END") |
|
141 | qCDebug(LOG_NetworkController()) << tr("NetworkController onReplyCanceled END") | |
135 | << QThread::currentThread(); |
|
142 | << QThread::currentThread(); | |
136 | } |
|
143 | } | |
137 |
|
144 | |||
138 | void NetworkController::waitForFinish() |
|
145 | void NetworkController::waitForFinish() | |
139 | { |
|
146 | { | |
140 | QMutexLocker locker{&impl->m_WorkingMutex}; |
|
147 | QMutexLocker locker{&impl->m_WorkingMutex}; | |
141 | } |
|
148 | } |
@@ -1,274 +1,277 | |||||
1 | #include "AmdaProvider.h" |
|
1 | #include "AmdaProvider.h" | |
2 | #include "AmdaDefs.h" |
|
2 | #include "AmdaDefs.h" | |
3 | #include "AmdaResultParser.h" |
|
3 | #include "AmdaResultParser.h" | |
4 |
|
4 | |||
5 | #include <Common/DateUtils.h> |
|
5 | #include <Common/DateUtils.h> | |
6 | #include <Data/DataProviderParameters.h> |
|
6 | #include <Data/DataProviderParameters.h> | |
7 | #include <Network/NetworkController.h> |
|
7 | #include <Network/NetworkController.h> | |
8 | #include <SqpApplication.h> |
|
8 | #include <SqpApplication.h> | |
9 | #include <Variable/Variable.h> |
|
9 | #include <Variable/Variable.h> | |
10 |
|
10 | |||
11 | #include <QNetworkAccessManager> |
|
11 | #include <QNetworkAccessManager> | |
12 | #include <QNetworkReply> |
|
12 | #include <QNetworkReply> | |
13 | #include <QTemporaryFile> |
|
13 | #include <QTemporaryFile> | |
14 | #include <QThread> |
|
14 | #include <QThread> | |
15 |
|
15 | |||
16 | Q_LOGGING_CATEGORY(LOG_AmdaProvider, "AmdaProvider") |
|
16 | Q_LOGGING_CATEGORY(LOG_AmdaProvider, "AmdaProvider") | |
17 |
|
17 | |||
18 | namespace { |
|
18 | namespace { | |
19 |
|
19 | |||
20 | /// URL format for a request on AMDA server. The parameters are as follows: |
|
20 | /// URL format for a request on AMDA server. The parameters are as follows: | |
21 | /// - %1: start date |
|
21 | /// - %1: start date | |
22 | /// - %2: end date |
|
22 | /// - %2: end date | |
23 | /// - %3: parameter id |
|
23 | /// - %3: parameter id | |
24 | const auto AMDA_URL_FORMAT = QStringLiteral( |
|
24 | const auto AMDA_URL_FORMAT = QStringLiteral( | |
25 | "http://amda.irap.omp.eu/php/rest/" |
|
25 | "http://amda.irap.omp.eu/php/rest/" | |
26 | "getParameter.php?startTime=%1&stopTime=%2¶meterID=%3&outputFormat=ASCII&" |
|
26 | "getParameter.php?startTime=%1&stopTime=%2¶meterID=%3&outputFormat=ASCII&" | |
27 | "timeFormat=ISO8601&gzip=0"); |
|
27 | "timeFormat=ISO8601&gzip=0"); | |
28 |
|
28 | |||
29 | /// Dates format passed in the URL (e.g 2013-09-23T09:00) |
|
29 | /// Dates format passed in the URL (e.g 2013-09-23T09:00) | |
30 | const auto AMDA_TIME_FORMAT = QStringLiteral("yyyy-MM-ddThh:mm:ss"); |
|
30 | const auto AMDA_TIME_FORMAT = QStringLiteral("yyyy-MM-ddThh:mm:ss"); | |
31 |
|
31 | |||
32 | /// Formats a time to a date that can be passed in URL |
|
32 | /// Formats a time to a date that can be passed in URL | |
33 | QString dateFormat(double sqpRange) noexcept |
|
33 | QString dateFormat(double sqpRange) noexcept | |
34 | { |
|
34 | { | |
35 | auto dateTime = DateUtils::dateTime(sqpRange); |
|
35 | auto dateTime = DateUtils::dateTime(sqpRange); | |
36 | return dateTime.toString(AMDA_TIME_FORMAT); |
|
36 | return dateTime.toString(AMDA_TIME_FORMAT); | |
37 | } |
|
37 | } | |
38 |
|
38 | |||
39 | AmdaResultParser::ValueType valueType(const QString &valueType) |
|
39 | AmdaResultParser::ValueType valueType(const QString &valueType) | |
40 | { |
|
40 | { | |
41 | if (valueType == QStringLiteral("scalar")) { |
|
41 | if (valueType == QStringLiteral("scalar")) { | |
42 | return AmdaResultParser::ValueType::SCALAR; |
|
42 | return AmdaResultParser::ValueType::SCALAR; | |
43 | } |
|
43 | } | |
44 | else if (valueType == QStringLiteral("vector")) { |
|
44 | else if (valueType == QStringLiteral("vector")) { | |
45 | return AmdaResultParser::ValueType::VECTOR; |
|
45 | return AmdaResultParser::ValueType::VECTOR; | |
46 | } |
|
46 | } | |
47 | else { |
|
47 | else { | |
48 | return AmdaResultParser::ValueType::UNKNOWN; |
|
48 | return AmdaResultParser::ValueType::UNKNOWN; | |
49 | } |
|
49 | } | |
50 | } |
|
50 | } | |
51 |
|
51 | |||
52 | } // namespace |
|
52 | } // namespace | |
53 |
|
53 | |||
54 | AmdaProvider::AmdaProvider() |
|
54 | AmdaProvider::AmdaProvider() | |
55 | { |
|
55 | { | |
56 | qCDebug(LOG_AmdaProvider()) << tr("AmdaProvider::AmdaProvider") << QThread::currentThread(); |
|
56 | qCDebug(LOG_AmdaProvider()) << tr("AmdaProvider::AmdaProvider") << QThread::currentThread(); | |
57 | if (auto app = sqpApp) { |
|
57 | if (auto app = sqpApp) { | |
58 | auto &networkController = app->networkController(); |
|
58 | auto &networkController = app->networkController(); | |
59 | connect(this, SIGNAL(requestConstructed(std::shared_ptr<QNetworkRequest>, QUuid, |
|
59 | connect(this, SIGNAL(requestConstructed(std::shared_ptr<QNetworkRequest>, QUuid, | |
60 | std::function<void(QNetworkReply *, QUuid)>)), |
|
60 | std::function<void(QNetworkReply *, QUuid)>)), | |
61 | &networkController, |
|
61 | &networkController, | |
62 | SLOT(onProcessRequested(std::shared_ptr<QNetworkRequest>, QUuid, |
|
62 | SLOT(onProcessRequested(std::shared_ptr<QNetworkRequest>, QUuid, | |
63 | std::function<void(QNetworkReply *, QUuid)>))); |
|
63 | std::function<void(QNetworkReply *, QUuid)>))); | |
64 |
|
64 | |||
65 |
|
65 | |||
66 | connect(&sqpApp->networkController(), |
|
66 | connect(&sqpApp->networkController(), | |
67 | SIGNAL(replyDownloadProgress(QUuid, std::shared_ptr<QNetworkRequest>, double)), |
|
67 | SIGNAL(replyDownloadProgress(QUuid, std::shared_ptr<QNetworkRequest>, double)), | |
68 | this, |
|
68 | this, | |
69 | SLOT(onReplyDownloadProgress(QUuid, std::shared_ptr<QNetworkRequest>, double))); |
|
69 | SLOT(onReplyDownloadProgress(QUuid, std::shared_ptr<QNetworkRequest>, double))); | |
70 | } |
|
70 | } | |
71 | } |
|
71 | } | |
72 |
|
72 | |||
73 | std::shared_ptr<IDataProvider> AmdaProvider::clone() const |
|
73 | std::shared_ptr<IDataProvider> AmdaProvider::clone() const | |
74 | { |
|
74 | { | |
75 | // No copy is made in the clone |
|
75 | // No copy is made in the clone | |
76 | return std::make_shared<AmdaProvider>(); |
|
76 | return std::make_shared<AmdaProvider>(); | |
77 | } |
|
77 | } | |
78 |
|
78 | |||
79 | void AmdaProvider::requestDataLoading(QUuid acqIdentifier, const DataProviderParameters ¶meters) |
|
79 | void AmdaProvider::requestDataLoading(QUuid acqIdentifier, const DataProviderParameters ¶meters) | |
80 | { |
|
80 | { | |
81 | // NOTE: Try to use multithread if possible |
|
81 | // NOTE: Try to use multithread if possible | |
82 | const auto times = parameters.m_Times; |
|
82 | const auto times = parameters.m_Times; | |
83 | const auto data = parameters.m_Data; |
|
83 | const auto data = parameters.m_Data; | |
84 | for (const auto &dateTime : qAsConst(times)) { |
|
84 | for (const auto &dateTime : qAsConst(times)) { | |
|
85 | qCInfo(LOG_AmdaProvider()) << tr("TORM AmdaProvider::requestDataLoading ") << acqIdentifier | |||
|
86 | << dateTime; | |||
85 | this->retrieveData(acqIdentifier, dateTime, data); |
|
87 | this->retrieveData(acqIdentifier, dateTime, data); | |
86 |
|
88 | |||
87 |
|
89 | |||
88 | // TORM when AMDA will support quick asynchrone request |
|
90 | // TORM when AMDA will support quick asynchrone request | |
89 | QThread::msleep(1000); |
|
91 | QThread::msleep(1000); | |
90 | } |
|
92 | } | |
91 | } |
|
93 | } | |
92 |
|
94 | |||
93 | void AmdaProvider::requestDataAborting(QUuid acqIdentifier) |
|
95 | void AmdaProvider::requestDataAborting(QUuid acqIdentifier) | |
94 | { |
|
96 | { | |
95 | if (auto app = sqpApp) { |
|
97 | if (auto app = sqpApp) { | |
96 | auto &networkController = app->networkController(); |
|
98 | auto &networkController = app->networkController(); | |
97 | networkController.onReplyCanceled(acqIdentifier); |
|
99 | networkController.onReplyCanceled(acqIdentifier); | |
98 | } |
|
100 | } | |
99 | } |
|
101 | } | |
100 |
|
102 | |||
101 | void AmdaProvider::onReplyDownloadProgress(QUuid acqIdentifier, |
|
103 | void AmdaProvider::onReplyDownloadProgress(QUuid acqIdentifier, | |
102 | std::shared_ptr<QNetworkRequest> networkRequest, |
|
104 | std::shared_ptr<QNetworkRequest> networkRequest, | |
103 | double progress) |
|
105 | double progress) | |
104 | { |
|
106 | { | |
105 |
qC |
|
107 | qCDebug(LOG_AmdaProvider()) << tr("onReplyDownloadProgress") << acqIdentifier | |
106 | << networkRequest.get() << progress; |
|
108 | << networkRequest.get() << progress; | |
107 | auto acqIdToRequestProgressMapIt = m_AcqIdToRequestProgressMap.find(acqIdentifier); |
|
109 | auto acqIdToRequestProgressMapIt = m_AcqIdToRequestProgressMap.find(acqIdentifier); | |
108 | if (acqIdToRequestProgressMapIt != m_AcqIdToRequestProgressMap.end()) { |
|
110 | if (acqIdToRequestProgressMapIt != m_AcqIdToRequestProgressMap.end()) { | |
109 |
|
111 | |||
|
112 | // Update the progression for the current request | |||
110 | auto requestPtr = networkRequest; |
|
113 | auto requestPtr = networkRequest; | |
111 | auto findRequest = [requestPtr](const auto &entry) { return requestPtr == entry.first; }; |
|
114 | auto findRequest = [requestPtr](const auto &entry) { return requestPtr == entry.first; }; | |
112 |
|
115 | |||
113 | auto &requestProgressMap = acqIdToRequestProgressMapIt->second; |
|
116 | auto &requestProgressMap = acqIdToRequestProgressMapIt->second; | |
114 | auto requestProgressMapEnd = requestProgressMap.end(); |
|
117 | auto requestProgressMapEnd = requestProgressMap.end(); | |
115 | auto requestProgressMapIt |
|
118 | auto requestProgressMapIt | |
116 | = std::find_if(requestProgressMap.begin(), requestProgressMapEnd, findRequest); |
|
119 | = std::find_if(requestProgressMap.begin(), requestProgressMapEnd, findRequest); | |
117 |
|
120 | |||
118 | if (requestProgressMapIt != requestProgressMapEnd) { |
|
121 | if (requestProgressMapIt != requestProgressMapEnd) { | |
119 | requestProgressMapIt->second = progress; |
|
122 | requestProgressMapIt->second = progress; | |
120 | } |
|
123 | } | |
121 | else { |
|
124 | else { | |
122 | // This case can happened when a progression is send after the request has been |
|
125 | // This case can happened when a progression is send after the request has been | |
123 | // finished. |
|
126 | // finished. | |
124 | // Generaly the case when aborting a request |
|
127 | // Generaly the case when aborting a request | |
125 | qCWarning(LOG_AmdaProvider()) << tr("Can't retrieve Request in progress") |
|
128 | qCWarning(LOG_AmdaProvider()) << tr("Can't retrieve Request in progress") | |
126 | << acqIdentifier << networkRequest.get() << progress; |
|
129 | << acqIdentifier << networkRequest.get() << progress; | |
127 | } |
|
130 | } | |
128 | } |
|
|||
129 |
|
131 | |||
130 | acqIdToRequestProgressMapIt = m_AcqIdToRequestProgressMap.find(acqIdentifier); |
|
132 | // Compute the current final progress and notify it | |
131 | if (acqIdToRequestProgressMapIt != m_AcqIdToRequestProgressMap.end()) { |
|
|||
132 | double finalProgress = 0.0; |
|
133 | double finalProgress = 0.0; | |
133 |
|
134 | |||
134 | auto &requestProgressMap = acqIdToRequestProgressMapIt->second; |
|
|||
135 | auto fraq = requestProgressMap.size(); |
|
135 | auto fraq = requestProgressMap.size(); | |
136 |
|
136 | |||
137 | for (auto requestProgress : requestProgressMap) { |
|
137 | for (auto requestProgress : requestProgressMap) { | |
138 | finalProgress += requestProgress.second; |
|
138 | finalProgress += requestProgress.second; | |
139 |
qCDebug(LOG_AmdaProvider()) << tr(" |
|
139 | qCDebug(LOG_AmdaProvider()) << tr("Current final progress without fraq:") | |
140 | << finalProgress << requestProgress.second; |
|
140 | << finalProgress << requestProgress.second; | |
141 | } |
|
141 | } | |
142 |
|
142 | |||
143 | if (fraq > 0) { |
|
143 | if (fraq > 0) { | |
144 | finalProgress = finalProgress / fraq; |
|
144 | finalProgress = finalProgress / fraq; | |
145 | } |
|
145 | } | |
146 |
|
146 | |||
147 |
qCDebug(LOG_AmdaProvider()) << tr(" |
|
147 | qCDebug(LOG_AmdaProvider()) << tr("Current final progress: ") << fraq << finalProgress; | |
148 | << finalProgress; |
|
|||
149 | emit dataProvidedProgress(acqIdentifier, finalProgress); |
|
148 | emit dataProvidedProgress(acqIdentifier, finalProgress); | |
150 | } |
|
149 | } | |
151 | else { |
|
150 | else { | |
152 | // This case can happened when a progression is send after the request has been finished. |
|
151 | // This case can happened when a progression is send after the request has been finished. | |
153 | // Generaly the case when aborting a request |
|
152 | // Generaly the case when aborting a request | |
154 | emit dataProvidedProgress(acqIdentifier, 100.0); |
|
153 | emit dataProvidedProgress(acqIdentifier, 100.0); | |
155 | } |
|
154 | } | |
156 | } |
|
155 | } | |
157 |
|
156 | |||
158 | void AmdaProvider::retrieveData(QUuid token, const SqpRange &dateTime, const QVariantHash &data) |
|
157 | void AmdaProvider::retrieveData(QUuid token, const SqpRange &dateTime, const QVariantHash &data) | |
159 | { |
|
158 | { | |
160 | // Retrieves product ID from data: if the value is invalid, no request is made |
|
159 | // Retrieves product ID from data: if the value is invalid, no request is made | |
161 | auto productId = data.value(AMDA_XML_ID_KEY).toString(); |
|
160 | auto productId = data.value(AMDA_XML_ID_KEY).toString(); | |
162 | if (productId.isNull()) { |
|
161 | if (productId.isNull()) { | |
163 | qCCritical(LOG_AmdaProvider()) << tr("Can't retrieve data: unknown product id"); |
|
162 | qCCritical(LOG_AmdaProvider()) << tr("Can't retrieve data: unknown product id"); | |
164 | return; |
|
163 | return; | |
165 | } |
|
164 | } | |
166 |
|
165 | |||
167 | // Retrieves the data type that determines whether the expected format for the result file is |
|
166 | // Retrieves the data type that determines whether the expected format for the result file is | |
168 | // scalar, vector... |
|
167 | // scalar, vector... | |
169 | auto productValueType = valueType(data.value(AMDA_DATA_TYPE_KEY).toString()); |
|
168 | auto productValueType = valueType(data.value(AMDA_DATA_TYPE_KEY).toString()); | |
170 |
|
169 | |||
171 | // /////////// // |
|
170 | // /////////// // | |
172 | // Creates URL // |
|
171 | // Creates URL // | |
173 | // /////////// // |
|
172 | // /////////// // | |
174 |
|
173 | |||
175 | auto startDate = dateFormat(dateTime.m_TStart); |
|
174 | auto startDate = dateFormat(dateTime.m_TStart); | |
176 | auto endDate = dateFormat(dateTime.m_TEnd); |
|
175 | auto endDate = dateFormat(dateTime.m_TEnd); | |
177 |
|
176 | |||
178 | auto url = QUrl{QString{AMDA_URL_FORMAT}.arg(startDate, endDate, productId)}; |
|
177 | auto url = QUrl{QString{AMDA_URL_FORMAT}.arg(startDate, endDate, productId)}; | |
179 |
qC |
|
178 | qCInfo(LOG_AmdaProvider()) << tr("TORM AmdaProvider::retrieveData url:") << url; | |
180 | auto tempFile = std::make_shared<QTemporaryFile>(); |
|
179 | auto tempFile = std::make_shared<QTemporaryFile>(); | |
181 |
|
180 | |||
182 | // LAMBDA |
|
181 | // LAMBDA | |
183 | auto httpDownloadFinished = [this, dateTime, tempFile, |
|
182 | auto httpDownloadFinished = [this, dateTime, tempFile, | |
184 | productValueType](QNetworkReply *reply, QUuid dataId) noexcept { |
|
183 | productValueType](QNetworkReply *reply, QUuid dataId) noexcept { | |
185 |
|
184 | |||
186 | // Don't do anything if the reply was abort |
|
185 | // Don't do anything if the reply was abort | |
187 |
if (reply->error() |
|
186 | if (reply->error() == QNetworkReply::NoError) { | |
188 |
|
187 | |||
189 | if (tempFile) { |
|
188 | if (tempFile) { | |
190 | auto replyReadAll = reply->readAll(); |
|
189 | auto replyReadAll = reply->readAll(); | |
191 | if (!replyReadAll.isEmpty()) { |
|
190 | if (!replyReadAll.isEmpty()) { | |
192 | tempFile->write(replyReadAll); |
|
191 | tempFile->write(replyReadAll); | |
193 | } |
|
192 | } | |
194 | tempFile->close(); |
|
193 | tempFile->close(); | |
195 |
|
194 | |||
196 | // Parse results file |
|
195 | // Parse results file | |
197 | if (auto dataSeries |
|
196 | if (auto dataSeries | |
198 | = AmdaResultParser::readTxt(tempFile->fileName(), productValueType)) { |
|
197 | = AmdaResultParser::readTxt(tempFile->fileName(), productValueType)) { | |
199 | emit dataProvided(dataId, dataSeries, dateTime); |
|
198 | emit dataProvided(dataId, dataSeries, dateTime); | |
200 | } |
|
199 | } | |
201 | else { |
|
200 | else { | |
202 | /// @todo ALX : debug |
|
201 | /// @todo ALX : debug | |
203 | } |
|
202 | } | |
204 | } |
|
203 | } | |
205 | qCDebug(LOG_AmdaProvider()) << tr("acquisition requests erase because of finishing") |
|
204 | qCDebug(LOG_AmdaProvider()) << tr("acquisition requests erase because of finishing") | |
206 | << dataId; |
|
205 | << dataId; | |
207 | m_AcqIdToRequestProgressMap.erase(dataId); |
|
206 | m_AcqIdToRequestProgressMap.erase(dataId); | |
208 | } |
|
207 | } | |
|
208 | else { | |||
|
209 | qCCritical(LOG_AmdaProvider()) << tr("httpDownloadFinished ERROR"); | |||
|
210 | } | |||
209 |
|
211 | |||
210 | }; |
|
212 | }; | |
211 | auto httpFinishedLambda |
|
213 | auto httpFinishedLambda | |
212 | = [this, httpDownloadFinished, tempFile](QNetworkReply *reply, QUuid dataId) noexcept { |
|
214 | = [this, httpDownloadFinished, tempFile](QNetworkReply *reply, QUuid dataId) noexcept { | |
213 |
|
215 | |||
214 | // Don't do anything if the reply was abort |
|
216 | // Don't do anything if the reply was abort | |
215 |
if (reply->error() |
|
217 | if (reply->error() == QNetworkReply::NoError) { | |
216 | auto downloadFileUrl = QUrl{QString{reply->readAll()}}; |
|
218 | auto downloadFileUrl = QUrl{QString{reply->readAll()}}; | |
217 |
|
219 | |||
218 |
qC |
|
220 | qCInfo(LOG_AmdaProvider()) | |
219 | << tr("TORM AmdaProvider::retrieveData downloadFileUrl:") << downloadFileUrl; |
|
221 | << tr("TORM AmdaProvider::retrieveData downloadFileUrl:") << downloadFileUrl; | |
220 | // Executes request for downloading file // |
|
222 | // Executes request for downloading file // | |
221 |
|
223 | |||
222 | // Creates destination file |
|
224 | // Creates destination file | |
223 | if (tempFile->open()) { |
|
225 | if (tempFile->open()) { | |
224 | // Executes request and store the request for progression |
|
226 | // Executes request and store the request for progression | |
225 | auto request = std::make_shared<QNetworkRequest>(downloadFileUrl); |
|
227 | auto request = std::make_shared<QNetworkRequest>(downloadFileUrl); | |
226 | updateRequestProgress(dataId, request, 0.0); |
|
228 | updateRequestProgress(dataId, request, 0.0); | |
227 | emit requestConstructed(request, dataId, httpDownloadFinished); |
|
229 | emit requestConstructed(request, dataId, httpDownloadFinished); | |
228 | } |
|
230 | } | |
229 | } |
|
231 | } | |
230 | else { |
|
232 | else { | |
231 | qCDebug(LOG_AmdaProvider()) |
|
233 | qCDebug(LOG_AmdaProvider()) | |
232 | << tr("acquisition requests erase because of aborting") << dataId; |
|
234 | << tr("acquisition requests erase because of aborting") << dataId; | |
|
235 | qCCritical(LOG_AmdaProvider()) << tr("httpFinishedLambda ERROR"); | |||
233 | m_AcqIdToRequestProgressMap.erase(dataId); |
|
236 | m_AcqIdToRequestProgressMap.erase(dataId); | |
234 | } |
|
237 | } | |
235 | }; |
|
238 | }; | |
236 |
|
239 | |||
237 | // //////////////// // |
|
240 | // //////////////// // | |
238 | // Executes request // |
|
241 | // Executes request // | |
239 | // //////////////// // |
|
242 | // //////////////// // | |
240 |
|
243 | |||
241 | auto request = std::make_shared<QNetworkRequest>(url); |
|
244 | auto request = std::make_shared<QNetworkRequest>(url); | |
242 | qCDebug(LOG_AmdaProvider()) << tr("First Request creation") << request.get(); |
|
245 | qCDebug(LOG_AmdaProvider()) << tr("First Request creation") << request.get(); | |
243 | updateRequestProgress(token, request, 0.0); |
|
246 | updateRequestProgress(token, request, 0.0); | |
244 |
|
247 | |||
245 | emit requestConstructed(request, token, httpFinishedLambda); |
|
248 | emit requestConstructed(request, token, httpFinishedLambda); | |
246 | } |
|
249 | } | |
247 |
|
250 | |||
248 | void AmdaProvider::updateRequestProgress(QUuid acqIdentifier, |
|
251 | void AmdaProvider::updateRequestProgress(QUuid acqIdentifier, | |
249 | std::shared_ptr<QNetworkRequest> request, double progress) |
|
252 | std::shared_ptr<QNetworkRequest> request, double progress) | |
250 | { |
|
253 | { | |
251 | auto acqIdToRequestProgressMapIt = m_AcqIdToRequestProgressMap.find(acqIdentifier); |
|
254 | auto acqIdToRequestProgressMapIt = m_AcqIdToRequestProgressMap.find(acqIdentifier); | |
252 | if (acqIdToRequestProgressMapIt != m_AcqIdToRequestProgressMap.end()) { |
|
255 | if (acqIdToRequestProgressMapIt != m_AcqIdToRequestProgressMap.end()) { | |
253 | auto &requestProgressMap = acqIdToRequestProgressMapIt->second; |
|
256 | auto &requestProgressMap = acqIdToRequestProgressMapIt->second; | |
254 | auto requestProgressMapIt = requestProgressMap.find(request); |
|
257 | auto requestProgressMapIt = requestProgressMap.find(request); | |
255 | if (requestProgressMapIt != requestProgressMap.end()) { |
|
258 | if (requestProgressMapIt != requestProgressMap.end()) { | |
256 | requestProgressMapIt->second = progress; |
|
259 | requestProgressMapIt->second = progress; | |
257 | qCDebug(LOG_AmdaProvider()) << tr("updateRequestProgress new progress for request") |
|
260 | qCDebug(LOG_AmdaProvider()) << tr("updateRequestProgress new progress for request") | |
258 | << acqIdentifier << request.get() << progress; |
|
261 | << acqIdentifier << request.get() << progress; | |
259 | } |
|
262 | } | |
260 | else { |
|
263 | else { | |
261 | qCDebug(LOG_AmdaProvider()) << tr("updateRequestProgress new request") << acqIdentifier |
|
264 | qCDebug(LOG_AmdaProvider()) << tr("updateRequestProgress new request") << acqIdentifier | |
262 | << request.get() << progress; |
|
265 | << request.get() << progress; | |
263 | acqIdToRequestProgressMapIt->second.insert(std::make_pair(request, progress)); |
|
266 | acqIdToRequestProgressMapIt->second.insert(std::make_pair(request, progress)); | |
264 | } |
|
267 | } | |
265 | } |
|
268 | } | |
266 | else { |
|
269 | else { | |
267 | qCDebug(LOG_AmdaProvider()) << tr("updateRequestProgress new acqIdentifier") |
|
270 | qCDebug(LOG_AmdaProvider()) << tr("updateRequestProgress new acqIdentifier") | |
268 | << acqIdentifier << request.get() << progress; |
|
271 | << acqIdentifier << request.get() << progress; | |
269 | auto requestProgressMap = std::map<std::shared_ptr<QNetworkRequest>, double>{}; |
|
272 | auto requestProgressMap = std::map<std::shared_ptr<QNetworkRequest>, double>{}; | |
270 | requestProgressMap.insert(std::make_pair(request, progress)); |
|
273 | requestProgressMap.insert(std::make_pair(request, progress)); | |
271 | m_AcqIdToRequestProgressMap.insert( |
|
274 | m_AcqIdToRequestProgressMap.insert( | |
272 | std::make_pair(acqIdentifier, std::move(requestProgressMap))); |
|
275 | std::make_pair(acqIdentifier, std::move(requestProgressMap))); | |
273 | } |
|
276 | } | |
274 | } |
|
277 | } |
General Comments 2
Pull request updated. Auto status change to "Under Review"
Changed commits: * 2 added * 0 removed Changed files: * A core/include/Variable/VariableAcquisitionWorker.h * M core/include/Data/IDataProvider.h * M core/include/Variable/VariableController.h * M core/src/Network/NetworkController.cpp * M core/src/Variable/VariableAcquisitionWorker.cpp * M core/src/Variable/VariableController.cpp * M plugins/amda/src/AmdaProvider.cpp
You need to be logged in to leave comments.
Login now