mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 15:20:29 +01:00
Initial import of CVS-v2_8_branch
This commit is contained in:
104
lib/rdcatch_connect.h
Normal file
104
lib/rdcatch_connect.h
Normal file
@@ -0,0 +1,104 @@
|
||||
// rdcatch_connect.h
|
||||
//
|
||||
// Connect to the Rivendell Netcatcher Daemon.
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdcatch_connect.h,v 1.19 2010/07/29 19:32:33 cvs Exp $
|
||||
//
|
||||
// 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 <rd.h>
|
||||
#include <rddeck.h>
|
||||
#include <rdrecording.h>
|
||||
|
||||
#ifndef RDCATCH_CONNECT_H
|
||||
#define RDCATCH_CONNECT_H
|
||||
|
||||
#define CC_MAX_ARGS 10
|
||||
#define CC_MAX_LENGTH 256
|
||||
#define CC_HEARTBEAT_INTERVAL 15000
|
||||
|
||||
|
||||
class RDCatchConnect : public QObject
|
||||
{
|
||||
Q_OBJECT;
|
||||
public:
|
||||
RDCatchConnect(int serial,QObject *parent=0,const char *name=0);
|
||||
~RDCatchConnect();
|
||||
void connectHost(QString hostname,Q_UINT16 hostport,QString password);
|
||||
RDDeck::Status status(unsigned chan) const;
|
||||
int currentId(unsigned chan) const;
|
||||
void enableMetering(bool state);
|
||||
void reloadHeartbeat();
|
||||
void reloadDropboxes();
|
||||
|
||||
public slots:
|
||||
void addEvent(int id);
|
||||
void removeEvent(int id);
|
||||
void updateEvent(int id);
|
||||
void reset();
|
||||
void reload();
|
||||
void refresh();
|
||||
void reloadOffset();
|
||||
void stop(int deck);
|
||||
void monitor(int deck,bool state);
|
||||
void toggleMonitor(int deck);
|
||||
void setExitCode(int id,RDRecording::ExitCode code,const QString &msg);
|
||||
|
||||
signals:
|
||||
void connected(int serial,bool state);
|
||||
void statusChanged(int serial,unsigned channel,RDDeck::Status status,
|
||||
int id,const QString &cutname);
|
||||
void monitorChanged(int serial,unsigned channel,bool state);
|
||||
void meterLevel(int serial,int deck,int chan,int level);
|
||||
void eventUpdated(int id);
|
||||
void eventPurged(int id);
|
||||
void heartbeatFailed(int id);
|
||||
|
||||
private slots:
|
||||
void connectedData();
|
||||
void errorData(int errorcode);
|
||||
void readyData();
|
||||
void heartbeatTimeoutData();
|
||||
|
||||
private:
|
||||
void SendCommand(QString cmd);
|
||||
void DispatchCommand();
|
||||
QSocket *cc_socket;
|
||||
QString cc_password;
|
||||
bool debug;
|
||||
char args[CC_MAX_ARGS][CC_MAX_LENGTH];
|
||||
int argnum;
|
||||
int argptr;
|
||||
bool cc_connected;
|
||||
RDDeck::Status cc_record_deck_status[MAX_DECKS];
|
||||
RDDeck::Status cc_play_deck_status[MAX_DECKS];
|
||||
int cc_record_id[MAX_DECKS];
|
||||
int cc_play_id[MAX_DECKS];
|
||||
int cc_serial;
|
||||
QTimer *cc_heartbeat_timer;
|
||||
bool cc_heartbeat_valid;
|
||||
bool cc_monitor_state[MAX_DECKS];
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user