aboutsummaryrefslogtreecommitdiff
path: root/lib/service
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-26 17:18:52 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-26 17:18:52 +0000
commitbcfb71b423699d8f7e1d1e7bb5dc24ad4413a4ae (patch)
treec7e81151e82f9b7baf1aac81ab34f1532c2c7ef9 /lib/service
parent0bd832437c2d361866236751a03887ecb3048c64 (diff)
downloadenigma2-bcfb71b423699d8f7e1d1e7bb5dc24ad4413a4ae.tar.gz
enigma2-bcfb71b423699d8f7e1d1e7bb5dc24ad4413a4ae.zip
add function to get a list of CAIDs for a running dvb service from python
Diffstat (limited to 'lib/service')
-rw-r--r--lib/service/iservice.h6
-rw-r--r--lib/service/service.cpp8
-rw-r--r--lib/service/servicedvb.cpp21
-rw-r--r--lib/service/servicedvb.h1
4 files changed, 32 insertions, 4 deletions
diff --git a/lib/service/iservice.h b/lib/service/iservice.h
index 7ea8c17b..53abbf1a 100644
--- a/lib/service/iservice.h
+++ b/lib/service/iservice.h
@@ -225,7 +225,7 @@ public:
virtual SWIG_VOID(RESULT) getName(std::string &SWIG_OUTPUT)=0;
virtual SWIG_VOID(RESULT) getEvent(ePtr<eServiceEvent> &SWIG_OUTPUT, int nownext);
- enum {
+ enum {
sIsCrypted, /* is encrypted (no indication if decrypt was possible) */
sAspect, /* aspect ratio: 0=4:3, 1=16:9, 2=whatever we need */
sIsMultichannel, /* multichannel *available* (probably not selected) */
@@ -260,11 +260,13 @@ public:
sComment,
sTracknumber,
sGenre,
+ sCAIDs,
};
- enum { resNA = -1, resIsString = -2 };
+ enum { resNA = -1, resIsString = -2, resIsPyObject = -3 };
virtual int getInfo(int w);
virtual std::string getInfoString(int w);
+ virtual PyObject *getInfoObject(int w);
};
TEMPLATE_TYPEDEF(ePtr<iServiceInformation>, iServiceInformationPtr);
diff --git a/lib/service/service.cpp b/lib/service/service.cpp
index d079965b..11f88b1f 100644
--- a/lib/service/service.cpp
+++ b/lib/service/service.cpp
@@ -1,8 +1,10 @@
#include <lib/base/eerror.h>
#include <lib/base/estring.h>
+#include <lib/python/python.h>
#include <lib/service/service.h>
#include <lib/base/init_num.h>
#include <lib/base/init.h>
+#include <Python.h>
eServiceReference::eServiceReference(const std::string &string)
{
@@ -190,4 +192,10 @@ std::string iServiceInformation::getInfoString(int w)
return "";
}
+PyObject* iServiceInformation::getInfoObject(int w)
+{
+ Py_INCREF(Py_None);
+ return Py_None;
+}
+
eAutoInitPtr<eServiceCenter> init_eServiceCenter(eAutoInitNumbers::service, "eServiceCenter");
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index a6f4eec7..fb84aa18 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -1017,6 +1017,9 @@ int eDVBServicePlay::getInfo(int w)
{
eDVBServicePMTHandler::program program;
+ if (w == sCAIDs)
+ return resIsPyObject;
+
if (m_service_handler.getProgramInfo(program))
return -1;
@@ -1078,15 +1081,29 @@ int eDVBServicePlay::getInfo(int w)
}
std::string eDVBServicePlay::getInfoString(int w)
-{
+{
switch (w)
{
case sProvider:
if (!m_dvb_service) return "";
return m_dvb_service->m_provider_name;
default:
- return "";
+ break;
+ }
+ return iServiceInformation::getInfoString(w);
+}
+
+PyObject *eDVBServicePlay::getInfoObject(int w)
+{
+ switch (w)
+ {
+ case sCAIDs:
+ if (m_dvb_service)
+ return m_service_handler.getCaIds();
+ default:
+ break;
}
+ return iServiceInformation::getInfoObject(w);
}
int eDVBServicePlay::getNumberOfTracks()
diff --git a/lib/service/servicedvb.h b/lib/service/servicedvb.h
index d79e6202..4b13193e 100644
--- a/lib/service/servicedvb.h
+++ b/lib/service/servicedvb.h
@@ -99,6 +99,7 @@ public:
RESULT getEvent(ePtr<eServiceEvent> &evt, int nownext);
int getInfo(int w);
std::string getInfoString(int w);
+ PyObject *getInfoObject(int w);
// iAudioTrackSelection
int getNumberOfTracks();