2014-04-09 21:01:57 +00:00
|
|
|
/* -*- 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 MachineLoader Base Class Header
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef MACHINE_LOADER_H
|
|
|
|
#define MACHINE_LOADER_H
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QRunnable>
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "profiles.h"
|
2011-07-10 14:23:07 +00:00
|
|
|
#include "machine.h"
|
2012-01-07 05:30:13 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
2012-01-05 04:37:22 +00:00
|
|
|
#include "zlib.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
class MachineLoader;
|
2014-05-25 07:07:08 +00:00
|
|
|
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE };
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class MachineLoader
|
|
|
|
\brief Base class to derive a new Machine importer from
|
|
|
|
*/
|
2014-05-20 11:51:47 +00:00
|
|
|
class MachineLoader: public QObject
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-05-20 11:51:47 +00:00
|
|
|
Q_OBJECT
|
|
|
|
friend class ImportThread;
|
2014-07-28 13:56:29 +00:00
|
|
|
friend class Machine;
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-06-26 08:30:44 +00:00
|
|
|
MachineLoader();
|
|
|
|
virtual ~MachineLoader();
|
2011-07-10 14:23:07 +00:00
|
|
|
|
2014-04-26 09:54:08 +00:00
|
|
|
//! \brief Detect if the given path contains a valid folder structure
|
|
|
|
virtual bool Detect(const QString & path) = 0;
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
//! \brief Look up and return machine model information stored at path
|
|
|
|
virtual MachineInfo PeekInfo(const QString & path) { Q_UNUSED(path); return MachineInfo(); }
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Override this to scan path and detect new machine data
|
2014-07-11 12:09:38 +00:00
|
|
|
virtual int Open(QString path) = 0;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Override to returns the Version number of this MachineLoader
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual int Version() = 0;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
static Machine * CreateMachine(MachineInfo info, MachineID id = 0);
|
|
|
|
|
|
|
|
// !\\brief Used internally by loaders, override to return base MachineInfo record
|
|
|
|
virtual MachineInfo newInfo() { return MachineInfo(); }
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Override to returns the class name of this MachineLoader
|
2014-07-28 13:56:29 +00:00
|
|
|
virtual const QString &loaderName() = 0;
|
2014-05-20 11:51:47 +00:00
|
|
|
inline MachineType type() { return m_type; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-26 07:37:28 +00:00
|
|
|
// virtual bool openDevice() { return false; }
|
|
|
|
// virtual void closeDevice() {}
|
|
|
|
// virtual bool scanDevice(QString keyword="", quint16 vendor_id=0, quint16 product_id=0) {
|
|
|
|
// Q_UNUSED(keyword)
|
|
|
|
// Q_UNUSED(vendor_id)
|
|
|
|
// Q_UNUSED(product_id)
|
|
|
|
// return false;
|
|
|
|
// }
|
2014-05-25 07:07:08 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
void queTask(ImportTask * task);
|
2011-07-10 14:23:07 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
//! \brief Process Task list using all available threads.
|
2014-05-31 21:25:07 +00:00
|
|
|
void runTasks(bool threaded=true);
|
2014-05-25 07:07:08 +00:00
|
|
|
|
2014-06-02 11:22:45 +00:00
|
|
|
int countTasks() { return m_tasklist.size(); }
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
inline bool isAborted() { return m_abort; }
|
|
|
|
void abort() { m_abort = true; }
|
|
|
|
|
|
|
|
virtual void process() {}
|
|
|
|
|
|
|
|
DeviceStatus status() { return m_status; }
|
|
|
|
void setStatus(DeviceStatus status) { m_status = status; }
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
QMutex sessionMutex;
|
|
|
|
QMutex saveMutex;
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
signals:
|
|
|
|
void updateProgress(int cnt, int total);
|
2014-05-26 07:37:28 +00:00
|
|
|
// void updateDisplay(MachineLoader *);
|
2014-05-25 07:07:08 +00:00
|
|
|
|
2014-05-26 07:37:28 +00:00
|
|
|
//protected slots:
|
|
|
|
// virtual void dataAvailable() {}
|
|
|
|
// virtual void resetImportTimeout() {}
|
|
|
|
// virtual void startImportTimeout() {}
|
2014-05-25 07:07:08 +00:00
|
|
|
|
2014-05-26 07:37:28 +00:00
|
|
|
//protected:
|
|
|
|
// virtual void killTimers(){}
|
|
|
|
// virtual void resetDevice(){}
|
2014-05-25 07:07:08 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Contains a list of Machine records known by this loader
|
2011-12-08 04:10:35 +00:00
|
|
|
QList<Machine *> m_machlist;
|
2014-05-20 11:51:47 +00:00
|
|
|
|
2011-07-10 14:23:07 +00:00
|
|
|
MachineType m_type;
|
2014-05-20 11:51:47 +00:00
|
|
|
QString m_class;
|
2014-04-17 05:58:57 +00:00
|
|
|
Profile *m_profile;
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
|
|
int m_currenttask;
|
|
|
|
int m_totaltasks;
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
bool m_abort;
|
|
|
|
|
|
|
|
DeviceStatus m_status;
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
private:
|
|
|
|
QList<ImportTask *> m_tasklist;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
struct ImportPath
|
|
|
|
{
|
|
|
|
ImportPath() {
|
|
|
|
loader = nullptr;
|
|
|
|
}
|
|
|
|
ImportPath(const ImportPath & copy) {
|
|
|
|
loader = copy.loader;
|
|
|
|
path = copy.path;
|
|
|
|
}
|
|
|
|
ImportPath(QString path, MachineLoader * loader) :
|
|
|
|
path(path), loader(loader) {}
|
|
|
|
|
|
|
|
QString path;
|
|
|
|
MachineLoader * loader;
|
|
|
|
};
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
// Put in machine loader class as static??
|
2011-06-26 08:30:44 +00:00
|
|
|
void RegisterLoader(MachineLoader *loader);
|
2014-07-28 13:56:29 +00:00
|
|
|
MachineLoader * lookupLoader(Machine * m);
|
2011-06-26 08:30:44 +00:00
|
|
|
void DestroyLoaders();
|
2014-07-28 13:56:29 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
bool compressFile(QString inpath, QString outpath = "");
|
|
|
|
|
|
|
|
QList<MachineLoader *> GetLoaders(MachineType mt = MT_UNKNOWN);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#endif //MACHINE_LOADER_H
|