2004-12-30 23:43:55 +01:00
|
|
|
#ifndef VDR_STREAMDEV_SERVERS_CONNECTIONVTP_H
|
|
|
|
#define VDR_STREAMDEV_SERVERS_CONNECTIONVTP_H
|
|
|
|
|
|
|
|
#include "server/connection.h"
|
|
|
|
|
|
|
|
class cTBSocket;
|
2007-04-24 13:03:41 +02:00
|
|
|
class cStreamdevLiveStreamer;
|
|
|
|
class cStreamdevFilterStreamer;
|
2005-05-09 22:22:29 +02:00
|
|
|
class cLSTEHandler;
|
|
|
|
class cLSTCHandler;
|
|
|
|
class cLSTTHandler;
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
class cConnectionVTP: public cServerConnection {
|
2005-05-09 22:22:29 +02:00
|
|
|
friend class cLSTEHandler;
|
2008-07-16 08:00:48 +02:00
|
|
|
#if !defined __GNUC__ || __GNUC__ >= 3
|
2007-03-19 13:06:13 +01:00
|
|
|
using cServerConnection::Respond;
|
2008-07-16 08:00:48 +02:00
|
|
|
#endif
|
2005-05-09 22:22:29 +02:00
|
|
|
|
2004-12-30 23:43:55 +01:00
|
|
|
private:
|
2007-04-24 13:03:41 +02:00
|
|
|
cTBSocket *m_LiveSocket;
|
|
|
|
cStreamdevLiveStreamer *m_LiveStreamer;
|
|
|
|
cTBSocket *m_FilterSocket;
|
|
|
|
cStreamdevFilterStreamer *m_FilterStreamer;
|
2004-12-30 23:43:55 +01:00
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
char *m_LastCommand;
|
2007-09-21 14:45:31 +02:00
|
|
|
eStreamType m_StreamType;
|
2008-03-13 17:01:17 +01:00
|
|
|
bool m_FiltersSupport;
|
2005-05-09 22:22:29 +02:00
|
|
|
|
|
|
|
// Members adopted for SVDRP
|
2004-12-30 23:43:55 +01:00
|
|
|
cRecordings Recordings;
|
2005-05-09 22:22:29 +02:00
|
|
|
cLSTEHandler *m_LSTEHandler;
|
|
|
|
cLSTCHandler *m_LSTCHandler;
|
|
|
|
cLSTTHandler *m_LSTTHandler;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
template<class cHandler>
|
|
|
|
bool CmdLSTX(cHandler *&Handler, char *Option);
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
cConnectionVTP(void);
|
|
|
|
virtual ~cConnectionVTP();
|
|
|
|
|
|
|
|
virtual void Welcome(void);
|
|
|
|
virtual void Reject(void);
|
|
|
|
|
2007-04-02 12:32:34 +02:00
|
|
|
virtual bool Abort(void) const;
|
2004-12-30 23:43:55 +01:00
|
|
|
virtual void Detach(void);
|
|
|
|
virtual void Attach(void);
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
virtual bool Command(char *Cmd);
|
2004-12-30 23:43:55 +01:00
|
|
|
bool CmdCAPS(char *Opts);
|
|
|
|
bool CmdPROV(char *Opts);
|
|
|
|
bool CmdPORT(char *Opts);
|
|
|
|
bool CmdTUNE(char *Opts);
|
|
|
|
bool CmdADDP(char *Opts);
|
|
|
|
bool CmdDELP(char *Opts);
|
|
|
|
bool CmdADDF(char *Opts);
|
|
|
|
bool CmdDELF(char *Opts);
|
|
|
|
bool CmdABRT(char *Opts);
|
2007-04-24 13:03:41 +02:00
|
|
|
bool CmdQUIT(void);
|
|
|
|
bool CmdSUSP(void);
|
2004-12-30 23:43:55 +01:00
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
// Thread-safe implementations of SVDRP commands
|
2004-12-30 23:43:55 +01:00
|
|
|
bool CmdLSTE(char *Opts);
|
2005-05-09 22:22:29 +02:00
|
|
|
bool CmdLSTC(char *Opts);
|
2004-12-30 23:43:55 +01:00
|
|
|
bool CmdLSTT(char *Opts);
|
|
|
|
|
2005-05-09 22:22:29 +02:00
|
|
|
// Commands adopted from SVDRP
|
|
|
|
bool CmdMODT(const char *Option);
|
|
|
|
bool CmdNEWT(const char *Option);
|
|
|
|
bool CmdDELT(const char *Option);
|
|
|
|
|
|
|
|
//bool CmdLSTR(char *Opts);
|
|
|
|
//bool CmdDELR(char *Opts);
|
|
|
|
|
|
|
|
bool Respond(int Code, const char *Message, ...)
|
|
|
|
__attribute__ ((format (printf, 3, 4)));
|
2004-12-30 23:43:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VDR_STREAMDEV_SERVERS_CONNECTIONVTP_H
|