MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mh5queue.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  * Copyright © 2000 Koninklijke Philips Electronics N.V
5  *
6  * This file is part of a DTVKit Software Component
7  * You are permitted to copy, modify or distribute this file subject to the terms
8  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
9  *
10  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
11  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
13  *
14  * If you or your organisation is not a member of DTVKit then you have access
15  * to this source code outside of the terms of the licence agreement
16  * and you are expected to delete this and any associated files immediately.
17  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
18  *******************************************************************************/
28 #ifndef _MH5QUEUE_H
29 #define _MH5QUEUE_H
30 
31 /*---includes for this file--------------------------------------------------*/
32 
33 #include "mh5action.h"
34 #include "mh5link.h"
35 #include "mh5group.h"
36 
37 /*---Constant and macro definitions for public use---------------------------*/
38 
39 /*---Enumerations for public use---------------------------------------------*/
40 
41 /*---Global type defs for public use-----------------------------------------*/
42 
43 typedef enum
44 {
48 
51  #if defined(INCLUDE_FREESAT) || defined(INCLUDE_IPLAYER)
52  EE_SUBTITLE_PREF_CHANGED = 8,
53  #endif
54 
57 
59 
61 
66 
68 
69  #ifdef INCLUDE_IC
70  EE_IC_STATUS_CHANGED = 200,
71  EE_IC_LOCAL_ERROR = 201,
72  EE_IC_NETWORK_ERROR = 202,
73  EE_IC_REMOTE_ERROR = 203,
74 
75  #ifdef INCLUDE_ICS
76  EE_IC_STREAM_REF_ERROR = 204,
77  EE_IC_STREAM_UNDERFLOW = 205,
78 
79  #ifdef INCLUDE_FREESAT
80  EE_IP_STREAM_ACCESS_ERROR = 206,
81  #endif
82 
83  #if defined(INCLUDE_FREESAT) || defined(INCLUDE_IPLAYER)
84  EE_AUDIO_DESC_PREF_CHANGED = 207,
85  #endif
86 
87  EE_IC_STREAM_UNDERFLOW_RESUME = 208,
88  EE_IC_KEY_FILE_ERROR = 210,
89 
90  #endif /* INCLUDE_ICS */
91  #endif /* INCLUDE_IC */
92 
94 
98 
99 /*---Global variable declarations for public use-----------------------------*/
100 
101 /*---Global Function prototypes for public use-------------------------------*/
102 
103 
104 #ifdef MH5PRINTOUT
105 
110 void MHEG5queuePrint(char *out);
111 #endif
112 
113 
119 void MHEG5queueResetScene( MHEG5Root *grp );
120 
127 
134 
142 void MHEG5actionListExecute( MHEG5Group *source, MHEG5ActionList actions );
143 
144 
151 
157 void MHEG5AppendActionList( MHEG5ActionList actions );
158 
166 void MHEG5sendEvent( MHEG5Root *source, MHEG5EventType event, int data );
167 
172 void MHEG5sendAppEngineEvent( E_ENGINE_EVENT engine_event );
173 
181 void MHEG5sendSync( MHEG5Root *source, MHEG5EventType event, int data );
182 
183 
192 
193 
199 void MHEG5queueEvents(void);
200 
201 
211 void MHEG5processQueue(void);
212 
213 
224 
225 
233 void MHEG5eventProcessingReset(void);
234 
235 
240 void MHEG5requestDisplayUpdate(void);
241 
242 
243 int MHEG5InitQueues(void);
244 void MHEG5ExitQueues(void);
245 
246 #endif /*_MH5QUEUE_H*/
Definition: mh5action.h:200
void MHEG5sendAppEngineEvent(E_ENGINE_EVENT engine_event)
Store an Engine event in the asynchronous event queue.
Definition: mh5queue.c:1729
Definition: mh5queue.h:47
Definition: mh5queue.h:65
int MHEG5InitQueues(void)
Definition: mh5queue.c:893
void MHEG5queueEvents(void)
Allow future events to be stored in the event queues. See also MHEG5stopEventsAndQueueReset.
Definition: mh5queue.c:1624
const char * data
Definition: mh5gate.c:65
void MHEG5requestDisplayUpdate(void)
Request display update at the end of synchronous event processing.
Definition: mh5queue.c:1952
void MHEG5actionListExecute(MHEG5Group *source, MHEG5ActionList actions)
Execute the supplied list of actions immediately. The actions will have been executed by the time the...
Definition: mh5queue.c:1485
void MHEG5PrependActionList(MHEG5ActionList actions)
Execute the supplied list of actions before others.
Definition: mh5queue.c:1598
Definition: mh5group.h:47
void MHEG5eventProcessingReset(void)
Causes the MHEG5enableEventProcessing counter to be reset to 0, and event processing to be enabled...
Definition: mh5queue.c:1892
Definition: mh5queue.h:56
void MHEG5AppendActionList(MHEG5ActionList actions)
The supplied list of actions should execute after any already on queue.
Definition: mh5queue.c:1072
Definition: mh5queue.h:96
Definition: mh5queue.h:55
Implementation of the Group class Description Defines the structure and behaviour of objects used as ...
Definition: mh5queue.h:45
Definition: mh5queue.h:60
MHEG5EventType
Definition: mh5base.h:110
void MHEG5stopEventsAndResetQueue(void)
Discard any pending events and actions and prevent future events from being queued. And reset queues. See also MHEG5queueEvents.
Definition: mh5queue.c:949
void MHEG5ExitQueues(void)
Definition: mh5queue.c:1040
Definition: mh5queue.h:63
Manage elementary actions Manage a table of all actions and call a specific action which is defined b...
void MHEG5sendSync(MHEG5Root *source, MHEG5EventType event, int data)
Store an event in the synchronous event queue.
Definition: mh5queue.c:1747
void MHEG5processQueue(void)
Process all pending events and actions. After processing all events and actions, Normally there will ...
Definition: mh5queue.c:1418
Definition: mh5queue.h:50
void MHEG5queueResetScene(MHEG5Root *grp)
Reset both event queues and the action queue, discarding any pending events and actions for this scen...
Definition: mh5queue.c:1000
short MHEG5Bool
Definition: mh5base.h:67
Definition: mh5queue.h:64
Definition: mh5queue.h:95
void MHEG5sendEvent(MHEG5Root *source, MHEG5EventType event, int data)
Store an event in the asynchronous event queue.
Definition: mh5queue.c:1636
void MHEG5queueUnresolveTargets(MHEG5ActionList actions)
Clear targets for the action list.
Definition: mh5queue.c:1262
Definition: mh5queue.h:46
Definition: mh5root.h:43
Definition: mh5queue.h:93
Definition: mh5queue.h:58
void MHEG5queueResolveTargets(MHEG5ActionList actions)
Finds targets for the action list.
Definition: mh5queue.c:1240
void MHEG5enableEventProcessing(MHEG5Bool enable)
Enable or disable engine event processing. This function is used to implement the Call action for res...
Definition: mh5queue.c:1848
Definition: mh5queue.h:62
E_ENGINE_EVENT
Definition: mh5queue.h:43
Definition: mh5queue.h:49
Definition: mh5queue.h:67