refs #452, data readers / writers for DB (via web services)

* flags for readers (which reader is reading specific entities etc.)
* web data services: bundling multiple readers (webdataservices) and implementing IWebDataReaderProvider
* readers now able to read single entities
This commit is contained in:
Klaus Basan
2015-09-23 19:05:31 +02:00
committed by Mathew Sutcliffe
parent 33330394a9
commit 07c6370819
15 changed files with 1538 additions and 586 deletions

View File

@@ -0,0 +1,135 @@
/* Copyright (C) 2015
* swift project Community / Contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
#include "databasewriter.h"
#include "blackmisc/logmessage.h"
#include "blackmisc/datastoreutility.h"
#include "blackmisc/networkutils.h"
#include <QUrlQuery>
#include <QJsonDocument>
#include <QHttpPart>
#include <QHttpMultiPart>
using namespace BlackMisc;
using namespace BlackMisc::Simulation;
namespace BlackCore
{
CDatabaseWriter::CDatabaseWriter(const QString &protocol, const QString &server, const QString &baseUrl, QObject *parent) :
QObject(parent),
m_modelUrl(getModelWriteUrl(protocol, server, baseUrl))
{
this->m_networkManager = new QNetworkAccessManager(this);
this->connect(this->m_networkManager, &QNetworkAccessManager::finished, this, &CDatabaseWriter::ps_postResponse);
}
CStatusMessageList CDatabaseWriter::asyncWriteModel(const CAircraftModel &model)
{
CStatusMessageList msg;
if (m_shutdown)
{
msg.push_back(CStatusMessage(CStatusMessage::SeverityWarning, "Database writer shuts down"));
return msg;
}
if (m_pendingReply)
{
msg.push_back(CStatusMessage(CStatusMessage::SeverityWarning, "Another write operation in progress"));
return msg;
}
QUrl url(m_modelUrl);
QNetworkRequest request(url);
const QByteArray jsonData(QJsonDocument(model.toJson()).toJson(QJsonDocument::Compact));
QHttpMultiPart *multiPart = new QHttpMultiPart(QHttpMultiPart::FormDataType);
QHttpPart textPart;
QString name("form-data; name=\"swiftjson\"");
textPart.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant(name));
textPart.setBody(jsonData);
multiPart->append(textPart);
if (m_phpDebug)
{
QHttpPart textPartDebug;
textPartDebug.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant("form-data; name=\"XDEBUG_SESSION_START\""));
textPartDebug.setBody(QString("ECLIPSE_DBGP").toUtf8());
multiPart->append(textPartDebug);
}
m_pendingReply = this->m_networkManager->post(request, multiPart);
multiPart->setParent(m_pendingReply);
return msg;
}
void CDatabaseWriter::gracefulShutdown()
{
m_shutdown = true;
if (m_pendingReply)
{
m_pendingReply->abort();
m_pendingReply = nullptr;
}
}
void CDatabaseWriter::ps_postResponse(QNetworkReply *nwReplyPtr)
{
QScopedPointer<QNetworkReply, QScopedPointerDeleteLater> nwReply(nwReplyPtr);
m_pendingReply = nullptr;
if (m_shutdown)
{
nwReply->abort();
return;
}
if (nwReply->error() == QNetworkReply::NoError)
{
const QString dataFileData(nwReply->readAll().trimmed());
nwReply->close(); // close asap
if (dataFileData.isEmpty())
{
CLogMessage(this).error("No response data");
return;
}
CStatusMessageList msgs;
CVariant id;
bool success = CDatastoreUtility::parseSwiftWriteResponse(dataFileData, msgs, id);
CLogMessage(this).preformatted(msgs);
Q_UNUSED(success);
}
else
{
QString error = nwReply->errorString();
nwReply->close(); // close asap
CLogMessage(this).error(error);
}
}
QString CDatabaseWriter::getModelWriteUrl(const QString &protocol, const QString &server, const QString &baseUrl)
{
return CNetworkUtils::buildUrl(protocol, server, baseUrl, "service/swiftwritemodel.php");
}
QList<QByteArray> CDatabaseWriter::splitData(const QByteArray &data, int size)
{
if (data.size() <= size) { return QList<QByteArray>({data}); }
int pos = 0, arrsize = data.size();
QList<QByteArray> arrays;
while (pos < arrsize)
{
QByteArray arr = data.mid(pos, size);
arrays << arr;
pos += arr.size();
}
return arrays;
}
} // namespace