1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef P2PVR_SI_H
#define P2PVR_SI_H
#include <p2pvr.h>
#include "dbClient.h"
#include <visibility.h>
class DLL_PUBLIC SI : public P2PVR::SI, public DatabaseClient {
public:
DVBSI::Networks GetNetworks(const Ice::Current &);
P2PVR::Deliveries GetAllDeliveries(const Ice::Current &);
DVBSI::DeliveryPtr GetDeliveryForService(int id, const Ice::Current &);
DVBSI::DeliveryPtr GetDeliveryForTransport(int id, const Ice::Current &);
DVBSI::DeliveryPtr GetDeliveryForSi(const Ice::Current &);
DVBSI::ServiceList GetServices(const Ice::Current &);
DVBSI::ServicePtr GetService(int id, const Ice::Current &);
P2PVR::Events GetEvents(const P2PVR::IntSequence & eventUids, const Ice::Current &);
P2PVR::EventPtr GetEvent(int serviceId, int eventId, const Ice::Current &);
P2PVR::Events EventsOnNow(const Ice::Current &);
P2PVR::Events EventsInSchedules(const Ice::Current &);
P2PVR::Events EventsInSchedule(int scheduleId, const Ice::Current &);
P2PVR::Events EventsInRange(const Common::DateTime &, const Common::DateTime &, const Ice::Current &);
P2PVR::Events EventSearch(const IceUtil::Optional<std::string> & keywords, const IceUtil::Optional<Ice::Int> & serviceId, const IceUtil::Optional<Common::DateTime> & from, const IceUtil::Optional<Common::DateTime> & to, const Ice::Current &);
};
#endif
|