DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
clDsmSystem.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 © 2001 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  *******************************************************************************/
25 #ifndef _CLDSMSYSTEM_H_
26 #define _CLDSMSYSTEM_H_
27 
28 
29 /*---includes for this file--------------------------------------------------*/
30 
31 #include "cldsmcc.h"
32 #include "clDsmMemMgrAPI.h"
33 #include "dsmDbg.h"
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 
40 /*---Constant and macro definitions for public use---------------------------*/
41 
42 /* -- Turn off all static declarations in debug mode to enable
43  -- glowcode profiler to detect them */
44 #if (!defined(NDEBUG) && defined(DSM_PROFILING_BUILD))
45 #define static
46 #endif
47 
48 /* -- Context defines */
49 #ifndef DSM_NO_MEM_CONTEXT
50 #define DSM_CONTEXT_DEFN pclDsmInstData_t idp
51 #define DSM_CONTEXT idp
52 #define MEM_CONTEXT idp->memContext
53 #endif
54 
55 
56 /* -- General purpose defines */
57 
58 #define BIT0_MSK 0x01
59 #define BIT1_MSK 0x02
60 #define BIT2_MSK 0x04
61 #define BIT3_MSK 0x08
62 #define BIT4_MSK 0x10
63 #define BIT5_MSK 0x20
64 #define BIT6_MSK 0x40
65 #define BIT7_MSK 0x80
66 
67 #define BIT8_MSK 0x0100
68 #define BIT9_MSK 0x0200
69 #define BIT10_MSK 0x0400
70 #define BIT11_MSK 0x0800
71 #define BIT12_MSK 0x1000
72 #define BIT13_MSK 0x2000
73 #define BIT14_MSK 0x4000
74 #define BIT15_MSK 0x8000
75 
76 #define LSB1_MSK 0x01
77 #define LSB2_MSK 0x03
78 #define LSB3_MSK 0x07
79 #define LSB4_MSK 0x0F
80 #define LSB5_MSK 0x1F
81 #define LSB6_MSK 0x3F
82 #define LSB7_MSK 0x7F
83 #define LSB8_MSK 0xFF
84 
85 #define LSB9_MSK 0x01FF
86 #define LSB10_MSK 0x03FF
87 #define LSB11_MSK 0x07FF
88 #define LSB12_MSK 0x0FFF
89 #define LSB13_MSK 0x1FFF
90 #define LSB14_MSK 0x3FFF
91 #define LSB15_MSK 0x7FFF
92 #define LSB16_MSK 0xFFFF
93 
94 #define MOD2_MSK LSB1_MSK
95 #define MOD4_MSK LSB2_MSK
96 #define MOD8_MSK LSB3_MSK
97 #define MOD16_MSK LSB4_MSK
98 #define MOD32_MSK LSB5_MSK
99 #define MOD64_MSK LSB6_MSK
100 #define MOD128_MSK LSB7_MSK
101 
102 
103 
104 /* -- DSMCC DEFINES */
105 
106 /* NB. All offsets assume that variable length fields are zero length */
107 
108 /* -- DSMCC section header defines */
109 #define DSIDII_ID 0x3B
110 #define DDB_ID 0x3C
111 #define STREAM_DESCR_ID 0x3D
112 
113 #define SECTION_HDR_LEN 8
114 #define MIN_SECTION_LEN 9
115 #define MAX_SECTION_LEN 4093
116 
117 #define MAX_DDB_BLOCKSIZE 4066
118 
119 /* -- DSMCC Message Header (dsmccMessageHeader) defines */
120 #define DSMCC_MSG_HDR_LEN 12
121 
122 /* -- DSI Message defines */
123 #define DSI_HDR_LEN 24
124 #define MIN_SRG_INFO_LEN (IOR_HDR_LEN + \
125  PROFILE_TAG_BIOP_HDR_LEN + \
126  MIN_PROFILE_TAG_BIOP_DATA_LEN)
127 #define MIN_DSI_MSG_BODY_LEN (DSI_HDR_LEN + \
128  MIN_SRG_INFO_LEN)
129 #define MIN_DSI_MSG_LEN (DSMCC_MSG_HDR_LEN + \
130  MIN_DSI_MSG_BODY_LEN)
131 
132 /* -- DII Message defines */
133 
134 #define MIN_DII_MSG_BODY_LEN 20
135 #define MIN_DII_MSG_LEN (DSMCC_MSG_HDR_LEN + \
136  MIN_DII_MSG_BODY_LEN)
137 
138 /* -- DDB message defines */
139 #define DSMCC_DOWNLOAD_HDR_LEN 12
140 #define DDB_MSG_PAYLOAD_HDR_LEN 6
141 #define MIN_DDB_PAYLOAD_DATA_LEN 0
142 #define MIN_DDB_MSG_BODY_LEN (DDB_MSG_PAYLOAD_HDR_LEN + \
143  MIN_DDB_PAYLOAD_DATA_LEN)
144 #define MIN_DDB_MSG_LEN (DSMCC_DOWNLOAD_HDR_LEN + \
145  MIN_DDB_MSG_BODY_LEN)
146 #define MAX_DDB_BLOCKSIZE 4066
147 
148 /* DSMCC Masks */
149 #define TRANSACTION_ID_UPDATED_MASK 0x00000001
150 #define TRANSACTION_ID_IDENT_MASK 0x0000fffe
151 #define TRANSACTION_ID_VERSION_MASK 0x3fff0000
152 #define TRANSACTION_ID_ORIG_MASK 0xc0000000
153 
154 /* DSM-CC Object header defines */
155 #define OBJECT_NUMBYTES_TO_MESSAGE_START 12
156 #define BIOP_MAGIC 0x42494F50
157 
158 /* DSMCC Profile Tags */
159 #define TAG_LITE_OPTIONS 0x49534f05
160 #define TAG_BIOP 0x49534f06
161 #define TAG_CONN_BINDER 0x49534f40
162 #define TAG_SERVICE_LOCATION 0x49534f46
163 #define TAG_OBJECT_LOCATION 0x49534f50
164 
165 /* IOP::IOR defines */
166 #define IOR_HDR_LEN 12
167 
168 /* BIOP::ProfileBody defines */
169 #define PROFILE_TAG_BIOP_HDR_LEN 10
170 #define MIN_PROFILE_TAG_BIOP_DATA_LEN (MIN_OBJ_LOCATION_LEN + \
171  MIN_CONN_BINDER_LEN)
172 
173 /* BIOP::ProfileBody - LiteOptionComponent defines */
174 #define MIN_OBJ_LOCATION_LEN 15
175 #define MIN_OBJLOC_COMPONENT_DATA_LEN (MIN_OBJ_LOCATION_LEN - 5)
176 #define MIN_CONN_BINDER_LEN 23
177 #define MIN_CONBIND_COMPONENT_DATA_LEN (MIN_CONN_BINDER_LEN - 5)
178 
179 
180 /* Tap use constants */
181 #define UNKNOWN_USE ((U16BIT) 0)
182 #define MPEG_TS_UP_USE ((U16BIT) 1) /* MPEG transport upstream from Client */
183 #define MPEG_TS_DOWN_USE ((U16BIT) 2) /* MPEG transport downstream to Client */
184 #define MPEG_ES_UP_USE ((U16BIT) 3) /* MPEG elementary upstream from Client */
185 #define MPEG_ES_DOWN_USE ((U16BIT) 4) /* MPEG elementary downstream to Client */
186 #define DOWNLOAD_CTRL_USE ((U16BIT) 5) /* control request/response */
187 #define DOWNLOAD_CTRL_UP_USE ((U16BIT) 6) /* control request from Client */
188 #define DOWNLOAD_CTRL_DOWN_USE ((U16BIT) 7) /* control response to Client */
189 #define DOWNLOAD_DATA_USE ((U16BIT) 8) /* data request/response */
190 #define DOWNLOAD_DATA_UP_USE ((U16BIT) 9) /* data response upstream from Client */
191 #define DOWNLOAD_DATA_DOWN_USE ((U16BIT) 10) /* data block downstream to Client */
192 #define STR_NPT_USE ((U16BIT) 11) /* NPT Descriptors */
193 #define STR_STATUS_AND_EVENT_USE ((U16BIT) 12) /* Stream Mode and Event Descriptors */
194 #define STR_EVENT_USE ((U16BIT) 13) /* Stream Event Descriptor */
195 #define STR_STATUS_USE ((U16BIT) 14) /* Stream Mode Descriptor */
196 #define RPC_USE ((U16BIT) 15) /* RPC bi-directional */
197 #define IP_USE ((U16BIT) 16) /* IP bi-directional */
198 #define SDB_CTRL_USE ((U16BIT) 17) /* control channel for Switched Digital Broadcast */
199 #define T120_TAP1 ((U16BIT) 18) /* reserved for use and definition by T.120 */
200 #define T120_TAP2 ((U16BIT) 19) /* reserved for use and definition by T.120 */
201 #define T120_TAP3 ((U16BIT) 20) /* reserved for use and definition by T.120 */
202 #define T120_TAP4 ((U16BIT) 21) /* reserved for use and definition by T.120 */
203 #define BIOP_DELIVERY_PARA_USE ((U16BIT) 22) /* Module delivery parameters */
204 #define BIOP_OBJECT_USE ((U16BIT) 23) /* BIOP objects in Modules */
205 #define BIOP_ES_USE ((U16BIT) 24) /* Elementary Stream */
206 #define BIOP_PROGRAM_USE ((U16BIT) 25) /* Program */
207 #define BIOP_DNL_CTRL_USE ((U16BIT) 26) /* Download control messages */
208 
209 /* -- objectKind and IOR typeId strings */
210 #define SRG_STR 0x73726700 /* = "srg\0" */
211 #define DIR_STR 0x64697200 /* = "dir\0" */
212 #define FIL_STR 0x66696c00 /* = "fil\0" */
213 #define STR_STR 0x73747200 /* = "str\0" */
214 #define STE_STR 0x73746500 /* = "ste\0" */
215 
216 /* DSMCC Descriptor Tag found in DII moduleInfo and DSI groupInfo */
217 #define DESCRIPTOR_TYPE_TAG ((U8BIT) 1)
218 #define DESCRIPTOR_NAME_TAG ((U8BIT) 2)
219 #define DESCRIPTOR_INFO_TAG ((U8BIT) 3)
220 #define DESCRIPTOR_MODULE_LINK_TAG ((U8BIT) 4) /* DII only */
221 #define DESCRIPTOR_CRC32_TAG ((U8BIT) 5) /* DII only */
222 #define DESCRIPTOR_LOCATION_TAG ((U8BIT) 6)
223 #define DESCRIPTOR_EST_DOWNLOAD_TIME_TAG ((U8BIT) 7)
224 #define DESCRIPTOR_GROUP_LINK_TAG ((U8BIT) 8) /* DSI only */
225 #define DESCRIPTOR_COMP_MODULE_TAG ((U8BIT) 9) /* DII only */
226 #define DESCRIPTOR_MHP_LABEL ((U8BIT) 0x70) /* DII only */
227 #define DESCRIPTOR_MHP_CACHING_PRIORITY ((U8BIT) 0x71) /* DII only */
228 
229 
230 /* -- MHEG Profile specific (generally useful) defines */
231 
232 /* -- Settings for UK MHEG profile 1 = 64 + 1 for null (v1.05, sections 3.11 and 8.3.3.3) */
233 /* -- BUT Settings for MHP = 254 + 1 for null (ETSI 101 812 (7/2000) section 14.1.4) */
234 #define MAX_PATH_NAME_SIZE 255 /* -- Including null terminator */
235 
236 /* -- NB. Smallest path element length is one char + one seperator char
237  -- (eg. a/). Subtract one from MAX_PATH_NAME_SIZE for null
238  -- terminator and add one to force a round up (since there may
239  -- be no seperator char at start) */
240 #define MAX_DIRECTORY_DEPTH (((MAX_PATH_NAME_SIZE - 1) + 1) / 2)
241 
242 
243 /* -- Implementation specific defines */
244 
245 /* -- Path seperator used for internal path represention only */
246 #define PATH_SEPERATOR_CHAR '/'
247 
248 /* -- Min contiguous memory bytes at start of mem mgr block/mem area */
249 #define MIN_MEM_BLK_SIZE 256
250 
251 /* -- Restricted to keep ModuleBuilder_t within MIN_MEM_BLK_SIZE
252  -- Currently allows max broadcast (compressed) module size of 3.2MBytes */
253 #define MAX_BLOCKS_IN_MODULE 1600
254 
255 /*** TODO: CHECK THIS IS SUFFICIENT IN ALL CASES ***/
256 #define NUM_INTERNAL_MEM_SEQ_MAX 128
257 
258 /* -- Number of module acquisition (& decompress) attempts that will be
259  -- made before giving up */
260 #define MAX_MODULE_DECOMPRESS_FAILURES 3
261 
262 
263 /*
264 -- Section filter defines
265 --
266 -- NOTES:
267 -- To help detect sections supplied from old (deleted) filters, make section
268 -- filter heap bigger than max filters so memory not re-used immediately.
269 --
270 */
271 #define SECTION_FILTER_HEAP_SLACK 16
272 #define SECTION_FILTER_HEAP_SIZE (NUM_SECTION_FILTERS_MAX_DEFAULT + \
273  SECTION_FILTER_HEAP_SLACK)
274 
275 
276 /*
277 -- zlib heap size defines (for moduleDecompress)
278 */
279 /* -- TODO: check 32K (was 16K) is always sufficient extra heap
280  OR: pass zlib alloc funcs via core API so platform layer can decide
281  where to get zlib memory */
282 /* RJH largest allocation yet seen is around 40k. Also some non-stack behaviour
283  seen, resulting in external fragmentation.
284  64k (32k window size + 32k extra) is probably a reasonable size for now,
285  but REVISIT */
286 #define ZLIB_HEAP_NUM_BYTES (((U32BIT)1 << 15 /*MAX_WBITS*/ ) + (1024*32/*16*/))
287 #define ZLIB_HEAP_NUM_WORDS ((ZLIB_HEAP_NUM_BYTES + 3) >> 2)
288 
289 
290 /* Object Carousel Linked List IDs */
291 #define OBJECT_CAROUSEL_LIST 0
292 
293 #define NUM_LISTS_OBJECT_CAROUSEL 1
294 
295 
296 /* Data Carousel Linked List IDs */
297 #define OC_DATA_CAROUSEL_LIST 0
298 #define OC_DII_ACQUIRE_LIST 1
299 
300 #define OC_LITE_OBJECT_LOAD_LIST 0
301 #define NUM_LITE_OBJECT_LOAD_LIST 1
302 
303 #define NUM_LISTS_DATA_CAROUSEL 2
304 
305 
306 /* Module Linked List IDs */
307 #define DC_MODULE_LIST 0
308 #define OC_MODULE_ACQUIRE_LIST 1
309 #define MODULE_PRIORITY_LIST 2
310 #define MODULE_LOADED_LIST 2
311 #define MODULE_DELETE_LIST 2
312 
313 #define NUM_LISTS_MODULE 3
314 
315 
316 /* Object Linked List IDs */
317 #define CURR_OBJECT_LIST 0
318 #define MODULE_OBJECT_LIST 1 /* -- Currently not used */
319 
320 #define NUM_LISTS_OBJECT 2
321 
322 
323 /* Load Request Linked List IDs */
324 #define CURR_LOAD_REQUEST_LIST 0
325 #define MODULE_LOAD_REQUEST_LIST 1
326 
327 #define NUM_LISTS_LOAD_REQUEST 2
328 
329 /* SI Query Linked List IDs */
330 #define CURR_SI_QUERY_LIST 0
331 #define DUPLICATE_SI_QUERY_LIST 1
332 
333 #define NUM_LISTS_SI_QUERY 2
334 
335 /*
336 -- General purpose debug check and action macro (disabled by NDEBUG)
337 --
338 -- condn = valid condition to be checked for error (eg. err == CLDSM_OK )
339 -- dbgErrActn = command(s) to execute on error condition in debug builds
340 */
341 
342 #ifdef NDEBUG
343  #define DEBUG_CHK( condn, dbgActn )
344 #else
345  #define DEBUG_CHK( condn, dbgActn ) if (!( condn )) { dbgActn; }
346 #endif
347 
348 
349 
350 /*
351 -- Macro to provide API parameter checking that can be disabled in retail
352 -- builds if required (via DSM_NO_API_PARAM_CHECK)
353 --
354 -- API parameter checking in retail builds is enabled by default (ie. if
355 -- DSM_NO_API_PARAM_CHECK is not defined).
356 --
357 -- condn = valid condition to be checked for error (eg. err == CLDSM_OK )
358 -- dbgErrActn = command(s) to execute on error condition in debug builds
359 -- relErrActn = command(s) to execute on error condition in all builds
360 -- *** NB. dbgErrActn always executed before relErrActn ***
361 --
362 */
363 #ifdef DSM_NO_API_PARAM_CHECK
364 
365  /* -- API parameter checking in debug builds only */
366 
367  #ifdef NDEBUG
368 
369  #define API_PARAM_CHK( condn, dbgErrActn, relErrActn )
370 
371  #else
372 
373  #define API_PARAM_CHK( condn, dbgErrActn, relErrActn ) \
374  if (!( condn )) { dbgErrActn; } \
375 
376  #endif
377 
378 #else
379 
380  /* -- API parameter checking in all builds (default) */
381 
382  #define API_PARAM_CHK( condn, dbgErrActn, relErrActn ) \
383  if (!( condn )) { dbgErrActn; relErrActn; } \
384 
385 #endif
386 
387 
388 
389 /*
390 -- These macro definitions provide three 'priority' levels (0, 1, 2) of
391 -- general purpose data error checking.
392 -- The highest priority (0) is always performed and cannot be disabled, the
393 -- lower two priorities can be optionally disabled for retail mode (at compile
394 -- time).
395 --
396 -- The lower priority levels (2 or 1 & 2) can be enabled/disabled for retail
397 -- builds (via DSM_DATA_CHECK_LEVEL).
398 --
399 -- Both lower levels (1 & 2) of checking are always enabled in debug mode
400 --
401 -- The default data check level in retail builds is level 1 (ie. if
402 -- DSM_DATA_CHECK_LEVEL is not defined).
403 --
404 -- Syntax is:
405 -- L<level>_DATA_CHK( condn, dbgErrActn, relErrActn )
406 --
407 -- <lvl> = 1 - Level 1 priority checking only
408 -- <lvl> = 2 - Level 1 and level 2 checking
409 --
410 -- condn = valid condition to be checked for error (eg. err == CLDSM_OK )
411 -- dbgErrActn = command(s) to execute on error condition in debug builds
412 -- relErrActn = command(s) to execute on error condition in all builds
413 -- *** NB. dbgErrActn always executed before relErrActn ***
414 --
415 */
416 #if !defined(DSM_DATA_CHECK_LEVEL)
417  #define DSM_DATA_CHECK_LEVEL 1
418 #endif
419 
420 
421 /* -- Level 0 data checking always performed */
422 
423 #define L0_DATA_CHK( condn, dbgErrActn, relErrActn ) \
424  if (!( condn )) { dbgErrActn; relErrActn; } \
425 
426 
427 #if DSM_DATA_CHECK_LEVEL >= 1
428 
429  /* -- Level 1 data checking in all builds (default) */
430 
431  #define L1_DATA_CHK( condn, dbgErrActn, relErrActn ) \
432  if (!( condn )) { dbgErrActn; relErrActn; } \
433 
434 #else
435 
436  /* -- Level 1 data checking in debug builds only */
437 
438  #if (defined(NDEBUG) || defined(DSM_PROFILING_BUILD))
439 
440  #define L1_DATA_CHK( condn, dbgErrActn, relErrActn )
441 
442  #else
443 
444  #define L1_DATA_CHK( condn, dbgErrActn, relErrActn )\
445  if (!( condn )) { dbgErrActn; } \
446 
447  #endif
448 
449 #endif
450 
451 
452 #if DSM_DATA_CHECK_LEVEL >= 2
453 
454  /* -- Level 2 data checking in all builds */
455 
456  #define L2_DATA_CHK( condn, dbgErrActn, relErrActn ) \
457  if (!( condn )) { dbgErrActn; relErrActn; } \
458 
459 #else
460 
461  /* -- Level 2 data checking in debug builds only (default) */
462 
463  #if (defined(NDEBUG) || defined(DSM_PROFILING_BUILD))
464 
465  #define L2_DATA_CHK( condn, dbgErrActn, relErrActn )
466 
467  #else
468 
469  #define L2_DATA_CHK( condn, dbgErrActn, relErrActn )\
470  if (!( condn )) { dbgErrActn; } \
471 
472  #endif
473 
474 #endif
475 
476 
477 
478 /* In debug only, this macro checks for error codes returned from memory API
479  functions */
480 #ifndef NDEBUG
481 #define CHECK_MEM_ERR( func ) \
482  { \
483  E_DsmMemErr memErr; \
484  \
485  memErr = func; \
486  if (memErr != MEM_NO_ERR) { \
487  dsmDP1(( "Memory error : %i \n", memErr )); \
488  dsmAssert(( memErr == MEM_NO_ERR )); \
489  } \
490  }
491 
492 #else
493 #define CHECK_MEM_ERR( x ) x
494 #endif
495 
496 
497 /*---Enumerations for public use---------------------------------------------*/
498 
499 /*---Global type defs for public use-----------------------------------------*/
500 
501 
502 /* General DSMCC types */
503 
504 typedef U8BIT ModuleVersion_t;
505 
506 
507 /* Object Location Types */
508 typedef struct {
509  U8BIT length;
510  U8BIT data[4];
512 
513 
514 typedef struct {
515  U32BIT carouselId;
516  U16BIT moduleId;
517  ObjectKey_t objectKey;
518  U32BIT uiBindingTag;
519  U8BIT dvbCarouselNSAPaddress[20];
520  S8BIT pathName[65];// TODO use [MAX_PATH_NAME_SIZE];
522 
523 
524 /* Tap Types */
525 typedef struct {
526  /* use = BIOP_DELIVERY_PARA_USE */
527  U16BIT id;
528  U16BIT associationTag;
529  U32BIT transactionId;
530  U32BIT timeout;
532 
533 
534 typedef struct {
535  /* use = BIOP_OBJECT_USE */
536  U16BIT id;
537  U16BIT associationTag;
539 
540 
541 typedef struct s_LLControl *P_LLControl;
542 typedef struct s_se_info* ps_se_info;
543 
544 typedef struct s_ObjectCarousel *pObjectCarousel_t;
545 typedef struct s_Module *pModule_t;
546 
547 /*
548 -- Structure type for DSM-CC Core Layer instance data
549 */
550 
552 
553  /* -- SETUP DATA (COPY) */
554  clDsmSetup_t setup;
555 
556 
557  /* -- Recursion depth counters for specific functions */
558  U32BIT pfrdoCallDepth; /* -- For preFetchRelativeDirObj() */
559  U32BIT pfdlfCallDepth; /* -- For preFetchDirLoadFinalise() */
560  U32BIT pfsdndCallDepth; /* -- For preFetchSubDirsAndNewDIIsFromLoadedDir() */
561 
562  /* -- Store for memory manager context (from memStart) */
563  void* memContext;
564 
565  /* -- Store for current service info */
566  S_DvbLocator dvbLocator;
567  BOOLEAN currentServiceSet;
568  BOOLEAN cacheFull;
569 
570  /* -- Generation counter for siQuery results and sections */
571  U32BIT generationCount;
572 
573  /* -- Store for SI query results */
574  BOOLEAN lastPIDResultStored;
575  U16BIT lastServiceId;
576  U16BIT lastAssociationTag;
577  U16BIT lastPID;
578 
579  /* -- Store of number of objects currently opened by clients */
580  /* TODO: Should be stored in OC when multi-carousel supported */
581  U32BIT dsmObjectsOpen;
582 
583  /* -- Handle to section filter heap memory */
584  void* sectionFilterHeap;
585 
586  /* -- zlib heap memory (for module decompress) */
587  /* TODO: malloc this in moduleDecompressInit ? */
588  U32BIT* zlibHeapPtr;
589  U32BIT* zlibHeapTop;
590  U32BIT zlibHeap[ ZLIB_HEAP_NUM_WORDS ];
591 
592  pObjectCarousel_t pCurrentCarousel;
593  pObjectCarousel_t pBootingCarousel;
594 
595  P_LLControl llcObjectCarousels;
596  P_LLControl llcModulePriority;
597  P_LLControl llcLoadedModules;
598  P_LLControl llcExpiredModules;
599  P_LLControl llcCurrObjects;
600  P_LLControl llcCurrLoadRequests;
601  P_LLControl llcCurrSiQueries;
602 
603  ps_se_info hSubscribedEventList;
604 
606 
608 
609  void* mainTimerHandle;
610  void* nextTimerHandle;
611  U32BIT mainDuration;
612  U32BIT nextDuration;
613 
615 
616 /*------------------------------ Exported Data -----------------------------*/
617 
618 
619 /*--------------------------- Exported Prototypes --------------------------*/
620 
621 clDsmErr_t clDsmUnloadAllObjects( clDsmInstHandle_t instance, E_DsmRstMode mode );
622 
623 /*----------------------------------------------------------------------------*/
624 
625 #ifdef __cplusplus
626 }
627 #endif
628 #endif /* _CLDSMSYSTEM_H_ */
Definition: clDsmSystem.h:508
Definition: streamEvent.c:57
Definition: module.h:98
Definition: dvblocator.h:30
DSM-CC dynamic memory manager API.
Definition: cldsmcc.h:681
Definition: clDsmSystem.h:525
Definition: clDsmSystem.h:534
Main API to DSM-CC core layer (provided functions and required callbacks).
Definition: clDsmSystem.h:551
Definition: clDsmSystem.h:514
Definition: linkList.h:55
Internal Platform dependent definitions, for debug.
Definition: clDsmSystem.h:607