| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2018 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:32:15 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef SDRBASE_COMMANDS_COMMAND_H_
 | 
					
						
							|  |  |  | #define SDRBASE_COMMANDS_COMMAND_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <Qt>
 | 
					
						
							|  |  |  | #include <QByteArray>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							| 
									
										
										
										
											2018-01-04 11:11:53 +01:00
										 |  |  | #include <QMetaType>
 | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include <QProcess>
 | 
					
						
							| 
									
										
										
										
											2018-11-12 14:04:16 +01:00
										 |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | class SDRBASE_API Command : public QObject | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     Q_OBJECT | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | public: | 
					
						
							|  |  |  |     Command(); | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     Command(const Command& command); | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  |     ~Command(); | 
					
						
							|  |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void setCommand(const QString& command) { m_command = command; } | 
					
						
							|  |  |  |     const QString& getCommand() const { return m_command; } | 
					
						
							|  |  |  |     void setArgString(const QString& argString) { m_argString = argString; } | 
					
						
							|  |  |  |     const QString& getArgString() const { return m_argString; } | 
					
						
							|  |  |  |     void setGroup(const QString& group) { m_group = group; } | 
					
						
							|  |  |  |     const QString& getGroup() const { return m_group; } | 
					
						
							|  |  |  |     void setDescription(const QString& description) { m_description = description; } | 
					
						
							|  |  |  |     const QString& getDescription() const { return m_description; } | 
					
						
							| 
									
										
										
										
											2018-01-04 11:11:53 +01:00
										 |  |  |     void setKey(Qt::Key key) { m_key = key; } | 
					
						
							|  |  |  |     Qt::Key getKey() const { return m_key; } | 
					
						
							|  |  |  |     void setKeyModifiers(Qt::KeyboardModifiers keyModifiers) { m_keyModifiers = keyModifiers; } | 
					
						
							|  |  |  |     Qt::KeyboardModifiers getKeyModifiers() const { return m_keyModifiers; } | 
					
						
							|  |  |  |     void setAssociateKey(bool associate) { m_associateKey = associate; } | 
					
						
							|  |  |  |     bool getAssociateKey() const { return m_associateKey; } | 
					
						
							|  |  |  |     void setRelease(bool release) { m_release = release; } | 
					
						
							|  |  |  |     bool getRelease() const { return m_release; } | 
					
						
							|  |  |  |     QString getKeyLabel() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     void run(const QString& apiAddress, int apiPort, int deviceSetIndex); | 
					
						
							|  |  |  |     void kill(); | 
					
						
							|  |  |  |     QProcess::ProcessState getLastProcessState() const; | 
					
						
							|  |  |  |     bool getLastProcessError(QProcess::ProcessError& error) const; | 
					
						
							| 
									
										
										
										
											2018-01-04 23:10:05 +01:00
										 |  |  |     bool getLastProcessExit(int& exitCode, QProcess::ExitStatus& exitStatus) const; | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     const QString& getLastProcessLog() const; | 
					
						
							| 
									
										
										
										
											2018-11-12 15:05:14 +01:00
										 |  |  |     uint64_t  getLastProcessStartTimestampms() const { return m_currentProcessStartTimeStampms; } | 
					
						
							|  |  |  |     uint64_t  getLastProcessFinishTimestampms() const { return m_currentProcessFinishTimeStampms; } | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     const QString& getLastProcessCommandLine() const { return m_currentProcessCommandLine; } | 
					
						
							|  |  |  |     qint64 getLastProcessPid() const { return m_currentProcessPid; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 11:11:53 +01:00
										 |  |  |     static bool commandCompare(const Command *c1, Command *c2) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (c1->m_group != c2->m_group) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return c1->m_group < c2->m_group; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (c1->m_description != c2->m_description) { | 
					
						
							|  |  |  |                 return c1->m_description < c2->m_description; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 if (c1->m_key != c2->m_key) { | 
					
						
							|  |  |  |                     return c1->m_key < c2->m_key; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return c1->m_release; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     QString m_group; | 
					
						
							|  |  |  |     QString m_description; | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     QString m_command; | 
					
						
							|  |  |  |     QString m_argString; | 
					
						
							| 
									
										
										
										
											2018-01-04 11:11:53 +01:00
										 |  |  |     Qt::Key m_key; | 
					
						
							|  |  |  |     Qt::KeyboardModifiers m_keyModifiers; | 
					
						
							|  |  |  |     bool m_associateKey; | 
					
						
							|  |  |  |     bool m_release; | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     QProcess *m_currentProcess; | 
					
						
							|  |  |  |     QProcess::ProcessState m_currentProcessState; | 
					
						
							|  |  |  |     bool m_isInError; | 
					
						
							|  |  |  |     QProcess::ProcessError m_currentProcessError; | 
					
						
							| 
									
										
										
										
											2018-01-04 23:10:05 +01:00
										 |  |  |     bool m_hasExited; | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     int m_currentProcessExitCode; | 
					
						
							|  |  |  |     QProcess::ExitStatus m_currentProcessExitStatus; | 
					
						
							|  |  |  |     QString m_log; | 
					
						
							| 
									
										
										
										
											2018-11-12 15:05:14 +01:00
										 |  |  |     uint64_t  m_currentProcessStartTimeStampms; | 
					
						
							|  |  |  |     uint64_t  m_currentProcessFinishTimeStampms; | 
					
						
							| 
									
										
										
										
											2018-01-04 20:15:33 +01:00
										 |  |  |     QString m_currentProcessCommandLine; | 
					
						
							|  |  |  |     qint64 m_currentProcessPid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void processStateChanged(QProcess::ProcessState newState); | 
					
						
							|  |  |  |     void processError(QProcess::ProcessError error); | 
					
						
							|  |  |  |     void processFinished(int exitCode, QProcess::ExitStatus exitStatus); | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 11:11:53 +01:00
										 |  |  | Q_DECLARE_METATYPE(const Command*); | 
					
						
							|  |  |  | Q_DECLARE_METATYPE(Command*); | 
					
						
							| 
									
										
										
										
											2018-01-03 12:25:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* SDRBASE_COMMANDS_COMMAND_H_ */
 |