vdr-plugin-streamdev/server/connectionHTTP.h

64 lines
1.6 KiB
C
Raw Normal View History

2010-12-02 08:53:01 +01:00
/*
2010-12-02 09:51:02 +01:00
* $Id: connectionHTTP.h,v 1.7 2010/07/19 13:49:31 schmirl Exp $
2010-12-02 08:53:01 +01:00
*/
#ifndef VDR_STREAMDEV_SERVERS_CONNECTIONHTTP_H
#define VDR_STREAMDEV_SERVERS_CONNECTIONHTTP_H
#include "connection.h"
#include "server/livestreamer.h"
2010-12-02 09:48:23 +01:00
#include <map>
2010-12-02 08:53:01 +01:00
#include <tools/select.h>
class cChannel;
class cStreamdevLiveStreamer;
2010-12-02 09:02:31 +01:00
class cChannelList;
2010-12-02 08:53:01 +01:00
class cConnectionHTTP: public cServerConnection {
private:
enum eHTTPStatus {
hsRequest,
hsHeaders,
hsBody,
hsFinished,
};
2010-12-02 09:43:13 +01:00
std::string m_Authorization;
2010-12-02 08:53:01 +01:00
eHTTPStatus m_Status;
// job: transfer
cStreamdevLiveStreamer *m_LiveStreamer;
const cChannel *m_Channel;
2010-12-02 09:48:23 +01:00
int m_Apid[2];
int m_Dpid[2];
2010-12-02 08:53:01 +01:00
eStreamType m_StreamType;
// job: listing
2010-12-02 09:02:31 +01:00
cChannelList *m_ChannelList;
2010-12-02 08:53:01 +01:00
2010-12-02 09:48:23 +01:00
cChannelList* ChannelListFromString(const std::string &PathInfo, const std::string &Filebase, const std::string &Fileext) const;
bool ProcessURI(const std::string &PathInfo);
2010-12-02 08:53:01 +01:00
protected:
bool ProcessRequest(void);
public:
cConnectionHTTP(void);
virtual ~cConnectionHTTP();
virtual void Attach(void) { if (m_LiveStreamer != NULL) m_LiveStreamer->Attach(); }
virtual void Detach(void) { if (m_LiveStreamer != NULL) m_LiveStreamer->Detach(); }
2010-12-02 09:43:13 +01:00
virtual bool CanAuthenticate(void);
2010-12-02 08:53:01 +01:00
virtual bool Command(char *Cmd);
2010-12-02 08:56:19 +01:00
virtual bool Abort(void) const;
2010-12-02 08:53:01 +01:00
virtual void Flushed(void);
};
2010-12-02 08:56:19 +01:00
inline bool cConnectionHTTP::Abort(void) const
{
return m_LiveStreamer && m_LiveStreamer->Abort();
}
2010-12-02 08:53:01 +01:00
#endif // VDR_STREAMDEV_SERVERS_CONNECTIONVTP_H