/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sts=4 et sw=4 tw=99: * * SleepLib Machine Loader Class Implementation * * Copyright (c) 2011-2014 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Linux * distribution for more details. */ #include #include #include #include #include extern QProgressBar *qprogress; #include "machine_loader.h" // This crap moves to Profile QList m_loaders; QList GetLoaders(MachineType mt) { QList list; for (int i=0; i < m_loaders.size(); ++i) { if (mt == MT_UNKNOWN) { list.push_back(m_loaders.at(i)); } else { MachineType mtype = m_loaders.at(i)->type(); if (mtype == mt) { list.push_back(m_loaders.at(i)); } } } return list; } void RegisterLoader(MachineLoader *loader) { m_loaders.push_back(loader); } void DestroyLoaders() { for (QList::iterator i = m_loaders.begin(); i != m_loaders.end(); i++) { delete(*i); } m_loaders.clear(); } MachineLoader::MachineLoader() :QObject(nullptr) { m_abort = false; m_type = MT_UNKNOWN; m_status = NEUTRAL; } MachineLoader::~MachineLoader() { for (QList::iterator m = m_machlist.begin(); m != m_machlist.end(); m++) { delete *m; } } bool compressFile(QString inpath, QString outpath) { if (outpath.isEmpty()) { outpath = inpath + ".gz"; } else if (!outpath.endsWith(".gz")) { outpath += ".gz"; } QFile f(inpath); if (!f.exists(inpath)) { qDebug() << "compressFile()" << inpath << "does not exist"; return false; } qint64 size = f.size(); if (!f.open(QFile::ReadOnly)) { qDebug() << "compressFile() Couldn't open" << inpath; return false; } char *buf = new char [size]; if (!f.read(buf, size)) { delete buf; qDebug() << "compressFile() Couldn't read all of" << inpath; return false; } f.close(); gzFile gz = gzopen(outpath.toLatin1(), "wb"); //gzbuffer(gz,65536*2); if (!gz) { qDebug() << "compressFile() Couldn't open" << outpath << "for writing"; delete buf; return false; } gzwrite(gz, buf, size); gzclose(gz); delete buf; return true; } void MachineLoader::queTask(ImportTask * task) { m_tasklist.push_back(task); } void MachineLoader::runTasks(bool threaded) { m_totaltasks=m_tasklist.size(); m_currenttask=0; if (!threaded) { while (!m_tasklist.isEmpty()) { ImportTask * task = m_tasklist.takeFirst(); task->run(); float f = float(m_currenttask) / float(m_totaltasks) * 100.0; qprogress->setValue(f); m_currenttask++; QApplication::processEvents(); } } else { QThreadPool * threadpool = QThreadPool::globalInstance(); while (!m_tasklist.isEmpty()) { if (threadpool->tryStart(m_tasklist.at(0))) { m_tasklist.pop_front(); float f = float(m_currenttask) / float(m_totaltasks) * 100.0; qprogress->setValue(f); m_currenttask++; } QApplication::processEvents(); } QThreadPool::globalInstance()->waitForDone(-1); } } /*const QString machine_profile_name="MachineList.xml"; void MachineLoader::LoadMachineList() { } void MachineLoader::StoreMachineList() { } void MachineLoader::LoadSummary(Machine *m, QString &filename) { QFile f(filename); if (!f.exists()) return; f.open(QIODevice::ReadOnly); if (!f.isReadable()) return; } void MachineLoader::LoadSummaries(Machine *m) { QString path=(*profile)["ProfileDirectory"]+"/"+m_classname+"/"+mach->hexid(); QDir dir(path); if (!dir.exists() || !dir.isReadable()) return false; dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setSorting(QDir::Name); QString fullpath,ext_s,sesstr; int ext; SessionID sessid; bool ok; QMap sessions; QFileInfoList list=dir.entryInfoList(); for (int i=0;i