- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
谁能给我一个在 Qt 中使用带有进度回调的 CopyFileEx 的工作示例?
我发现了一些划痕并试图合并它但没有成功。我什至无法将 CopyProgressRoutine 函数作为 CopyFileEx 的参数传递,因为我无法声明指向该函数的指针。
我不太擅长从其他 IDE 移植代码,所以我需要你的帮助。
最佳答案
下面的代码是一个完整的、独立的示例。它在 Qt 5 和 Qt 4 下工作,并使用 C++11(例如 Visual Studio 2015 及更新版本)。
// https://github.com/KubaO/stackoverflown/tree/master/questions/copyfileex-19136936
#include <QtGui>
#include <QtConcurrent>
#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
#include <QtWidgets>
#endif
#include <windows.h>
#include <comdef.h>
//#define _WIN32_WINNT _WIN32_WINNT_WIN7
static QString toString(HRESULT hr) {
_com_error err{hr};
return QStringLiteral("Error 0x%1: %2").arg((quint32)hr, 8, 16, QLatin1Char('0'))
.arg(err.ErrorMessage());
}
static QString getLastErrorMsg() {
return toString(HRESULT_FROM_WIN32(GetLastError()));
}
static QString progressMessage(ULONGLONG part, ULONGLONG whole) {
return QStringLiteral("Transferred %1 of %2 bytes.")
.arg(part).arg(whole);
}
class Copier : public QObject {
Q_OBJECT
BOOL m_stop;
QMutex m_pauseMutex;
QAtomicInt m_pause;
QWaitCondition m_pauseWait;
QString m_src, m_dst;
ULONGLONG m_lastPart, m_lastWhole;
void newStatus(ULONGLONG part, ULONGLONG whole) {
if (part != m_lastPart || whole != m_lastWhole) {
m_lastPart = part;
m_lastWhole = whole;
emit newStatus(progressMessage(part, whole));
}
}
#if _WIN32_WINNT >= _WIN32_WINNT_WIN8
static COPYFILE2_MESSAGE_ACTION CALLBACK copyProgress2(
const COPYFILE2_MESSAGE *message, PVOID context);
#else
static DWORD CALLBACK copyProgress(
LARGE_INTEGER totalSize, LARGE_INTEGER totalTransferred,
LARGE_INTEGER streamSize, LARGE_INTEGER streamTransferred,
DWORD streamNo, DWORD callbackReason, HANDLE src, HANDLE dst,
LPVOID data);
#endif
public:
Copier(const QString & src, const QString & dst, QObject * parent = nullptr) :
QObject{parent}, m_src{src}, m_dst{dst} {}
Q_SIGNAL void newStatus(const QString &);
Q_SIGNAL void finished();
/// This method is thread-safe
Q_SLOT void copy();
/// This method is thread-safe
Q_SLOT void stop() {
resume();
m_stop = TRUE;
}
/// This method is thread-safe
Q_SLOT void pause() {
m_pause = true;
}
/// This method is thread-safe
Q_SLOT void resume() {
if (m_pause)
m_pauseWait.notify_one();
m_pause = false;
}
~Copier() override { stop(); }
};
#if _WIN32_WINNT >= _WIN32_WINNT_WIN8
void Copier::copy() {
m_lastPart = m_lastWhole = {};
m_stop = FALSE;
m_pause = false;
QtConcurrent::run([this]{
COPYFILE2_EXTENDED_PARAMETERS params{
sizeof(COPYFILE2_EXTENDED_PARAMETERS), 0, &m_stop,
Copier::copyProgress2, this
};
auto rc = CopyFile2((PCWSTR)m_src.utf16(), (PCWSTR)m_dst.utf16(), ¶ms);
if (!SUCCEEDED(rc))
emit newStatus(toString(rc));
emit finished();
});
}
COPYFILE2_MESSAGE_ACTION CALLBACK Copier::copyProgress2(
const COPYFILE2_MESSAGE *message, PVOID context)
{
COPYFILE2_MESSAGE_ACTION action = COPYFILE2_PROGRESS_CONTINUE;
auto self = static_cast<Copier*>(context);
if (message->Type == COPYFILE2_CALLBACK_CHUNK_FINISHED) {
auto &info = message->Info.ChunkFinished;
self->newStatus(info.uliTotalBytesTransferred.QuadPart, info.uliTotalFileSize.QuadPart);
}
else if (message->Type == COPYFILE2_CALLBACK_ERROR) {
auto &info = message->Info.Error;
self->newStatus(info.uliTotalBytesTransferred.QuadPart, info.uliTotalFileSize.QuadPart);
emit self->newStatus(toString(info.hrFailure));
action = COPYFILE2_PROGRESS_CANCEL;
}
if (self->m_pause) {
QMutexLocker lock{&self->m_pauseMutex};
self->m_pauseWait.wait(&self->m_pauseMutex);
}
return action;
}
#else
void Copier::copy() {
m_lastPart = m_lastWhole = {};
m_stop = FALSE;
m_pause = false;
QtConcurrent::run([this]{
auto rc = CopyFileExW((LPCWSTR)m_src.utf16(), (LPCWSTR)m_dst.utf16(),
©Progress, this, &m_stop, 0);
if (!rc)
emit newStatus(getLastErrorMsg());
emit finished();
});
}
DWORD CALLBACK Copier::copyProgress(
const LARGE_INTEGER totalSize, const LARGE_INTEGER totalTransferred,
LARGE_INTEGER, LARGE_INTEGER, DWORD,
DWORD, HANDLE, HANDLE,
LPVOID data)
{
auto self = static_cast<Copier*>(data);
self->newStatus(totalTransferred.QuadPart, totalSize.QuadPart);
if (self->m_pause) {
QMutexLocker lock{&self->m_pauseMutex};
self->m_pauseWait.wait(&self->m_pauseMutex);
}
return PROGRESS_CONTINUE;
}
#endif
struct PathWidget : public QWidget {
QHBoxLayout layout{this};
QLineEdit edit;
QPushButton select{"..."};
QFileDialog dialog;
explicit PathWidget(const QString & caption) : dialog{this, caption} {
layout.setMargin(0);
layout.addWidget(&edit);
layout.addWidget(&select);
connect(&select, SIGNAL(clicked()), &dialog, SLOT(show()));
connect(&dialog, SIGNAL(fileSelected(QString)), &edit, SLOT(setText(QString)));
}
};
class Ui : public QWidget {
Q_OBJECT
QFormLayout m_layout{this};
QPlainTextEdit m_status;
PathWidget m_src{"Source File"}, m_dst{"Destination File"};
QPushButton m_copy{"Copy"};
QPushButton m_cancel{"Cancel"};
QStateMachine m_machine{this};
QState s_stopped{&m_machine};
QState s_copying{&m_machine};
Q_SIGNAL void stopCopy();
Q_SLOT void startCopy() {
auto copier = new Copier(m_src.edit.text(), m_dst.edit.text(), this);
connect(copier, SIGNAL(newStatus(QString)), &m_status, SLOT(appendPlainText(QString)));
connect(copier, SIGNAL(finished()), SIGNAL(copyFinished()));
connect(copier, SIGNAL(finished()), copier, SLOT(deleteLater()));
connect(this, SIGNAL(stopCopy()), copier, SLOT(stop()));
copier->copy();
}
Q_SIGNAL void copyFinished();
public:
Ui() {
m_layout.addRow("From:", &m_src);
m_layout.addRow("To:", &m_dst);
m_layout.addRow(&m_status);
m_layout.addRow(&m_copy);
m_layout.addRow(&m_cancel);
m_src.dialog.setFileMode(QFileDialog::ExistingFile);
m_dst.dialog.setAcceptMode(QFileDialog::AcceptSave);
m_status.setReadOnly(true);
m_status.setMaximumBlockCount(5);
m_machine.setInitialState(&s_stopped);
s_stopped.addTransition(&m_copy, SIGNAL(clicked()), &s_copying);
s_stopped.assignProperty(&m_copy, "enabled", true);
s_stopped.assignProperty(&m_cancel, "enabled", false);
s_copying.addTransition(&m_cancel, SIGNAL(clicked()), &s_stopped);
s_copying.addTransition(this, SIGNAL(copyFinished()), &s_stopped);
connect(&s_copying, SIGNAL(entered()), SLOT(startCopy()));
connect(&s_copying, SIGNAL(exited()), SIGNAL(stopCopy()));
s_copying.assignProperty(&m_copy, "enabled", false);
s_copying.assignProperty(&m_cancel, "enabled", true);
m_machine.start();
}
};
int main(int argc, char *argv[])
{
QApplication a{argc, argv};
Ui ui;
ui.show();
return a.exec();
}
#include "main.moc"
关于c++ - 在 Qt 中使用进度回调的 CopyFileEx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19136936/
我正在使用 Qt 语言学家翻译一个 ui 文件。我使用 lupdate 获取了它的 ts 文件,并翻译了这些单词和短语。现在我想将它添加到我的代码中,但我从它的教程中发现我似乎必须将 tr() 添加到
我想在 Qt Creator 中创建下面的简单控制台应用程序: #include int main(int argc, char* argv[]) { std::cout #include
我想将 libQtGui.so.4 libQtNetwork.so.4 和 libQtCore.so.4 包含在与我的应用程序所在的目录相同的目录中。我如何让 Qt 理解这一点? y 目的是拥有一个使
我有一个充满 QPushButtons 和 QLabels 以及各种其他有趣的 QWidget 的窗口,所有这些都使用各种 QLayout 对象动态布局...而我想做的是偶尔制作一些这些小部件变得不可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 7 年前。 Improve
我想知道 Qt 是否将下面代码的“版本 1”之类的东西放在堆上?在版本 1 中,Qt 会将 dirStuff 放在堆栈上还是堆上?我问是因为我有一种感觉,Java 将所有数据结构放在堆上......不
这个问题是关于 Qt Installer Framework 2.0 版的。 在这一点上,使用 Qt 安装程序框架的人都知道,如果不进行自定义,您根本无法通过安装程序覆盖现有安装。这样做显然是为了解决
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
因为我在我的计算机上安装了 Qt 4.8.4 和 Qt 5.1,所以我遇到了问题。 当只有 Qt 4.8.4 存在时,一切都很好。 当我添加 Qt 5.1 时,这个工作正常,但 Qt 4.8.4 给了
我无法在我的 Ubuntu 12 中安装更多软件包。我尝试了 apt-get install -f ,以及许多其他类似的技巧,但在找到解决方案方面没有进展。 这是属于 Qt 的损坏包: 以下包具有未满
我正在尝试使用 Virtual Box 中的 Ubuntu 机器复制我们目前在物理 Ubuntu 服务器上运行的应用程序。它是一个 QT 应用程序,但在服务器上我们使用 NPM 的 pm2 运行它。安
问题: Qt Creator 是用 Qt Creator 构建的吗? 同样,Qt Designer 是用 Qt Designer 构建的吗? 顺便说一句,为什么有两个 Qt IDE?他们是竞争对手吗?
当我使用 QWidget设计用户界面时,我总是对它的大小属性有点困惑。有size policy , geometry和 hintSize . 我只知道size policy之间的关系和 hintSiz
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道是否有一种很好的方法可以让用户像 LabView 一样创建节点图(有限制)。 像这样的东西: 我见过http://www.pyqtgraph.org/ ,这似乎有类似的东西,我确实打算使用 P
在 Qt 中是否有一种跨平台的方式来获得用户喜欢的固定宽度和比例字体? 例如,在 cocoa 中,有 NSFont *proportional = [NSFont userFontOfSize:12.
我想使用 Qt 和 C++ 制作这样的交互式图表:http://jsxgraph.uni-bayreuth.de/wiki/index.php/Cubic_spline_interpolation 关
我正在编写一个嵌入式设备屏幕的模拟(其中包含主 QWidget 顶部的自定义小部件),虽然屏幕的原始尺寸是 800x600,但我希望能够按比例放大和缩小它拖动窗口的角。如果不使用网格布局和担架(不会向
在下面的示例中,我是否必须从堆中删除对象?如果是的话,怎么办? #include #include #include #include #include int main(int argc,
来自 Web 开发背景,我现在进入 QT 应用程序开发。 使用 QFonts 我已经看到我显然只有两个选择,在 QT 中定义字体大小;按像素大小或点大小。 在制作网页布局时,我习惯于以相对方式定义所有
我是一名优秀的程序员,十分优秀!