1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2025-04-13 13:15:43 +02:00
Nextcloud-Desktop/src/common/vfs.cpp
Christian Kamm dcf34316fd
Vfs: Add 'availability', a simplified, user-facing pin state
The idea is that the user's question is "is this folder's data available
offline?" and not "does this folder have AlwaysLocal pin state?".
The the answers to the two questions can differ: an always-local
folder can have subitems that are not always-local and are dehydrated.

The new availability enum intends to describe the answer to the user's
actual question and can be derived from pin states. If pin states aren't
stored in the database the way of calculating availability will depend
on the vfs plugin.
2020-12-15 10:58:47 +01:00

227 lines
6.6 KiB
C++

/*
* Copyright (C) by Dominik Schmidt <dschmidt@owncloud.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "vfs.h"
#include "plugin.h"
#include "version.h"
#include "syncjournaldb.h"
#include <QPluginLoader>
#include <QLoggingCategory>
using namespace OCC;
Vfs::Vfs(QObject* parent)
: QObject(parent)
{
}
Vfs::~Vfs() = default;
QString Vfs::modeToString(Mode mode)
{
// Note: Strings are used for config and must be stable
switch (mode) {
case Off:
return QStringLiteral("off");
case WithSuffix:
return QStringLiteral("suffix");
case WindowsCfApi:
return QStringLiteral("wincfapi");
}
return QStringLiteral("off");
}
Optional<Vfs::Mode> Vfs::modeFromString(const QString &str)
{
// Note: Strings are used for config and must be stable
if (str == "off") {
return Off;
} else if (str == "suffix") {
return WithSuffix;
} else if (str == "wincfapi") {
return WindowsCfApi;
}
return {};
}
void Vfs::start(const VfsSetupParams &params)
{
_setupParams = params;
startImpl(params);
}
bool Vfs::setPinStateInDb(const QString &folderPath, PinState state)
{
auto path = folderPath.toUtf8();
_setupParams.journal->internalPinStates().wipeForPathAndBelow(path);
_setupParams.journal->internalPinStates().setForPath(path, state);
return true;
}
Optional<PinState> Vfs::pinStateInDb(const QString &folderPath)
{
return _setupParams.journal->internalPinStates().effectiveForPath(folderPath.toUtf8());
}
Optional<VfsItemAvailability> Vfs::availabilityInDb(const QString &folderPath, const QString &pinPath)
{
auto pin = _setupParams.journal->internalPinStates().effectiveForPathRecursive(pinPath.toUtf8());
// not being able to retrieve the pin state isn't too bad
Optional<bool> hasDehydrated = _setupParams.journal->hasDehydratedFiles(folderPath.toUtf8());
if (!hasDehydrated)
return {};
if (*hasDehydrated) {
if (pin && *pin == PinState::OnlineOnly)
return VfsItemAvailability::OnlineOnly;
else
return VfsItemAvailability::SomeDehydrated;
} else {
if (pin && *pin == PinState::AlwaysLocal)
return VfsItemAvailability::AlwaysLocal;
else
return VfsItemAvailability::AllHydrated;
}
}
VfsOff::VfsOff(QObject *parent)
: Vfs(parent)
{
}
VfsOff::~VfsOff() = default;
static QString modeToPluginName(Vfs::Mode mode)
{
if (mode == Vfs::WithSuffix)
return "suffix";
if (mode == Vfs::WindowsCfApi)
return "win";
return QString();
}
Q_LOGGING_CATEGORY(lcPlugin, "plugins", QtInfoMsg)
bool OCC::isVfsPluginAvailable(Vfs::Mode mode)
{
if (mode == Vfs::Off)
return true;
auto name = modeToPluginName(mode);
if (name.isEmpty())
return false;
auto pluginPath = pluginFileName("vfs", name);
QPluginLoader loader(pluginPath);
auto basemeta = loader.metaData();
if (basemeta.isEmpty() || !basemeta.contains("IID")) {
qCDebug(lcPlugin) << "Plugin doesn't exist" << pluginPath;
return false;
}
if (basemeta["IID"].toString() != "org.owncloud.PluginFactory") {
qCWarning(lcPlugin) << "Plugin has wrong IID" << pluginPath << basemeta["IID"];
return false;
}
auto metadata = basemeta["MetaData"].toObject();
if (metadata["type"].toString() != "vfs") {
qCWarning(lcPlugin) << "Plugin has wrong type" << pluginPath << metadata["type"];
return false;
}
if (metadata["version"].toString() != MIRALL_VERSION_STRING) {
qCWarning(lcPlugin) << "Plugin has wrong version" << pluginPath << metadata["version"];
return false;
}
// Attempting to load the plugin is essential as it could have dependencies that
// can't be resolved and thus not be available after all.
if (!loader.load()) {
qCWarning(lcPlugin) << "Plugin failed to load:" << loader.errorString();
return false;
}
return true;
}
Vfs::Mode OCC::bestAvailableVfsMode()
{
if (isVfsPluginAvailable(Vfs::WindowsCfApi)) {
return Vfs::WindowsCfApi;
} else if (isVfsPluginAvailable(Vfs::WithSuffix)) {
return Vfs::WithSuffix;
}
return Vfs::Off;
}
std::unique_ptr<Vfs> OCC::createVfsFromPlugin(Vfs::Mode mode)
{
if (mode == Vfs::Off)
return std::unique_ptr<Vfs>(new VfsOff);
auto name = modeToPluginName(mode);
if (name.isEmpty())
return nullptr;
auto pluginPath = pluginFileName("vfs", name);
if (!isVfsPluginAvailable(mode)) {
qCWarning(lcPlugin) << "Could not load plugin: not existant or bad metadata" << pluginPath;
return nullptr;
}
QPluginLoader loader(pluginPath);
auto plugin = loader.instance();
if (!plugin) {
qCWarning(lcPlugin) << "Could not load plugin" << pluginPath << loader.errorString();
return nullptr;
}
auto factory = qobject_cast<PluginFactory *>(plugin);
if (!factory) {
qCWarning(lcPlugin) << "Plugin" << pluginPath << "does not implement PluginFactory";
return nullptr;
}
auto vfs = std::unique_ptr<Vfs>(qobject_cast<Vfs *>(factory->create(nullptr)));
if (!vfs) {
qCWarning(lcPlugin) << "Plugin" << pluginPath << "does not create a Vfs instance";
return nullptr;
}
qCInfo(lcPlugin) << "Created VFS instance from plugin" << pluginPath;
return vfs;
}
QString OCC::vfsItemAvailabilityToString(VfsItemAvailability availability, bool forFolder)
{
switch(availability) {
case VfsItemAvailability::AlwaysLocal:
return Vfs::tr("Always available locally");
case VfsItemAvailability::AllHydrated:
return Vfs::tr("Available locally");
case VfsItemAvailability::SomeDehydrated:
if (forFolder) {
return Vfs::tr("Some available online only");
} else {
return Vfs::tr("Available online only");
}
case VfsItemAvailability::OnlineOnly:
return Vfs::tr("Available online only");
}
ENFORCE(false);
}