Ginga  0.13.6
 All Classes Namespaces Functions Variables
IEPGListener.h
1 /******************************************************************************
2 Este arquivo eh parte da implementacao do ambiente declarativo do middleware
3 Ginga (Ginga-NCL).
4 
5 Direitos Autorais Reservados (c) 1989-2007 PUC-Rio/Laboratorio TeleMidia
6 
7 Este programa eh software livre; voce pode redistribui-lo e/ou modificah-lo sob
8 os termos da Licenca Publica Geral GNU versao 2 conforme publicada pela Free
9 Software Foundation.
10 
11 Este programa eh distribuido na expectativa de que seja util, porem, SEM
12 NENHUMA GARANTIA; nem mesmo a garantia implicita de COMERCIABILIDADE OU
13 ADEQUACAO A UMA FINALIDADE ESPECIFICA. Consulte a Licenca Publica Geral do
14 GNU versao 2 para mais detalhes.
15 
16 Voce deve ter recebido uma copia da Licenca Publica Geral do GNU versao 2 junto
17 com este programa; se nao, escreva para a Free Software Foundation, Inc., no
18 endereco 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
19 
20 Para maiores informacoes:
21 ncl @ telemidia.puc-rio.br
22 http://www.ncl.org.br
23 http://www.ginga.org.br
24 http://www.telemidia.puc-rio.br
25 ******************************************************************************
26 This file is part of the declarative environment of middleware Ginga (Ginga-NCL)
27 
28 Copyright: 1989-2007 PUC-RIO/LABORATORIO TELEMIDIA, All Rights Reserved.
29 
30 This program is free software; you can redistribute it and/or modify it under
31 the terms of the GNU General Public License version 2 as published by
32 the Free Software Foundation.
33 
34 This program is distributed in the hope that it will be useful, but WITHOUT ANY
35 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
36 PARTICULAR PURPOSE. See the GNU General Public License version 2 for more
37 details.
38 
39 You should have received a copy of the GNU General Public License version 2
40 along with this program; if not, write to the Free Software
41 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
42 
43 For further information contact:
44 ncl @ telemidia.puc-rio.br
45 http://www.ncl.org.br
46 http://www.ginga.org.br
47 http://www.telemidia.puc-rio.br
48 *******************************************************************************/
49 
50 #ifndef IEPGLISTENER_H_
51 #define IEPGLISTENER_H_
52 
53 #include "tsparser/IEventInfo.h"
54 using namespace br::pucrio::telemidia::ginga::core::tsparser::si;
55 
56 #include <string>
57 #include <map>
58 using namespace std;
59 
60 /*
61  * A Lua Node can register himself to handle EPG events (class='si', type='epg').
62  * Doing this, his associated Lua Player becames an IEPGListener. The standard
63  * defines 3 main types that a Lua Node can request EPG events.
64  *
65  * 1) stage='current', fields={field_1, field_2,...field_j}
66  * 2) stage='next', eventId=<number>, fields={field_1, field_2,...field_j}
67  * 3) stage='schedule', startTime=<date>, endTime=<date>, fields={field_1,
68  * field_2,...field_j}
69  *
70  * The struct Request was create to model a lua node request for EPG events.
71  * That request has to be stored associated with her N IEPGListeners.
72  */
73 
74 struct Request {
75  string stage;
76  /* 3 possible values: current, next or schedule*/
77 
78  unsigned short eventId;
79  /* only if stage==next, requesting the next event of the event with this
80  * eventId. If is not specified, the request is for the next event of the
81  * current event*/
82 
83  string startTime;
84  string endTime;
85  /* only if stage==schedule, requesting events with startTime and endTime in
86  * the range specified by this startTime and this endTime*/
87 
88  vector<string> fields;
89  /*requesting specified metadata fields for each event. If is not specified
90  * the request is for all possible metadada fields*/
91 };
92 
93 struct SIField {
94  string str;
95  map<string, struct SIField> table;
96 };
97 
98 namespace br {
99 namespace pucrio {
100 namespace telemidia {
101 namespace ginga {
102 namespace core {
103 namespace dataprocessing {
104 namespace epg {
105  class IEPGListener {
106 
107  public:
108  static const unsigned char SI_LISTENER = 1;
109  static const unsigned char EPG_LISTENER = 2;
110  static const unsigned char MOSAIC_LISTENER = 3;
111  static const unsigned char TIME_LISTENER = 4;
112 
113  public:
114  virtual ~IEPGListener(){};
115  virtual void pushSIEvent(
116  map<string, struct SIField> event, unsigned char type)=0;
117 
118  virtual void addAsSIListener(unsigned char type)=0;
119  };
120 }
121 }
122 }
123 }
124 }
125 }
126 }
127 
128 #endif /*IEPGLISTENER_H_*/
Definition: IEPGListener.h:74
Definition: IEPGListener.h:93