107 lines
3.3 KiB
C++
107 lines
3.3 KiB
C++
#ifndef SCRIPTENGINE_H
|
|
#define SCRIPTENGINE_H
|
|
|
|
#include <QObject>
|
|
#include <QJSEngine>
|
|
#include <QFileInfo>
|
|
#include <QThread>
|
|
#include <QThreadPool>
|
|
#include <QSemaphore>
|
|
#include "database.h"
|
|
#include "imageinfo.h"
|
|
|
|
namespace Script
|
|
{
|
|
|
|
class File;
|
|
|
|
class ScriptEngine : public QObject
|
|
{
|
|
Q_OBJECT
|
|
QJSEngine *_jsEngine;
|
|
Database *_database;
|
|
QThreadPool *_pool;
|
|
QSemaphore _semaphore;
|
|
QString _scriptPath;
|
|
QString _outputDir;
|
|
QList<QPair<QString, QString>> _paths;
|
|
public:
|
|
explicit ScriptEngine(QObject *parent = nullptr);
|
|
void setParams(const QString &scriptPath, const QList<QPair<QString, QString>> &paths, const QString &outputDir);
|
|
void reportError(const QString &message);
|
|
const QString& outputDir() const;
|
|
void interrupt();
|
|
void logError(const QString &message);
|
|
Q_INVOKABLE void log(const QString &message);
|
|
Q_INVOKABLE void mark(File *file);
|
|
Q_INVOKABLE void unmark(File *file);
|
|
Q_INVOKABLE bool isMarked(const File *file) const;
|
|
Q_INVOKABLE void setMaxThread(int maxthread);
|
|
Q_INVOKABLE void sync();
|
|
bool convert(File *file, QString &outpath, const QString &format, const QVariantMap ¶ms, bool async);
|
|
QJSValue newObject();
|
|
QJSValue newArray(uint size);
|
|
public slots:
|
|
void run();
|
|
signals:
|
|
void newMessage(const QString &message, bool error);
|
|
void finished();
|
|
};
|
|
|
|
class ScriptEngineThread : public QObject
|
|
{
|
|
Q_OBJECT
|
|
QThread *_thread;
|
|
ScriptEngine *_engine;
|
|
public:
|
|
ScriptEngineThread(QObject *parent = nullptr);
|
|
~ScriptEngineThread();
|
|
void setParams(const QString &scriptPath, const QList<QPair<QString, QString>> &paths, const QString &outputDir);
|
|
void start();
|
|
void interrupt();
|
|
signals:
|
|
void newMessage(const QString &message, bool error);
|
|
void finished();
|
|
};
|
|
|
|
class File : public QObject
|
|
{
|
|
Q_OBJECT
|
|
ScriptEngine *_engine;
|
|
QString _path;
|
|
QString _root;
|
|
QFileInfo _info;
|
|
bool _fitsKeywordsLoaded = false;
|
|
QStringList _fitsKeywords;
|
|
QMultiHash<QString, FITSRecord> _fitsRecords;
|
|
void loadFitsKeywords();
|
|
bool mkpath(const QString &path) const;
|
|
QJSValue _stats;
|
|
public:
|
|
explicit File(const QString &path, ScriptEngine *engine);
|
|
explicit File(const QString &path, const QString &root, ScriptEngine *engine);
|
|
Q_INVOKABLE QString fileName() const;
|
|
Q_INVOKABLE QString absoluteFilePath() const;
|
|
Q_INVOKABLE QString absolutePath() const;
|
|
Q_INVOKABLE QString relativeFilePath() const;
|
|
Q_INVOKABLE QString relativePath() const;
|
|
Q_INVOKABLE QString baseName() const;
|
|
Q_INVOKABLE QString completeBaseName() const;
|
|
Q_INVOKABLE QString suffix() const;
|
|
Q_INVOKABLE qint64 size() const;
|
|
Q_INVOKABLE QStringList fitsKeywords();
|
|
Q_INVOKABLE QString fitsValue(const QString &key);
|
|
Q_INVOKABLE QJSValue fitsValues(const QString &key);
|
|
Q_INVOKABLE QJSValue fitsRecords();
|
|
Q_INVOKABLE bool isMarked() const;
|
|
Q_INVOKABLE File* copy(const QString &newpath) const;
|
|
Q_INVOKABLE bool move(const QString &newpath);
|
|
Q_INVOKABLE File* convert(const QString &outpath, const QString &format, const QVariantMap ¶ms);
|
|
Q_INVOKABLE File* convertAsync(const QString &outpath, const QString &format, const QVariantMap ¶ms);
|
|
Q_INVOKABLE QJSValue stats();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SCRIPTENGINE_H
|