我想编写一个小程序,使用QByteArray的qCompress压缩目录中的所有文件。
但是我想使用QtConcurrent在多线程环境中运行压缩。但我有一些问题。
这是我的代码:
FilePool pool(folder,suffix);
QFutureWatcher<QString> watcher;
QProgressDialog progressDialog;
connect(&watcher,SIGNAL(progressRangeChanged(int,int)),&progressDialog,SLOT(setRange(int,int)));
connect(&watcher,SIGNAL(progressValueChanged(int)),&progressDialog,SLOT(setValue(int)));
connect(&progressDialog,SIGNAL(canceled()),&watcher,SLOT(cancel()));
QFuture<QString> future = QtConcurrent::filtered(pool,FindInFile(search));
QString text;
watcher.setFuture(future);
progressDialog.exec();
future.waitForFinished();
//Test for compressing file
QFile outFile("testCompress.ecf");
outFile.open(QIODevice::WriteOnly);
QByteArray nonCompressedData;
foreach(const QString &file,future.results()){
//Fichier d'entrée
QFile inFile(file);
inFile.open(QIODevice::ReadOnly);
nonCompressedData.append(inFile.readAll());
inFile.close();
text += file + "\n";
}
//QByteArray compressedData(qCompress(nonCompressedData,9));
//PROBLEM HERE
QFuture<QByteArray> futureCompressor = QtConcurrent::filtered(nonCompressedData,qCompress);
futureCompressor.waitForFinished();
QByteArray compressedData = futureCompressor.results();
outFile.write(compressedData);
问题是编译器引发了我的错误
首先:没有匹配函数来调用过滤(&amp; QByteArray,)。
第二:从QList到非标量类型的QByteArray请求转换。
所以,我的问题是,有可能做我想做的事吗?
提前致谢
答案 0 :(得分:1)
不确定,如果qt4可以处理这个问题。
QList<QByteArray> list;
...add ByteArrays to list...
auto wordMapFn = [](QByteArray &arr){arr=qCompress(arr, 9);};
QFuture<void> f = QtConcurrent::map(list,wordMapFn);
这会压缩列表中的所有QByteArrays。如果要保留未压缩的数组,请使用mapped而不是map。 wordMapFn必须相应调整。如果你只想压缩一个QByteArray QtConcurrent :: run可能更合适。
注意列表的生命周期。