vdr-plugin-skindesigner/services/epgtimer.h

132 lines
4.1 KiB
C
Raw Normal View History

2016-05-04 16:21:42 +02:00
/*
* service.h: EPG2VDR plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
2018-02-16 19:55:36 +01:00
#ifndef _SERVICE_H_
#define _SERVICE_H_
2016-05-04 16:21:42 +02:00
#include <vdr/timers.h>
#include <vdr/epg.h>
#include <list>
//***************************************************************************
// Timer - Skin Interface
//***************************************************************************
class cEpgTimer_Interface_V1 : public cTimer
{
public:
2018-02-16 19:55:36 +01:00
enum TimerType
{
ttRecord = 'R', // Aufnahme-Timer
ttView = 'V', // Umschalt-Timer
ttSearch = 'S' // Such-Timer
};
cEpgTimer_Interface_V1(bool Instant = false, bool Pause = false, const cChannel* Channel = 0)
#if defined (APIVERSNUM) && (APIVERSNUM >= 20301)
: cTimer(Instant, Pause, Channel) {}
#else
: cTimer(Instant, Pause, (cChannel*)Channel) {}
#endif
long TimerId() const { return timerid; }
long EventId() const { return eventid; }
const char* VdrName() const { return vdrName ? vdrName : ""; }
const char* VdrUuid() const { return vdrUuid ? vdrUuid : ""; }
int isVdrRunning() const { return vdrRunning; }
int isLocal() const { return local; }
int isRemote() const { return !isLocal(); }
int isRecordTimer() const { return type == ttRecord; }
int isSwithTimer() const { return type == ttView; }
char State() const { return state; }
int hasState(char s) const { return state == s; }
const char* StateInfo() const { return stateInfo ? stateInfo : ""; }
char Action() const { return action; }
char Type() const { return type; }
time_t CreateTime() const { return createTime; }
time_t ModTime() const { return modTime; }
2016-05-04 16:21:42 +02:00
protected:
long timerid;
long eventid;
char* vdrName;
char* vdrUuid;
int local;
int vdrRunning;
2018-02-16 19:55:36 +01:00
2016-05-04 16:21:42 +02:00
char state;
char* stateInfo;
char action;
2018-02-16 19:55:36 +01:00
char type;
time_t createTime;
time_t modTime;
2016-05-04 16:21:42 +02:00
};
//***************************************************************************
// Timer Service
2016-05-04 16:21:42 +02:00
//***************************************************************************
struct cEpgTimer_Service_V1
{
std::list<cEpgTimer_Interface_V1*> epgTimers;
};
//***************************************************************************
// Timer Detail Service
2016-05-04 16:21:42 +02:00
//***************************************************************************
struct cTimer_Detail_V1
2016-05-04 16:21:42 +02:00
{
long eventid;
int hastimer;
int local;
char type;
};
2016-05-04 16:21:42 +02:00
#define EPG2VDR_TIMER_DETAIL_SERVICE "Epg2Vdr_Timer_Detail_Service-v1.0"
#define EPG2VDR_TIMER_SERVICE "Epg2Vdr_Timer_Service-v1.0"
2018-02-16 19:55:36 +01:00
#ifdef EPG2VDR
//***************************************************************************
//***************************************************************************
//***************************************************************************
// EPG2VDR Internal Stuff
//***************************************************************************
2016-05-04 16:21:42 +02:00
//***************************************************************************
// Class cEpgTimer
//***************************************************************************
class cEpgTimer : public cEpgTimer_Interface_V1
{
public:
cEpgTimer(bool Instant = false, bool Pause = false, const cChannel* Channel = 0);
2016-05-04 16:21:42 +02:00
virtual ~cEpgTimer();
void setTimerId(long id) { timerid = id; }
void setEventId(long id) { eventid = id; }
void setAction(char a) { action = a; }
void setType(char t) { type = t; }
void setCreateTime(time_t t) { createTime = t; }
void setModTime(time_t t) { modTime = t; }
2016-05-04 16:21:42 +02:00
void setState(char s, const char* info);
void setVdr(const char* name, const char* uuid = 0, int running = 0);
};
#endif // EPG2VDR
//***************************************************************************
2018-02-16 19:55:36 +01:00
#endif // _SERVICE_H_