OSCAR-code/sleepyhead/SleepLib/machine_loader.h

79 lines
2.0 KiB
C
Raw Normal View History

/* -*- 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
#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
#include "zlib.h"
2011-06-26 08:30:44 +00:00
class MachineLoader;
/*! \class MachineLoader
\brief Base class to derive a new Machine importer from
*/
class MachineLoader: public QObject
2011-06-26 08:30:44 +00:00
{
Q_OBJECT
friend class ImportThread;
public:
2011-06-26 08:30:44 +00:00
MachineLoader();
virtual ~MachineLoader();
2011-07-10 14:23:07 +00:00
//! \brief Detect if the given path contains a valid folder structure
virtual bool Detect(const QString & path) = 0;
//! \brief Override this to scan path and detect new machine data
virtual int Open(QString &path, Profile *) = 0; // Scans for new content
//! \brief Override to returns the Version number of this MachineLoader
virtual int Version() = 0;
//! \brief Override to returns the class name of this MachineLoader
virtual const QString &ClassName() = 0;
inline MachineType type() { return m_type; }
2011-06-26 08:30:44 +00:00
void queTask(ImportTask * task);
2011-07-10 14:23:07 +00:00
//! \brief Process Task list using all available threads.
void runTasks();
protected:
//! \brief Contains a list of Machine records known by this loader
QList<Machine *> m_machlist;
2011-07-10 14:23:07 +00:00
MachineType m_type;
QString m_class;
Profile *m_profile;
int m_currenttask;
int m_totaltasks;
private:
QList<ImportTask *> m_tasklist;
2011-06-26 08:30:44 +00:00
};
// Put in machine loader class as static??
2011-06-26 08:30:44 +00:00
void RegisterLoader(MachineLoader *loader);
void DestroyLoaders();
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