mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-14 08:35:48 +01:00
2015-03-04 Fred Gleason <fredg@paravelsystems.com>
* Renamed the 'SAS USI (3 digit)' driver to 'SAS User Serial Interface'. * Renamed the 'SAS USI (2 digit)' driver to 'SAS 16000(D)'.
This commit is contained in:
85
ripcd/sasusi.h
Normal file
85
ripcd/sasusi.h
Normal file
@@ -0,0 +1,85 @@
|
||||
// sasusi3digit.h
|
||||
//
|
||||
// A Rivendell switcher driver for the SAS USI Protocol (3 digit)
|
||||
//
|
||||
// (C) Copyright 2002-2015 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.
|
||||
//
|
||||
|
||||
#ifndef SASUSI3DIGIT_H
|
||||
#define SASUSI3DIGIT_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <qsocket.h>
|
||||
#include <qhostaddress.h>
|
||||
#include <qtimer.h>
|
||||
|
||||
#include <rd.h>
|
||||
#include <rdmatrix.h>
|
||||
#include <rdmacro.h>
|
||||
#include <rdtty.h>
|
||||
|
||||
#include <switcher.h>
|
||||
|
||||
#define SASUSI3DIGIT_RECONNECT_INTERVAL 10000
|
||||
#define SASUSI3DIGIT_MAX_LENGTH 256
|
||||
|
||||
class SasUsi3Digit : public Switcher
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
SasUsi3Digit(RDMatrix *matrix,QObject *parent=0,const char *name=0);
|
||||
RDMatrix::Type type();
|
||||
unsigned gpiQuantity();
|
||||
unsigned gpoQuantity();
|
||||
bool primaryTtyActive();
|
||||
bool secondaryTtyActive();
|
||||
void processCommand(RDMacro *cmd);
|
||||
|
||||
private slots:
|
||||
void ipConnect();
|
||||
void connectedData();
|
||||
void connectionClosedData();
|
||||
void readyReadData();
|
||||
void errorData(int err);
|
||||
|
||||
private:
|
||||
void SendCommand(char *str);
|
||||
void DispatchCommand();
|
||||
void ExecuteMacroCart(unsigned cartnum);
|
||||
QString PrettifyCommand(const char *cmd) const;
|
||||
RDTTYDevice *sas_device;
|
||||
QSocket *sas_socket;
|
||||
char sas_buffer[SASUSI3DIGIT_MAX_LENGTH];
|
||||
unsigned sas_ptr;
|
||||
QHostAddress sas_ipaddress;
|
||||
int sas_matrix;
|
||||
int sas_ipport;
|
||||
int sas_inputs;
|
||||
int sas_outputs;
|
||||
int sas_gpis;
|
||||
int sas_gpos;
|
||||
QTimer *sas_reconnect_timer;
|
||||
unsigned sas_start_cart;
|
||||
unsigned sas_stop_cart;
|
||||
RDMatrix::PortType sas_porttype;
|
||||
std::vector<int> sas_console_numbers;
|
||||
std::vector<int> sas_source_numbers;
|
||||
std::vector<int> sas_relay_numbers;
|
||||
};
|
||||
|
||||
|
||||
#endif // SASUSI3DIGIT_H
|
||||
Reference in New Issue
Block a user