mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
VFS. CfAPI. Provide detailed error message for leading '#' placeholder update failure.
Signed-off-by: alex-z <blackslayer4@gmail.com>
This commit is contained in:
parent
0364cd29c7
commit
74bef928a3
1 changed files with 30 additions and 8 deletions
|
@ -48,6 +48,24 @@ constexpr auto syncRootFlagsNoCfApiContextMenu = 2;
|
||||||
|
|
||||||
constexpr auto syncRootManagerRegKey = R"(SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SyncRootManager)";
|
constexpr auto syncRootManagerRegKey = R"(SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SyncRootManager)";
|
||||||
|
|
||||||
|
constexpr auto forbiddenLeadingCharacterInPath = "#";
|
||||||
|
|
||||||
|
QString createErrorMessageForPlaceholderUpdateAndCreate(const QString &path, const QString &originalErrorMessage)
|
||||||
|
{
|
||||||
|
const auto pathFromNativeSeparators = QDir::fromNativeSeparators(path);
|
||||||
|
if (!pathFromNativeSeparators.contains(QStringLiteral("/%1").arg(forbiddenLeadingCharacterInPath))) {
|
||||||
|
return originalErrorMessage;
|
||||||
|
}
|
||||||
|
const auto fileComponents = pathFromNativeSeparators.split("/");
|
||||||
|
for (const auto &fileComponent : fileComponents) {
|
||||||
|
if (fileComponent.startsWith(forbiddenLeadingCharacterInPath)) {
|
||||||
|
qCInfo(lcCfApiWrapper) << "Failed to create/update a placeholder for path \"" << pathFromNativeSeparators << "\" that has a leading '#'.";
|
||||||
|
return {(originalErrorMessage + QStringLiteral(": ") + QObject::tr("Paths beginning with '#' character are not supported in VFS mode."))};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return originalErrorMessage;
|
||||||
|
}
|
||||||
|
|
||||||
DWORD sizeToDWORD(size_t size)
|
DWORD sizeToDWORD(size_t size)
|
||||||
{
|
{
|
||||||
return OCC::Utility::convertSizeToDWORD(size);
|
return OCC::Utility::convertSizeToDWORD(size);
|
||||||
|
@ -297,8 +315,9 @@ OCC::Result<OCC::Vfs::ConvertToPlaceholderResult, QString> updatePlaceholderStat
|
||||||
nullptr, 0, CF_UPDATE_FLAG_MARK_IN_SYNC, nullptr, nullptr);
|
nullptr, 0, CF_UPDATE_FLAG_MARK_IN_SYNC, nullptr, nullptr);
|
||||||
|
|
||||||
if (result != S_OK) {
|
if (result != S_OK) {
|
||||||
qCWarning(lcCfApiWrapper) << "Couldn't update placeholder info for" << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage()) << replacesPath;
|
const auto errorMessage = createErrorMessageForPlaceholderUpdateAndCreate(path, "Couldn't update placeholder info");
|
||||||
return { "Couldn't update placeholder info" };
|
qCWarning(lcCfApiWrapper) << errorMessage << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage()) << replacesPath;
|
||||||
|
return errorMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pin state tends to be lost on updates, so restore it every time
|
// Pin state tends to be lost on updates, so restore it every time
|
||||||
|
@ -827,8 +846,9 @@ OCC::Result<OCC::Vfs::ConvertToPlaceholderResult, QString> OCC::CfApiWrapper::de
|
||||||
nullptr);
|
nullptr);
|
||||||
|
|
||||||
if (result != S_OK) {
|
if (result != S_OK) {
|
||||||
qCWarning(lcCfApiWrapper) << "Couldn't update placeholder info for" << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage());
|
const auto errorMessage = createErrorMessageForPlaceholderUpdateAndCreate(path, "Couldn't update placeholder info");
|
||||||
return {"Couldn't update placeholder info"};
|
qCWarning(lcCfApiWrapper) << errorMessage << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage());
|
||||||
|
return errorMessage;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const qint64 result = CfConvertToPlaceholder(handleForPath(path).get(),
|
const qint64 result = CfConvertToPlaceholder(handleForPath(path).get(),
|
||||||
|
@ -839,8 +859,9 @@ OCC::Result<OCC::Vfs::ConvertToPlaceholderResult, QString> OCC::CfApiWrapper::de
|
||||||
nullptr);
|
nullptr);
|
||||||
|
|
||||||
if (result != S_OK) {
|
if (result != S_OK) {
|
||||||
qCWarning(lcCfApiWrapper) << "Couldn't convert to placeholder" << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage());
|
const auto errorMessage = createErrorMessageForPlaceholderUpdateAndCreate(path, "Couldn't convert to placeholder");
|
||||||
return {"Couldn't convert to placeholder"};
|
qCWarning(lcCfApiWrapper) << errorMessage << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage());
|
||||||
|
return errorMessage;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -857,8 +878,9 @@ OCC::Result<OCC::Vfs::ConvertToPlaceholderResult, QString> OCC::CfApiWrapper::co
|
||||||
const qint64 result = CfConvertToPlaceholder(handleForPath(path).get(), fileIdentity.data(), sizeToDWORD(fileIdentitySize), CF_CONVERT_FLAG_MARK_IN_SYNC, nullptr, nullptr);
|
const qint64 result = CfConvertToPlaceholder(handleForPath(path).get(), fileIdentity.data(), sizeToDWORD(fileIdentitySize), CF_CONVERT_FLAG_MARK_IN_SYNC, nullptr, nullptr);
|
||||||
Q_ASSERT(result == S_OK);
|
Q_ASSERT(result == S_OK);
|
||||||
if (result != S_OK) {
|
if (result != S_OK) {
|
||||||
qCCritical(lcCfApiWrapper) << "Couldn't convert to placeholder" << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage());
|
const auto errorMessage = createErrorMessageForPlaceholderUpdateAndCreate(path, "Couldn't convert to placeholder");
|
||||||
return { "Couldn't convert to placeholder" };
|
qCWarning(lcCfApiWrapper) << errorMessage << path << ":" << QString::fromWCharArray(_com_error(result).ErrorMessage());
|
||||||
|
return errorMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto originalInfo = findPlaceholderInfo(replacesPath);
|
const auto originalInfo = findPlaceholderInfo(replacesPath);
|
||||||
|
|
Loading…
Reference in a new issue