PrismLauncher/api/logic/net/NetJob.h

102 lines
2.3 KiB
C
Raw Normal View History

/* Copyright 2013-2017 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2013-07-06 00:50:07 +01:00
#pragma once
#include <QtNetwork>
#include "NetAction.h"
#include "Download.h"
#include "HttpMetaCache.h"
2015-04-26 12:47:14 +01:00
#include "tasks/Task.h"
2015-02-09 00:51:14 +00:00
#include "QObjectPtr.h"
2013-07-06 00:50:07 +01:00
#include "multimc_logic_export.h"
class NetJob;
typedef shared_qobject_ptr<NetJob> NetJobPtr;
2013-09-01 23:25:40 +01:00
class MULTIMC_LOGIC_EXPORT NetJob : public Task
2013-09-01 23:25:40 +01:00
{
Q_OBJECT
public:
2015-04-26 12:47:14 +01:00
explicit NetJob(QString job_name) : Task(), m_job_name(job_name) {}
2014-09-06 17:16:56 +01:00
virtual ~NetJob() {}
void addNetAction(NetActionPtr action);
NetActionPtr operator[](int index)
2013-09-01 23:25:40 +01:00
{
return m_parts[index].download;
}
2014-09-06 17:16:56 +01:00
const NetActionPtr at(const int index)
{
return m_parts[index].download;
2014-09-06 17:16:56 +01:00
}
NetActionPtr first()
2013-09-01 23:25:40 +01:00
{
if (m_parts.size())
return m_parts[0].download;
return NetActionPtr();
2013-09-01 23:25:40 +01:00
}
int size() const
{
return m_parts.size();
2013-09-01 23:25:40 +01:00
}
virtual bool isRunning() const override
{
return m_running;
}
QStringList getFailedFiles();
bool canAbort() const override;
private slots:
void startMoreParts();
public slots:
virtual void executeTask() override;
virtual bool abort() override;
private slots:
void partProgress(qint64 bytesReceived, qint64 bytesTotal);
void partSucceeded();
void partFailed();
void partAborted();
private:
void setPartProgress(int index, qint64 bytesReceived, qint64 bytesTotal);
void connectAction(NetAction * action);
2013-09-01 23:25:40 +01:00
private:
struct part_info
{
NetActionPtr download;
qint64 current_progress = 0;
qint64 total_progress = 1;
int failures = 0;
bool connected = false;
};
QString m_job_name;
QList<part_info> m_parts;
QMap<NetAction *, int> m_partsIndex;
QQueue<int> m_todo;
QSet<int> m_doing;
QSet<int> m_done;
QSet<int> m_failed;
2013-09-09 23:29:25 +01:00
qint64 current_progress = 0;
qint64 total_progress = 0;
bool m_running = false;
bool m_aborted = false;
2013-07-06 00:50:07 +01:00
};