2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-11-04 07:23:05 +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
|
|
|
|
*
|
|
|
|
* 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-08-14 11:43:41 +05:30
|
|
|
|
|
|
|
#include "ModList.h"
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2013-08-19 00:22:17 +05:30
|
|
|
#include <QMimeData>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QUuid>
|
2013-12-26 09:44:32 +05:30
|
|
|
#include <QString>
|
2013-08-25 05:02:42 +05:30
|
|
|
#include <QFileSystemWatcher>
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2016-04-04 05:00:37 +05:30
|
|
|
ModList::ModList(const QString &dir) : QAbstractListModel(), m_dir(dir)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2015-10-05 05:17:27 +05:30
|
|
|
FS::ensureFolderPathExists(m_dir.absolutePath());
|
2013-10-10 02:46:10 +05:30
|
|
|
m_dir.setFilter(QDir::Readable | QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs |
|
|
|
|
QDir::NoSymLinks);
|
2013-12-26 09:44:32 +05:30
|
|
|
m_dir.setSorting(QDir::Name | QDir::IgnoreCase | QDir::LocaleAware);
|
2013-08-25 05:02:42 +05:30
|
|
|
m_watcher = new QFileSystemWatcher(this);
|
|
|
|
is_watching = false;
|
2013-10-10 02:46:10 +05:30
|
|
|
connect(m_watcher, SIGNAL(directoryChanged(QString)), this,
|
|
|
|
SLOT(directoryChanged(QString)));
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
void ModList::startWatching()
|
|
|
|
{
|
2015-05-12 02:20:35 +05:30
|
|
|
update();
|
2013-08-25 05:02:42 +05:30
|
|
|
is_watching = m_watcher->addPath(m_dir.absolutePath());
|
2013-10-10 02:46:10 +05:30
|
|
|
if (is_watching)
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Started watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
else
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Failed to start watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ModList::stopWatching()
|
|
|
|
{
|
|
|
|
is_watching = !m_watcher->removePath(m_dir.absolutePath());
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!is_watching)
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Stopped watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
else
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << "Failed to stop watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
2014-02-06 14:02:44 +05:30
|
|
|
void ModList::internalSort(QList<Mod> &what)
|
|
|
|
{
|
2015-01-03 23:20:03 +05:30
|
|
|
auto predicate = [](const Mod &left, const Mod &right)
|
2014-02-06 14:02:44 +05:30
|
|
|
{
|
|
|
|
if (left.name() == right.name())
|
|
|
|
{
|
2014-07-09 02:35:33 +05:30
|
|
|
return left.mmc_id().localeAwareCompare(right.mmc_id()) < 0;
|
2014-02-06 14:02:44 +05:30
|
|
|
}
|
2014-07-09 02:35:33 +05:30
|
|
|
return left.name().localeAwareCompare(right.name()) < 0;
|
2014-02-06 14:02:44 +05:30
|
|
|
};
|
|
|
|
std::sort(what.begin(), what.end(), predicate);
|
|
|
|
}
|
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
bool ModList::update()
|
|
|
|
{
|
|
|
|
if (!isValid())
|
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
QList<Mod> orderedMods;
|
2013-08-19 00:22:17 +05:30
|
|
|
QList<Mod> newMods;
|
2013-08-20 05:59:36 +05:30
|
|
|
m_dir.refresh();
|
2013-08-19 00:22:17 +05:30
|
|
|
auto folderContents = m_dir.entryInfoList();
|
2013-12-26 09:44:32 +05:30
|
|
|
bool orderOrStateChanged = false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
// if there are any untracked files...
|
|
|
|
if (folderContents.size())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
// the order surely changed!
|
|
|
|
for (auto entry : folderContents)
|
|
|
|
{
|
|
|
|
newMods.append(Mod(entry));
|
|
|
|
}
|
2014-02-06 14:02:44 +05:30
|
|
|
internalSort(newMods);
|
2013-12-26 09:44:32 +05:30
|
|
|
orderedMods.append(newMods);
|
|
|
|
orderOrStateChanged = true;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
// otherwise, if we were already tracking some mods
|
|
|
|
else if (mods.size())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
// if the number doesn't match, order changed.
|
|
|
|
if (mods.size() != orderedMods.size())
|
|
|
|
orderOrStateChanged = true;
|
|
|
|
// if it does match, compare the mods themselves
|
|
|
|
else
|
|
|
|
for (int i = 0; i < mods.size(); i++)
|
2013-10-10 02:46:10 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
if (!mods[i].strongCompare(orderedMods[i]))
|
|
|
|
{
|
|
|
|
orderOrStateChanged = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
}
|
2013-08-19 00:22:17 +05:30
|
|
|
beginResetModel();
|
2013-12-26 09:44:32 +05:30
|
|
|
mods.swap(orderedMods);
|
2013-08-19 00:22:17 +05:30
|
|
|
endResetModel();
|
2016-04-04 05:00:37 +05:30
|
|
|
if (orderOrStateChanged)
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
|
|
|
emit changed();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
void ModList::directoryChanged(QString path)
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
bool ModList::isValid()
|
|
|
|
{
|
|
|
|
return m_dir.exists() && m_dir.isReadable();
|
|
|
|
}
|
|
|
|
|
2016-04-04 05:00:37 +05:30
|
|
|
bool ModList::installMod(const QString &filename)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2015-12-26 07:50:41 +05:30
|
|
|
// NOTE: fix for GH-1178: remove trailing slash to avoid issues with using the empty result of QFileInfo::fileName
|
|
|
|
QFileInfo fileinfo(FS::NormalizePath(filename));
|
|
|
|
|
|
|
|
qDebug() << "installing: " << fileinfo.absoluteFilePath();
|
|
|
|
|
2016-04-04 05:00:37 +05:30
|
|
|
if (!fileinfo.exists() || !fileinfo.isReadable())
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-26 07:50:41 +05:30
|
|
|
Mod m(fileinfo);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!m.valid())
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
auto type = m.type();
|
2013-10-10 02:46:10 +05:30
|
|
|
if (type == Mod::MOD_UNKNOWN)
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-12-29 06:58:24 +05:30
|
|
|
if (type == Mod::MOD_SINGLEFILE || type == Mod::MOD_ZIPFILE || type == Mod::MOD_LITEMOD)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2015-12-26 07:50:41 +05:30
|
|
|
QString newpath = FS::PathCombine(m_dir.path(), fileinfo.fileName());
|
|
|
|
if (!QFile::copy(fileinfo.filePath(), newpath))
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
|
|
|
m.repath(newpath);
|
2015-01-03 23:20:03 +05:30
|
|
|
update();
|
2013-08-14 11:43:41 +05:30
|
|
|
return true;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
else if (type == Mod::MOD_FOLDER)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2015-12-26 07:50:41 +05:30
|
|
|
QString from = fileinfo.filePath();
|
|
|
|
QString to = FS::PathCombine(m_dir.path(), fileinfo.fileName());
|
2015-10-10 09:25:55 +05:30
|
|
|
if (!FS::copy(from, to)())
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-08-19 00:22:17 +05:30
|
|
|
m.repath(to);
|
2015-01-03 23:20:03 +05:30
|
|
|
update();
|
2013-08-14 11:43:41 +05:30
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::deleteMod(int index)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (index >= mods.size() || index < 0)
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
Mod &m = mods[index];
|
|
|
|
if (m.destroy())
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::deleteMods(int first, int last)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
for (int i = first; i <= last; i++)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
Mod &m = mods[i];
|
2013-08-21 04:37:54 +05:30
|
|
|
m.destroy();
|
|
|
|
}
|
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-08-05 01:24:25 +05:30
|
|
|
bool ModList::deleteMods(const QVector<int> &indexes)
|
|
|
|
{
|
|
|
|
for (auto i: indexes)
|
|
|
|
{
|
|
|
|
Mod &m = mods[i];
|
|
|
|
m.destroy();
|
|
|
|
}
|
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
int ModList::columnCount(const QModelIndex &parent) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
return 3;
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
QVariant ModList::data(const QModelIndex &index, int role) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!index.isValid())
|
2013-08-17 17:10:51 +05:30
|
|
|
return QVariant();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
int row = index.row();
|
|
|
|
int column = index.column();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
|
|
|
if (row < 0 || row >= mods.size())
|
2013-08-17 17:10:51 +05:30
|
|
|
return QVariant();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
switch (role)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
case Qt::DisplayRole:
|
2014-04-12 23:44:09 +05:30
|
|
|
switch (column)
|
2013-12-26 09:44:32 +05:30
|
|
|
{
|
|
|
|
case NameColumn:
|
|
|
|
return mods[row].name();
|
|
|
|
case VersionColumn:
|
|
|
|
return mods[row].version();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
return mods[row].mmc_id();
|
|
|
|
|
|
|
|
case Qt::CheckStateRole:
|
2014-04-12 23:44:09 +05:30
|
|
|
switch (column)
|
2013-12-26 09:44:32 +05:30
|
|
|
{
|
|
|
|
case ActiveColumn:
|
2014-02-06 14:02:44 +05:30
|
|
|
return mods[row].enabled() ? Qt::Checked : Qt::Unchecked;
|
2013-12-26 09:44:32 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
bool ModList::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
|
|
{
|
|
|
|
if (index.row() < 0 || index.row() >= rowCount(index) || !index.isValid())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (role == Qt::CheckStateRole)
|
|
|
|
{
|
|
|
|
auto &mod = mods[index.row()];
|
|
|
|
if (mod.enable(!mod.enabled()))
|
|
|
|
{
|
|
|
|
emit dataChanged(index, index);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
switch (role)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
case Qt::DisplayRole:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
|
|
|
return QString();
|
|
|
|
case NameColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("Name");
|
2013-12-26 09:44:32 +05:30
|
|
|
case VersionColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("Version");
|
2013-12-26 09:44:32 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("Is the mod enabled?");
|
2013-12-26 09:44:32 +05:30
|
|
|
case NameColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("The name of the mod.");
|
2013-12-26 09:44:32 +05:30
|
|
|
case VersionColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("The version of the mod.");
|
2013-12-26 09:44:32 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
Qt::ItemFlags ModList::flags(const QModelIndex &index) const
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
Qt::ItemFlags defaultFlags = QAbstractListModel::flags(index);
|
2013-08-19 00:22:17 +05:30
|
|
|
if (index.isValid())
|
2016-05-16 02:51:33 +05:30
|
|
|
return Qt::ItemIsUserCheckable | Qt::ItemIsDropEnabled |
|
|
|
|
defaultFlags;
|
2013-08-19 00:22:17 +05:30
|
|
|
else
|
2016-05-16 02:51:33 +05:30
|
|
|
return Qt::ItemIsDropEnabled | defaultFlags;
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::DropActions ModList::supportedDropActions() const
|
|
|
|
{
|
|
|
|
// copy from outside, move from within and other mod lists
|
|
|
|
return Qt::CopyAction | Qt::MoveAction;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList ModList::mimeTypes() const
|
|
|
|
{
|
|
|
|
QStringList types;
|
|
|
|
types << "text/uri-list";
|
|
|
|
return types;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ModList::dropMimeData(const QMimeData* data, Qt::DropAction action, int, int, const QModelIndex&)
|
|
|
|
{
|
|
|
|
if (action == Qt::IgnoreAction)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if the action is supported
|
|
|
|
if (!data || !(action & supportedDropActions()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// files dropped from outside?
|
|
|
|
if (data->hasUrls())
|
|
|
|
{
|
|
|
|
bool was_watching = is_watching;
|
|
|
|
bool added = false;
|
|
|
|
if (was_watching)
|
|
|
|
{
|
|
|
|
stopWatching();
|
|
|
|
}
|
|
|
|
auto urls = data->urls();
|
|
|
|
for (auto url : urls)
|
|
|
|
{
|
|
|
|
// only local files may be dropped...
|
|
|
|
if (!url.isLocalFile())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// TODO: implement not only copy, but also move
|
|
|
|
if (installMod(url.toLocalFile()))
|
|
|
|
{
|
|
|
|
added = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(added)
|
|
|
|
{
|
|
|
|
// re-sort the list
|
|
|
|
beginResetModel();
|
|
|
|
internalSort(mods);
|
|
|
|
endResetModel();
|
|
|
|
}
|
|
|
|
if (was_watching)
|
|
|
|
{
|
|
|
|
startWatching();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|