From 7167ce41b61d2ba2cdb526777a4233eb84a3b66a Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 6 Dec 2014 17:33:25 -0500 Subject: Imported Upstream version 2.99.6 --- SQLiteStudio3/sqlitestudiocli/cli.h | 62 +++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 SQLiteStudio3/sqlitestudiocli/cli.h (limited to 'SQLiteStudio3/sqlitestudiocli/cli.h') diff --git a/SQLiteStudio3/sqlitestudiocli/cli.h b/SQLiteStudio3/sqlitestudiocli/cli.h new file mode 100644 index 0000000..6f7c927 --- /dev/null +++ b/SQLiteStudio3/sqlitestudiocli/cli.h @@ -0,0 +1,62 @@ +#ifndef CLI_H +#define CLI_H + +#include "db/db.h" +#include +#include +#include +#include + +class QThread; +class QFile; +class DbManager; +class CliCommand; + +class CLI : public QObject +{ + Q_OBJECT + + public: + ~CLI(); + + static CLI* getInstance(); + + void start(); + void setCurrentDb(Db* db); + Db* getCurrentDb() const; + void exit(); + QStringList getHistory() const; + QString getLine() const; + void applyHistoryLimit(); + + private: + explicit CLI(QObject* parent = nullptr); + + void waitForExecution(); + bool isComplete(const QString& contents) const; + void loadHistory(); + void addHistory(const QString& text); + void println(const QString& msg = QString()); + int historyLength() const; + + static CLI* instance; + + QString lastHistoryEntry; + QThread* thread = nullptr; + Db* currentDb = nullptr; + bool executionFinished = false; + bool doExit = false; + QString line; + + signals: + void execCommand(CliCommand* cmd); + + public slots: + void doWork(); + void done(); + void executionComplete(); + void clearHistory(); + void openDbFile(const QString& path); +}; + +#endif // CLI_H -- cgit v1.2.3