You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libfm-qt-packaging/src/utilities.cpp

368 lines
12 KiB

/*
* Copyright (C) 2013 - 2015 Hong Jen Yee (PCMan) <pcman.tw@gmail.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 "utilities.h"
#include "utilities_p.h"
#include <QApplication>
#include <QClipboard>
#include <QMimeData>
#include <QUrl>
#include <QList>
#include <QStringBuilder>
#include <QMessageBox>
#include "fileoperation.h"
#include <QEventLoop>
#include <pwd.h>
#include <grp.h>
#include <stdlib.h>
#include <glib.h>
namespace Fm {
Fm::FilePathList pathListFromUriList(const char* uriList) {
Fm::FilePathList pathList;
char** uris = g_strsplit_set(uriList, "\r\n", -1);
for(char** uri = uris; *uri; ++uri) {
if(**uri != '\0') {
pathList.push_back(Fm::FilePath::fromUri(*uri));
}
}
g_strfreev(uris);
return pathList;
}
QByteArray pathListToUriList(const Fm::FilePathList& paths) {
QByteArray uriList;
for(auto& path: paths) {
uriList += path.uri().get();
uriList += "\r\n";
}
return uriList;
}
Fm::FilePathList pathListFromQUrls(QList<QUrl> urls) {
Fm::FilePathList pathList;
for(auto it = urls.cbegin(); it != urls.cend(); ++it) {
auto path = Fm::FilePath::fromUri(it->toString().toUtf8().constData());
pathList.push_back(std::move(path));
}
return pathList;
}
std::pair<Fm::FilePathList, bool> parseClipboardData(const QMimeData& data) {
bool isCut = false;
Fm::FilePathList paths;
if(data.hasFormat("x-special/gnome-copied-files")) {
// Gnome, LXDE, and XFCE
QByteArray gnomeData = data.data("x-special/gnome-copied-files");
char* pdata = gnomeData.data();
char* eol = strchr(pdata, '\n');
if(eol) {
*eol = '\0';
isCut = (strcmp(pdata, "cut") == 0 ? true : false);
paths = pathListFromUriList(eol + 1);
}
}
if(paths.empty() && data.hasUrls()) {
// The KDE way
paths = Fm::pathListFromQUrls(data.urls());
QByteArray cut = data.data(QStringLiteral("application/x-kde-cutselection"));
if(!cut.isEmpty() && QChar::fromLatin1(cut.at(0)) == QLatin1Char('1')) {
isCut = true;
}
}
return std::make_pair(paths, isCut);
}
void pasteFilesFromClipboard(const Fm::FilePath& destPath, QWidget* parent) {
QClipboard* clipboard = QApplication::clipboard();
const QMimeData* data = clipboard->mimeData();
Fm::FilePathList paths;
bool isCut = false;
std::tie(paths, isCut) = parseClipboardData(*data);
if(!paths.empty()) {
if(isCut) {
FileOperation::moveFiles(paths, destPath, parent);
clipboard->clear(QClipboard::Clipboard);
}
else {
FileOperation::copyFiles(paths, destPath, parent);
}
}
}
void copyFilesToClipboard(const Fm::FilePathList& files) {
QClipboard* clipboard = QApplication::clipboard();
QMimeData* data = new QMimeData();
QByteArray ba;
auto urilist = pathListToUriList(files);
// Add current pid to trace cut/copy operations to current app
data->setData(QStringLiteral("text/x-libfmqt-pid"), ba.setNum(QCoreApplication::applicationPid()));
// Gnome, LXDE, and XFCE
// Note: the standard text/urilist format uses CRLF for line breaks, but gnome format uses LF only
data->setData("x-special/gnome-copied-files", QByteArray("copy\n") + urilist.replace("\r\n", "\n"));
// The KDE way
data->setData("text/uri-list", urilist);
// data->setData(QStringLiteral("application/x-kde-cutselection"), QByteArrayLiteral("0"));
clipboard->setMimeData(data);
}
void cutFilesToClipboard(const Fm::FilePathList& files) {
QClipboard* clipboard = QApplication::clipboard();
QMimeData* data = new QMimeData();
QByteArray ba;
auto urilist = pathListToUriList(files);
// Add current pid to trace cut/copy operations to current app
data->setData(QStringLiteral("text/x-libfmqt-pid"), ba.setNum(QCoreApplication::applicationPid()));
// Gnome, LXDE, and XFCE
// Note: the standard text/urilist format uses CRLF for line breaks, but gnome format uses LF only
data->setData("x-special/gnome-copied-files", QByteArray("cut\n") + urilist.replace("\r\n", "\n"));
// The KDE way
data->setData("text/uri-list", urilist);
data->setData(QStringLiteral("application/x-kde-cutselection"), QByteArrayLiteral("1"));
clipboard->setMimeData(data);
}
bool isCurrentPidClipboardData(const QMimeData& data) {
QByteArray clip_pid = data.data(QStringLiteral("text/x-libfmqt-pid"));
QByteArray curr_pid;
curr_pid.setNum(QCoreApplication::applicationPid());
return !clip_pid.isEmpty() && clip_pid == curr_pid;
}
void changeFileName(const Fm::FilePath& filePath, const QString& newName, QWidget* parent) {
auto dest = filePath.parent().child(newName.toLocal8Bit().constData());
Fm::GErrorPtr err;
if(!g_file_move(filePath.gfile().get(), dest.gfile().get(),
GFileCopyFlags(G_FILE_COPY_ALL_METADATA |
G_FILE_COPY_NO_FALLBACK_FOR_MOVE |
G_FILE_COPY_NOFOLLOW_SYMLINKS),
nullptr, /* make this cancellable later. */
nullptr, nullptr, &err)) {
QMessageBox::critical(parent, QObject::tr("Error"), err.message());
}
}
void renameFile(std::shared_ptr<const Fm::FileInfo> file, QWidget* parent) {
FilenameDialog dlg(parent);
dlg.setWindowTitle(QObject::tr("Rename File"));
dlg.setLabelText(QObject::tr("Please enter a new name:"));
// FIXME: what's the best way to handle non-UTF8 filename encoding here?
auto old_name = QString::fromStdString(file->name());
dlg.setTextValue(old_name);
if(file->isDir()) { // select filename extension for directories
dlg.setSelectExtension(true);
}
if(dlg.exec() != QDialog::Accepted) {
return;
}
QString new_name = dlg.textValue();
if(new_name == old_name) {
return;
}
changeFileName(file->path(), new_name, parent);
}
// templateFile is a file path used as a template of the new file.
void createFileOrFolder(CreateFileType type, Fm::FilePath parentDir, FmTemplate* templ, QWidget* parent) {
QString defaultNewName;
QString prompt;
QString dialogTitle = type == CreateNewFolder ? QObject::tr("Create Folder")
: QObject::tr("Create File");
switch(type) {
case CreateNewTextFile:
prompt = QObject::tr("Please enter a new file name:");
defaultNewName = QObject::tr("New text file");
break;
case CreateNewFolder:
prompt = QObject::tr("Please enter a new folder name:");
defaultNewName = QObject::tr("New folder");
break;
case CreateWithTemplate: {
FmMimeType* mime = fm_template_get_mime_type(templ);
prompt = QObject::tr("Enter a name for the new %1:").arg(QString::fromUtf8(fm_mime_type_get_desc(mime)));
defaultNewName = QString::fromUtf8(fm_template_get_name(templ, nullptr));
}
break;
}
_retry:
// ask the user to input a file name
bool ok;
QString new_name = QInputDialog::getText(parent, dialogTitle,
prompt,
QLineEdit::Normal,
defaultNewName,
&ok);
if(!ok) {
return;
}
auto dest = parentDir.child(new_name.toLocal8Bit().data());
Fm::GErrorPtr err;
switch(type) {
case CreateNewTextFile: {
Fm::GFileOutputStreamPtr f{g_file_create(dest.gfile().get(), G_FILE_CREATE_NONE, nullptr, &err), false};
if(f) {
g_output_stream_close(G_OUTPUT_STREAM(f.get()), nullptr, nullptr);
}
break;
}
case CreateNewFolder:
g_file_make_directory(dest.gfile().get(), nullptr, &err);
break;
case CreateWithTemplate:
fm_template_create_file(templ, dest.gfile().get(), &err, false);
break;
}
if(err) {
if(err.domain() == G_IO_ERROR && err.code() == G_IO_ERROR_EXISTS) {
err.reset();
goto _retry;
}
QMessageBox::critical(parent, QObject::tr("Error"), err.message());
}
}
uid_t uidFromName(QString name) {
uid_t ret;
if(name.isEmpty()) {
return -1;
}
if(name.at(0).digitValue() != -1) {
ret = uid_t(name.toUInt());
}
else {
struct passwd* pw = getpwnam(name.toLatin1());
// FIXME: use getpwnam_r instead later to make it reentrant
ret = pw ? pw->pw_uid : -1;
}
return ret;
}
QString uidToName(uid_t uid) {
QString ret;
struct passwd* pw = getpwuid(uid);
if(pw) {
ret = pw->pw_name;
}
else {
ret = QString::number(uid);
}
return ret;
}
gid_t gidFromName(QString name) {
gid_t ret;
if(name.isEmpty()) {
return -1;
}
if(name.at(0).digitValue() != -1) {
ret = gid_t(name.toUInt());
}
else {
// FIXME: use getgrnam_r instead later to make it reentrant
struct group* grp = getgrnam(name.toLatin1());
ret = grp ? grp->gr_gid : -1;
}
return ret;
}
QString gidToName(gid_t gid) {
QString ret;
struct group* grp = getgrgid(gid);
if(grp) {
ret = grp->gr_name;
}
else {
ret = QString::number(gid);
}
return ret;
}
int execModelessDialog(QDialog* dlg) {
// FIXME: this does much less than QDialog::exec(). Will this work flawlessly?
QEventLoop loop;
QObject::connect(dlg, &QDialog::finished, &loop, &QEventLoop::quit);
// DialogExec does not seem to be documented in the Qt API doc?
// However, in the source code of QDialog::exec(), it's used so let's use it too.
dlg->show();
(void)loop.exec(QEventLoop::DialogExec);
return dlg->result();
}
// check if GVFS can support this uri scheme (lower case)
// NOTE: this does not work reliably due to some problems in gio/gvfs and causes bug lxde/lxqt#512
// https://github.com/lxde/lxqt/issues/512
// Use uriExists() whenever possible.
bool isUriSchemeSupported(const char* uriScheme) {
const gchar* const* schemes = g_vfs_get_supported_uri_schemes(g_vfs_get_default());
if(Q_UNLIKELY(schemes == nullptr)) {
return false;
}
for(const gchar * const* scheme = schemes; *scheme; ++scheme)
if(strcmp(uriScheme, *scheme) == 0) {
return true;
}
return false;
}
// check if the URI exists.
// NOTE: this is a blocking call possibly involving I/O.
// So it's better to use it in limited cases, like checking trash:// or computer://.
// Avoid calling this on a slow filesystem.
// Checking "network:///" is very slow, for example.
bool uriExists(const char* uri) {
GFile* gf = g_file_new_for_uri(uri);
bool ret = (bool)g_file_query_exists(gf, nullptr);
g_object_unref(gf);
return ret;
}
QString formatFileSize(uint64_t size, bool useSI) {
Fm::CStrPtr str{g_format_size_full(size, useSI ? G_FORMAT_SIZE_DEFAULT : G_FORMAT_SIZE_IEC_UNITS)};
return QString(str.get());
}
} // namespace Fm