mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-30 17:23:53 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // rdripc.h
 | |
| //
 | |
| // Connection to the Rivendell Interprocess Communication Daemon
 | |
| //
 | |
| //   (C) Copyright 2002-2004,2016 Fred Gleason <fredg@paravelsystems.com>
 | |
| //
 | |
| //   This program is free software; you can redistribute it and/or modify
 | |
| //   it under the terms of the GNU General Public License version 2 as
 | |
| //   published by the Free Software Foundation.
 | |
| //
 | |
| //   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 for more details.
 | |
| //
 | |
| //   You should have received a copy of the GNU General Public
 | |
| //   License along with this program; if not, write to the Free Software
 | |
| //   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | |
| //
 | |
| 
 | |
| #include <qsqldatabase.h>
 | |
| #include <qstring.h>
 | |
| #include <qobject.h>
 | |
| #include <qsocket.h>
 | |
| #include <qlabel.h>
 | |
| #include <qtimer.h>
 | |
| 
 | |
| #include <rdmacro.h>
 | |
| 
 | |
| #ifndef RDRIPC_H
 | |
| #define RDRIPC_H
 | |
| 
 | |
| #define RIPC_MAX_ARGS 100
 | |
| #define RIPC_MAX_LENGTH 256
 | |
| #define RIPC_START_DELAY 2000
 | |
| 
 | |
| class RDRipc : public QObject
 | |
| {
 | |
|   Q_OBJECT
 | |
|  public:
 | |
|   RDRipc(QString stationname,QObject *parent=0);
 | |
|   ~RDRipc();
 | |
|   QString user() const;
 | |
|   QString station() const;
 | |
|   bool onairFlag() const;
 | |
|   void setUser(QString user);
 | |
|   void setIgnoreMask(bool state);
 | |
|   void connectHost(QString hostname,Q_UINT16 hostport,QString password);
 | |
|   void sendGpiStatus(int matrix);
 | |
|   void sendGpoStatus(int matrix);
 | |
|   void sendGpiMask(int matrix);
 | |
|   void sendGpoMask(int matrix);
 | |
|   void sendGpiCart(int matrix);
 | |
|   void sendGpoCart(int matrix);
 | |
|   void sendOnairFlag();
 | |
|   void sendRml(RDMacro *macro);
 | |
|   void reloadHeartbeat();
 | |
|   
 | |
|  signals:
 | |
|   void connected(bool state);
 | |
|   void userChanged();
 | |
|   void gpiStateChanged(int matrix,int line,bool state);
 | |
|   void gpoStateChanged(int matrix,int line,bool state);
 | |
|   void gpiMaskChanged(int matrix,int line,bool state);
 | |
|   void gpoMaskChanged(int matrix,int line,bool state);
 | |
|   void gpiCartChanged(int matrix,int line,int off_cartnum,int on_cartnum);
 | |
|   void gpoCartChanged(int matrix,int line,int off_cartnum,int on_cartnum);
 | |
|   void onairFlagChanged(bool state);
 | |
|   void rmlReceived(RDMacro *rml);
 | |
|   
 | |
|  private slots:
 | |
|   void connectedData();
 | |
|   void errorData(int errorcode);
 | |
|   void readyData();
 | |
| 
 | |
|  private:
 | |
|   void SendCommand(QString cmd);
 | |
|   void DispatchCommand();
 | |
|   QSocket *ripc_socket;
 | |
|   QString ripc_user;
 | |
|   QString ripc_password;
 | |
|   QString ripc_stationname;
 | |
|   bool ripc_onair_flag;
 | |
|   bool ripc_ignore_mask;
 | |
|   bool debug;
 | |
|   char args[RIPC_MAX_ARGS][RIPC_MAX_LENGTH];
 | |
|   int argnum;
 | |
|   int argptr;
 | |
|   bool ripc_connected;
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif 
 |