1 #ifndef __lib_service_event_h
2 #define __lib_service_event_h
11 #include <lib/base/object.h>
12 #include <lib/service/iservice.h>
14 SWIG_IGNORE(eComponentData);
17 DECLARE_REF(eComponentData);
19 uint8_t m_streamContent;
20 uint8_t m_componentType;
21 uint8_t m_componentTag;
22 std::string m_iso639LanguageCode;
25 int getStreamContent(void) const { return m_streamContent; }
26 int getComponentType(void) const { return m_componentType; }
27 int getComponentTag(void) const { return m_componentTag; }
28 std::string getIso639LanguageCode(void) const { return m_iso639LanguageCode; }
29 std::string getText(void) const { return m_text; }
31 SWIG_TEMPLATE_TYPEDEF(ePtr<eComponentData>, eComponentDataPtr);
33 SWIG_ALLOW_OUTPUT_SIMPLE(eServiceReference); // needed for SWIG_OUTPUT in eServiceEvent::getLinkageService
35 SWIG_IGNORE(eServiceEvent);
36 class eServiceEvent: public iObject
38 DECLARE_REF(eServiceEvent);
39 bool loadLanguage(Event *event, std::string lang, int tsidonid);
40 std::list<eComponentData> m_component_data;
41 std::list<eServiceReference> m_linkage_services;
45 std::string m_event_name, m_short_description, m_extended_description;
46 static std::string m_language;
50 RESULT parseFrom(Event *evt, int tsidonid=0);
51 RESULT parseFrom(const std::string filename, int tsidonid=0);
52 static void setEPGLanguage( const std::string language );
54 time_t getBeginTime() const { return m_begin; }
55 int getDuration() const { return m_duration; }
56 int getEventId() const { return m_event_id; }
57 std::string getEventName() const { return m_event_name; }
58 std::string getShortDescription() const { return m_short_description; }
59 std::string getExtendedDescription() const { return m_extended_description; }
60 std::string getBeginTimeString() const;
61 SWIG_VOID(RESULT) getComponentData(ePtr<eComponentData> &SWIG_OUTPUT, int tagnum) const;
62 int getNumOfLinkageServices() const { return m_linkage_services.size(); }
63 SWIG_VOID(RESULT) getLinkageService(eServiceReference &SWIG_OUTPUT, eServiceReference &parent, int num) const;
65 SWIG_TEMPLATE_TYPEDEF(ePtr<eServiceEvent>, eServiceEvent);
66 SWIG_EXTEND(ePtr<eServiceEvent>,
67 static void setEPGLanguage( const std::string language )
69 extern void setServiceEventLanguage(const std::string language);
70 setServiceEventLanguage(language);
75 SWIG_IGNORE(eDebugClass);
76 class eDebugClass: public iObject
78 DECLARE_REF(eDebugClass);
81 static void getDebug(ePtr<eDebugClass> &ptr, int x) { ptr = new eDebugClass(x); }
82 eDebugClass(int i) { printf("build debug class %d\n", i); x = i; }
83 ~eDebugClass() { printf("remove debug class %d\n", x); }
85 SWIG_TEMPLATE_TYPEDEF(ePtr<eDebugClass>, eDebugClassPtr);