2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-05-17 22:23:22 +05:30
|
|
|
*
|
|
|
|
* 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
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2013-05-17 22:23:22 +05:30
|
|
|
* 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-29 04:29:35 +05:30
|
|
|
#pragma once
|
2013-05-17 22:23:22 +05:30
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QNetworkReply>
|
2013-10-06 04:43:40 +05:30
|
|
|
#include <memory>
|
2015-02-05 01:40:10 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "BaseVersion.h"
|
|
|
|
#include "BaseVersionList.h"
|
2013-10-06 04:43:40 +05:30
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
2013-06-23 03:04:33 +05:30
|
|
|
class LWJGLVersion;
|
2013-10-06 04:43:40 +05:30
|
|
|
typedef std::shared_ptr<LWJGLVersion> PtrLWJGLVersion;
|
2013-06-23 03:04:33 +05:30
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
class MULTIMC_LOGIC_EXPORT LWJGLVersion : public BaseVersion
|
2013-05-17 22:23:22 +05:30
|
|
|
{
|
2015-02-02 05:39:28 +05:30
|
|
|
public:
|
|
|
|
LWJGLVersion(const QString &name, const QString &url)
|
|
|
|
: m_name(name), m_url(url)
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-02-02 05:39:28 +05:30
|
|
|
virtual QString descriptor()
|
2013-06-23 03:04:33 +05:30
|
|
|
{
|
2015-02-02 05:39:28 +05:30
|
|
|
return m_name;
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|
|
|
|
|
2015-02-02 05:39:28 +05:30
|
|
|
virtual QString name()
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2015-02-02 05:39:28 +05:30
|
|
|
virtual QString typeString() const
|
|
|
|
{
|
|
|
|
return QObject::tr("Upstream");
|
|
|
|
}
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
QString url() const
|
|
|
|
{
|
|
|
|
return m_url;
|
|
|
|
}
|
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
protected:
|
|
|
|
QString m_name;
|
2013-08-07 05:08:18 +05:30
|
|
|
QString m_url;
|
2013-05-17 22:23:22 +05:30
|
|
|
};
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
class MULTIMC_LOGIC_EXPORT LWJGLVersionList : public BaseVersionList
|
2013-05-17 22:23:22 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit LWJGLVersionList(QObject *parent = 0);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
bool isLoaded() override
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
|
|
|
return m_vlist.length() > 0;
|
|
|
|
}
|
2015-02-02 05:39:28 +05:30
|
|
|
virtual const BaseVersionPtr at(int i) const override
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
2015-02-02 05:39:28 +05:30
|
|
|
return m_vlist[i];
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|
2015-02-02 05:39:28 +05:30
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
virtual Task* getLoadTask() override
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
2015-02-02 05:39:28 +05:30
|
|
|
return nullptr;
|
2013-11-04 07:23:05 +05:30
|
|
|
}
|
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
virtual void sortVersions() override {};
|
2015-02-02 05:39:28 +05:30
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
virtual void updateListData(QList< BaseVersionPtr > versions) override {};
|
2015-02-02 05:39:28 +05:30
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
int count() const override
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
|
|
|
return m_vlist.length();
|
|
|
|
}
|
|
|
|
|
2015-09-26 07:34:09 +05:30
|
|
|
virtual QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
virtual int rowCount(const QModelIndex &parent) const override
|
2013-11-04 07:23:05 +05:30
|
|
|
{
|
|
|
|
return count();
|
|
|
|
}
|
2015-09-26 07:34:09 +05:30
|
|
|
virtual int columnCount(const QModelIndex &parent) const override;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
virtual bool isLoading() const;
|
2013-11-04 07:23:05 +05:30
|
|
|
virtual bool errored() const
|
|
|
|
{
|
|
|
|
return m_errored;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual QString lastErrorMsg() const
|
|
|
|
{
|
|
|
|
return m_lastErrorMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
2013-05-17 22:23:22 +05:30
|
|
|
/*!
|
|
|
|
* Loads the version list.
|
|
|
|
* This is done asynchronously. On success, the loadListFinished() signal will
|
2013-11-04 07:23:05 +05:30
|
|
|
* be emitted. The list model will be reset as well, resulting in the modelReset()
|
|
|
|
* signal being emitted. Note that the model will be reset before loadListFinished() is
|
|
|
|
* emitted.
|
2013-05-17 22:23:22 +05:30
|
|
|
* If loading the list failed, the loadListFailed(QString msg),
|
|
|
|
* signal will be emitted.
|
|
|
|
*/
|
|
|
|
virtual void loadList();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
signals:
|
|
|
|
/*!
|
|
|
|
* Emitted when the list either starts or finishes loading.
|
|
|
|
* \param loading Whether or not the list is loading.
|
|
|
|
*/
|
|
|
|
void loadingStateUpdated(bool loading);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
void loadListFinished();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
void loadListFailed(QString msg);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
private:
|
2013-06-23 03:04:33 +05:30
|
|
|
QList<PtrLWJGLVersion> m_vlist;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
QNetworkReply *m_netReply;
|
|
|
|
QNetworkReply *reply;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
bool m_loading;
|
|
|
|
bool m_errored;
|
|
|
|
QString m_lastErrorMsg;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
void failed(QString msg);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
void finished();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-05-17 22:23:22 +05:30
|
|
|
void setLoading(bool loading);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2013-05-17 22:23:22 +05:30
|
|
|
virtual void netRequestComplete();
|
|
|
|
};
|