mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
95 lines
2.8 KiB
C++
95 lines
2.8 KiB
C++
#ifndef __nhttpd_neutrinoapi_h__
|
|
#define __nhttpd_neutrinoapi_h__
|
|
|
|
// c++
|
|
#include <map>
|
|
#include <string>
|
|
|
|
// tuxbox
|
|
#include <eventserver.h>
|
|
#include <sectionsdclient/sectionsdclient.h>
|
|
#include <timerdclient/timerdclient.h>
|
|
#include <zapit/client/zapitclient.h>
|
|
|
|
// nhttpd
|
|
#include <helper.h>
|
|
#include "neutrinoyparser.h"
|
|
#include "controlapi.h"
|
|
|
|
//-------------------------------------------------------------------------
|
|
// No Class Helpers
|
|
const char * _getISO639Description(const char * const iso);
|
|
bool _initialize_iso639_map(void);
|
|
|
|
//-------------------------------------------------------------------------
|
|
class CNeutrinoAPI
|
|
{
|
|
// Clientlibs
|
|
CSectionsdClient *Sectionsd;
|
|
CZapitClient *Zapit;
|
|
CTimerdClient *Timerd;
|
|
CEventServer *EventServer;
|
|
|
|
// complete channellists
|
|
CZapitClient::BouquetChannelList RadioChannelList,TVChannelList;
|
|
// events of actual channel
|
|
std::map<unsigned, CChannelEvent *> ChannelListEvents;
|
|
// List of available tv bouquets
|
|
std::map<int, CZapitClient::BouquetChannelList> TVBouquetsList;
|
|
// List of available radio bouquets
|
|
std::map<int, CZapitClient::BouquetChannelList> RadioBouquetsList;
|
|
// List of bouquets
|
|
CZapitClient::BouquetList BouquetList;
|
|
|
|
//bool standby_mode;
|
|
|
|
// some constants
|
|
static std::string Dbox_Hersteller[4];
|
|
static std::string videooutput_names[5];
|
|
static std::string videoformat_names[5];
|
|
static std::string audiotype_names[5];
|
|
static std::string mpegmodes[];
|
|
static std::string ddmodes[];
|
|
|
|
// get functions to collect data
|
|
bool GetChannelEvents(void);
|
|
#if 0 /* unused funktion*/
|
|
bool GetStreamInfo(int bitinfo[10]);
|
|
#endif
|
|
std::string GetServiceName(t_channel_id channel_id);
|
|
CZapitClient::BouquetChannelList *GetBouquet(unsigned int BouquetNr, int Mode);
|
|
CZapitClient::BouquetChannelList *GetChannelList(int Mode);
|
|
|
|
// support functions
|
|
void ZapTo (const char * const target);
|
|
void ZapToSubService(const char * const target);
|
|
void ZapToChannelId (t_channel_id channel_id);
|
|
t_channel_id ChannelNameToChannelId(std::string search_channel_name);
|
|
|
|
void UpdateBouquet(unsigned int BouquetNr);
|
|
void UpdateChannelList(void);
|
|
void UpdateBouquets(void);
|
|
|
|
std::string timerEventType2Str(CTimerd::CTimerEventTypes type);
|
|
std::string timerEventRepeat2Str(CTimerd::CTimerEventRepeat rep);
|
|
std::string getVideoAspectRatioAsString(void);
|
|
int setVideoAspectRatioAsString(std::string newRatioString);
|
|
std::string getVideoResolutionAsString(void);
|
|
std::string getVideoFramerateAsString(void);
|
|
std::string getAudioInfoAsString(void);
|
|
std::string getCryptInfoAsString(void);
|
|
std::string getLogoFile(std::string _logoURL, t_channel_id channelId);
|
|
public:
|
|
CNeutrinoAPI();
|
|
~CNeutrinoAPI(void);
|
|
|
|
CChannelEventList eList;
|
|
CNeutrinoYParser *NeutrinoYParser;
|
|
CControlAPI *ControlAPI;
|
|
|
|
friend class CNeutrinoYParser; // Backreference
|
|
friend class CControlAPI;
|
|
};
|
|
|
|
#endif /*__nhttpd_neutrinoapi_h__*/
|