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
|
|
|
|
#include "profiles.h"
|
2011-07-10 14:23:07 +00:00
|
|
|
#include "machine.h"
|
2012-01-07 05:30:13 +00:00
|
|
|
|
2012-01-05 04:37:22 +00:00
|
|
|
#include "zlib.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class MachineLoader
|
|
|
|
\brief Base class to derive a new Machine importer from
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
class MachineLoader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MachineLoader();
|
|
|
|
virtual ~MachineLoader();
|
2011-07-10 14:23:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
//virtual Machine * CreateMachine() {};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \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
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual int Version()=0;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Override to returns the class name of this MachineLoader
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual const QString & ClassName()=0;
|
|
|
|
|
2012-01-05 04:37:22 +00:00
|
|
|
bool compressFile(QString inpath, QString outpath="");
|
|
|
|
|
2011-07-10 14:23:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
MachineLoader(Profile *profile,QString & classname);
|
|
|
|
virtual void LoadMachineList();
|
|
|
|
virtual void SaveMachineList();
|
|
|
|
virtual bool LoadSummaries();
|
|
|
|
virtual bool LoadEvents();
|
|
|
|
virtual bool LoadWaveforms();
|
|
|
|
virtual bool Scan(QString &)=0; // Scans for new content
|
|
|
|
|
|
|
|
virtual bool LoadAll();
|
|
|
|
virtual bool SaveAll();
|
|
|
|
|
|
|
|
virtual bool LoadSummary(Machine * m, QString & filename);
|
|
|
|
virtual bool LoadEvent(Machine * m, QString & filename);
|
|
|
|
virtual bool LoadWaveform(Machine * m, QString & filename);
|
|
|
|
|
|
|
|
virtual bool SaveSummary(Machine * m, QString & filename);
|
|
|
|
virtual bool SaveEvent(Machine * m, QString & filename);
|
|
|
|
virtual bool SaveWaveform(Machine * m, QString & filename);*/
|
|
|
|
|
|
|
|
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;
|
2011-07-10 14:23:07 +00:00
|
|
|
QString m_class;
|
|
|
|
MachineType m_type;
|
|
|
|
Profile * m_profile;
|
2011-06-26 08:30:44 +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);
|
|
|
|
void DestroyLoaders();
|
2011-12-08 04:10:35 +00:00
|
|
|
QList<MachineLoader *> GetLoaders();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#endif //MACHINE_LOADER_H
|