mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
155 lines
4.6 KiB
C++
155 lines
4.6 KiB
C++
#include "UpdateController.h"
|
|
|
|
UpdateController::UpdateController(DataParser *parser,SendSystem *sendSystem, QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
this->dataParser = parser;
|
|
this->sendSystem = sendSystem;
|
|
applicationFolderPath = QDir::currentPath() + applicationFolderName;
|
|
}
|
|
|
|
void UpdateController::initialize(MainWindow *mainWindow,VersionContainer *versionContainer)
|
|
{
|
|
this->versionContainer = versionContainer;
|
|
connect(this,&UpdateController::sigUpdateComplete,mainWindow,&MainWindow::showCompleteDialogBox);
|
|
}
|
|
|
|
void UpdateController::calculateCommonHash()
|
|
{
|
|
appDataList.clear();
|
|
appDataList = calculateHash(applicationFolderPath,"StreamingAssets");
|
|
calculateStreamingHash();
|
|
appDataList.append(streamingDataList);
|
|
dataParser->createFileDataList(appDataList,fullStaticDataFolderName + hashFilename);
|
|
qDebug() << "UpdateController threadID " << QThread::currentThreadId();
|
|
}
|
|
|
|
void UpdateController::calculateStreamingHash()
|
|
{
|
|
streamingDataList.clear();
|
|
streamingDataList = calculateHash(QDir::currentPath() + streamingAssetsPath,"");
|
|
std::sort(streamingDataList.begin(),streamingDataList.end());
|
|
dataParser->createFileDataList(streamingDataList,streamingHashFilename);
|
|
}
|
|
|
|
QList<FileData> UpdateController::calculateHash(QString path,QString ignoreName)
|
|
{
|
|
qDebug() << "Try calculate";
|
|
|
|
if(!QDir(path).exists())
|
|
{
|
|
QDir().mkdir(path);
|
|
}
|
|
|
|
QList<FileData> *hashes = new QList<FileData>;
|
|
|
|
QStringList filter;
|
|
filter << "*";
|
|
QString hashString;
|
|
|
|
QDirIterator dirIterator(path,filter, QDir::AllEntries | QDir::NoDotAndDotDot, QDirIterator::Subdirectories);
|
|
|
|
while (dirIterator.hasNext())
|
|
{
|
|
QFileInfo fileInfo(dirIterator.next());
|
|
FileData currentFile;
|
|
QString fileName = fileInfo.fileName();
|
|
if(fileInfo.isDir() && !fileInfo.fileName().startsWith(".") && fileInfo.fileName() != "RRJLoader")
|
|
{
|
|
currentFile.path = Tools::createLocalPath(fileInfo.absoluteFilePath());
|
|
currentFile.hash = "FOLDER";
|
|
|
|
if(!hashes->contains(currentFile))
|
|
{
|
|
hashes->push_back(currentFile);
|
|
}
|
|
}
|
|
}
|
|
|
|
QDirIterator fileIterator(path,filter,QDir::Files | QDir::NoDotAndDotDot,QDirIterator::Subdirectories);
|
|
|
|
while (fileIterator.hasNext())
|
|
{
|
|
fileIterator.next();
|
|
QFileInfo fileInfo = fileIterator.fileInfo();
|
|
FileData currentFile;
|
|
QFile file(fileInfo.absoluteFilePath());
|
|
|
|
quint64 fileSize = file.size(); //буффер для хэширования крупных файлов
|
|
const quint64 bufferSize = 10240;
|
|
|
|
if(fileInfo.isHidden()) continue;
|
|
if(ignoreName != "" && fileInfo.path().contains(ignoreName)) continue;
|
|
|
|
if(fileInfo.isFile() && file.open(QIODevice::ReadOnly))
|
|
{
|
|
char buffer[bufferSize];
|
|
int bytesRead;
|
|
int readSize = qMin(fileSize,bufferSize);
|
|
|
|
QCryptographicHash hash(QCryptographicHash::Md5);
|
|
|
|
while(readSize > 0 && (bytesRead = file.read(buffer,readSize)) > 0)
|
|
{
|
|
fileSize -= bytesRead;
|
|
hash.addData(buffer,bytesRead);
|
|
readSize = qMin(fileSize,bufferSize);
|
|
}
|
|
|
|
hashString = QString(hash.result().toHex());
|
|
currentFile.path = Tools::createLocalPath(fileInfo.absoluteFilePath());
|
|
currentFile.hash = hashString;
|
|
hashes->push_back(currentFile);
|
|
file.close();
|
|
}
|
|
}
|
|
|
|
return *hashes;
|
|
}
|
|
|
|
void UpdateController::checkCanUpdate()
|
|
{
|
|
QByteArray checkUpdate = dataParser->xmlAnswer_notify("CANCHANGE");
|
|
sendSystem->sendXMLAnswer(checkUpdate);
|
|
}
|
|
|
|
void UpdateController::updateFilesOnServer(QList<FileData> *fileSendList){
|
|
|
|
QListIterator<FileData> serverIterator(*fileSendList);
|
|
try {
|
|
|
|
while(serverIterator.hasNext())
|
|
{
|
|
FileData data = serverIterator.next();
|
|
|
|
if (data.hash == "FOLDER")
|
|
{
|
|
sendSystem->sendFolderBlock(data.path);
|
|
}
|
|
else
|
|
{
|
|
QString fullPath = Tools::createReceiveFullPath(data.path,versionContainer->getServerVersionData());
|
|
sendSystem->sendFileBlockWithVersion(fullPath,data.path);
|
|
}
|
|
|
|
}
|
|
|
|
calculateCommonHash();
|
|
|
|
sendSystem->sendFinish();
|
|
|
|
emit sigUpdateComplete(true);
|
|
}
|
|
catch (...)
|
|
{
|
|
emit sigUpdateComplete(false);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
UpdateController::~UpdateController()
|
|
{
|
|
|
|
}
|