DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
cldsmcc.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  *******************************************************************************/
27 /*
28  * DVB DSM-CC Object Carousel Core Layer API
29  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
30  *
31  * OVERVIEW:
32  *
33  * This API has been specified in standard ANSI C and is designed as a completely
34  * OS and Platform (ie. HW and SW driver) independent interface to the core
35  * DSM-CC layer.
36  *
37  * To avoid confusion over the sizes of standard C types on different platforms, it
38  * assumes that a standard set of unambiguous type names have been defined to
39  * platform specific types in the file clDsmPlatformAPI.h (also standard
40  * definitions for TRUE/FALSE/Null). NB. This currently matches the recommended DVP
41  * coding standards.
42  *
43  *
44  * DSM-CC code conforming to this API should be readily portable to any platform
45  * and OS environment. It assumes that this environment (designated 'the
46  * calling environment') can provide the following:
47  *
48  * - Filtering of MPEG2 private sections from a single transport stream on multiple
49  * simultaneous PID values and section filter values.
50  *
51  * - Acquisition and parsing of PMT(s) for specified program stream, query/lookup
52  * of specific information from the SI data
53  *
54  * - Basic block memory allocation and de-allocation (at startup and shutdown)
55  *
56  * - Semaphore or queuing mechanisms for synchronising API calls initiated by
57  * asynchronously running tasks or threads
58  *
59  * - Queuing mechanisms, eg. for notifying clients of asynchronous object loads
60  *
61  * - Multiple timers (eg. 10mS resolution)
62  *
63  * - Dynamic (heap) memory management that conforms to the API specified in
64  * clDsmMemMgrApi.h
65  *
66  * NB. A non-fragmenting linked-block based memory manager that conforms to this
67  * API is supplied along with the DSM-CC core stack (clDsmMemMgrBlock.c).
68  *
69  *
70  * It is intended that all platform (and DSM-CC profile) specific functions
71  * including handling of multiple clients/apps (if required) are implemented in
72  * wrapper layers that call into this API. Only these layers should need to
73  * be modified when porting to a new platform (or DSM-CC profile).
74  *
75  *
76  * BASIC DATA FLOW AND LAYERS:
77  *
78  * +-----------+ +-----load/unload-----------------+
79  * | DEMUX & | DSM-CC | carousel |
80  * TS-->| section |---private------+ | |
81  * | filters | sections | | +--subscribe/unsubscribe--+ |
82  * +-----------+ | | | for stream event | |
83  * A | | | | |
84  * | | | | load/unload +---------------+
85  * +---add/delete-----+ | | | +-open/close--| CLIENT(s) |
86  * section filter | | | | | object +---------------+
87  * | | | | | A A A
88  * +---SI Query--+ | | | | | | | |
89  * | result | | V V V V | | |
90  * +----------------+ | +------------------------+ | | |
91  * SI->| SI (PAT/PMT) | +->| | object/ | | |
92  * | database | | |--carousel-+ | |
93  * +----------------+ +---| | loaded | |
94  * A | | | | |
95  * | | | Platform & Profile |--stream event--+ |
96  * +--SI Query--+ | (eg.MHEG/MHP) specific | |
97  * | 'porting' layer(s) | +-object data/info-+
98  * +--Trigger-->| | |
99  * +----------+ | | | |
100  * | Timers |--+ +-----| | |
101  * +----------+ | |------synchronous-------+-asynchronous-+
102  * A | |==============(clDsmAPI)===============|
103  * | | | |
104  * +---start/stop--+ | |
105  * | DSM-CC |
106  * | CORE (IP) LAYER |
107  * | |
108  * | |
109  * | |
110  * +-------------------/\------------------+
111  * +--------\/--------+
112  * | DSMCC DATA CACHE |
113  * +------------------+
114  *
115  *
116  * --------------------------------------------------------------------------------
117  */
118 #ifndef _DSMCC_H_
119 #define _DSMCC_H_
120 
121 /*---includes for this file--------------------------------------------------*/
122 #include "cldsmtypes.h"
123 
124 #ifdef __cplusplus
125 extern "C" {
126 #endif
127 
128 
129 /*---Constant and macro definitions for public use---------------------------*/
130 
131 #define NUM_OPEN_DSM_OBJECTS_MAX 128
132 
133 #define DSMCC_MINIMUM_CACHE_SIZE (1024 * 1024 * 1)
134 #define DSMCC_DEFAULT_CACHE_SIZE (1024 * 1024 * 6)
135 
136 /* -- caching priority rules */
137 #define CACHE_RULES_DEFAULT 0x003F
138 #define CACHE_RULES_FROM_STREAM (0)
139 #define CACHE_RULES_STATIC 0x0080
140 #define CACHE_RULES_EXISTS 0x0400
141 
142 /* -- Progress codes */
143 #define CLDSM_PROG_CURR_SERVICE_CACHE_FULL 0
144 /* + ? */
145 
146 
147 /*---Enumerations for public use---------------------------------------------*/
148 
149 /*---Global type defs for public use-----------------------------------------*/
150 
151 
152 /*
153 -- **** TIMER EVENT TYPES ***
154 */
155 
156 typedef struct _clDsmTimerRef_struct* clDsmTimerRef_t;
157 
158 /* -- Timer event status -- */
159 typedef enum {
160  TIMER_TRIGGERED = 0,
161  TIMER_ABORTED
162 } clDsmTimerEventStatus_t, *pclDsmTimerEventStatus_t;
163 
164 
165 /*
166 -- **** CAROUSEL TYPES ***
167 */
168 
169 typedef struct s_ObjCarousel* clDsmOCHandle_t;
170 
171 
172 /*
173 -- **** OBJECT DATA TYPES ***
174 */
175 
177 
178 /* -- Object kind -- */
179 typedef enum {
180  ANON_OBJ = 0,
181  FILE_OBJ,
182  DIRECTORY_OBJ,
183  SERVICE_GATEWAY_OBJ,
184  STREAM_OBJ,
185  STREAM_OBJ_WITH_EVENTS,
186  LINK_TO_ALTERNATE_OC_OBJ
187 } clDsmObjectKind_t, *pclDsmObjectKind_t;
188 
189 
190 /*
191 -- Status type for object load
192 */
193 typedef enum {
194  /*0*/ OBJ_LOAD_UNINITIATED = 0,
195  /*1*/ OBJ_LOAD_IN_PROGRESS,
196  /*2*/ OBJ_LOAD_COMPLETED,
197  /*3*/ OBJ_LOAD_ABORTED_TIMEOUT,
198  /*4*/ OBJ_LOAD_ABORTED_PATH_ERROR,
199  /*5*/ OBJ_LOAD_ABORTED_ERROR,
200 #ifdef DSM_MHP_PROFILE
201  /*6*/ OBJ_LOAD_ABORTED_UNLOAD,
202  /* -- NOT CURRENTLY IMPLEMENTED */
203  /*7*/ OBJ_LOAD_PARENT_DIR_LOADED
204 #else
205  /*6*/ OBJ_LOAD_ABORTED_UNLOAD
206 #endif
207 } clDsmObjLoadStatus_t, *pclDsmObjLoadStatus_t;
208 
209 
210 typedef struct s_ObjUserData *H_ObjUserData;
211 
212 /*
213 -- **** STREAM EVENT DATA TYPES ****
214 */
215 
216 typedef struct _clDsmStreamEventHandle_struct* clDsmStreamEventHandle_t;
217 
218 /*
219  This is the current status of the notification of a Stream Event.
220 */
221 typedef enum
222 {
223  SEN_INITIAL,
224  SEN_NOTIFIED,
225  SEN_ABORTED_OBJ_LOAD_FAILED,
226  SEN_ABORTED_SUBSCRIBE_FAILED,
227  SEN_TRIGGERED,
228  SEN_ACKNOWLEDGE_UNSUBSCRIBE
229 } clDsmSENotifyStatus_t;
230 
231 
232 /* --------------- REQUIRED API - CALLBACK TYPE DEFINITIONS ----------------- */
233 
234 /*
235 -- NOTES:
236 --
237 -- The calling environment must provide functions that match these callback
238 -- type definitions (except clDsmProgressFunc_t which is optional). All
239 -- required callbacks should be non-blocking. The callback addresses are
240 -- supplied to the DSM-CC instance at instance create/setup.
241 --
242 -- The callbacks are not expected to fail except under exception conditions.
243 --
244 -- For callbacks with 'int' return values, this should be used to indicate:
245 -- zero: Successful execution/registration of call with calling env.
246 -- non-zero: Failure to execute/register call (eg. due to memory failure)
247 --
248 -- The DSMCC library will attempt to take some logical actions in response to a
249 -- failure of a start/add callback that may enable it to continue.(eg. abandon
250 -- request and notify client of a load failure due to system error).
251 --
252 -- The stop/delete callbacks are not provided with return values since there is
253 -- no meaningful action the DSM-CC library can take in response to these
254 -- failing. If it is possible that these callbacks fail to execute the
255 -- requested action then the internal state of the DSM-CC library will become
256 -- inconsistent with the calling environment. The calling environment must
257 -- handle this situatation - eg. by raising an exception and processing it when
258 -- the DSM-CC API call that triggered it completes. The calling environment
259 -- should deal with the problem before making any further DSM-CC API calls
260 -- (except clDsmSysReset or clDsmSysDestroy). It should either ensure that the
261 -- action requested by the callback is successfully executed or clear the problem
262 -- and reset/restart the DSM-CC library.
263 --
264 */
265 
266 
267 /* -- INSTANCE MEMORY CALLBACKS -- */
268 
269 /*******************************************************************************
270 * Memory allocate callback function (supplied at setup/clDsmSysCreate)
271 *
272 * NOTES:
273 * This will be called from clDsmSysCreate to allocate the memory for the instance
274 * 'static' variables (according to the setup parameters supplied by the calling
275 * environment).
276 *
277 * It is mostly called to allocate memory for caching DSM-CC data.
278 *
279 * In some extreme circumstances it may be called to allocate some additional
280 * instance memory for section filtering. This will only happen when/if the number
281 * of simultaneous section filters required exceeds the pre-allocated number.
282 * Any additional instance memory will not freed until the instance is destroyed
283 *
284 * RETURNS: pointer to start of allocated memory block, Null = FAILURE
285 *
286 *******************************************************************************/
287 typedef void* (*clDsmAllocFunc_t) ( /*I*/ U32BIT sizeInBytes );
288 
289 
290 /*******************************************************************************
291 * Memory free/de-allocate callback function (supplied at setup/clDsmSysCreate)
292 *
293 * NOTES:
294 * This will be called one or more times from clDsmSysDestroy to free any
295 * memory allocated for the instance. It is NOT called from any other API
296 * function.
297 *
298 *******************************************************************************/
299 typedef void (*clDsmFreeFunc_t) ( /*I*/ void* memory );
300 
301 
302 
303 /* -- ERROR/PROGRESS CALLBACKS -- */
304 
305 /*******************************************************************************
306 * Informs calling environment of errors triggered during stream/section
307 * processing
308 *******************************************************************************/
309 typedef void (*clDsmErrorFunc_t) ( /*I*/ clDsmErr_t err, void* args );
310 
311 
312 /*******************************************************************************
313 * Informs calling environment of state changes triggered during
314 * stream/section processing
315 *******************************************************************************/
316 typedef void (*clDsmProgressFunc_t) ( /*I*/ U32BIT prog, void* args );
317 
318 
319 
320 /* -- TIMER CALLBACKS -- */
321 
322 /*******************************************************************************
323 * Starts timer with specified period
324 *
325 * Timer trigger/timeout notified via clDsmSysProcessTimerEvent().
326 *
327 * When notifying a timeout then the value of clDsmTmrUserData
328 * supplied to this call MUST also be input to clDsmProcessTimerEvent.
329 *
330 * Returning a timerHandle value is optional but it should be set to Null if
331 * not used/available. This value is input to the stopTimerFunc callback.
332 *
333 * If a timerHandle is not available synchronously then it can be also be
334 * supplied when clDsmSysProcessTimerEvent is called.
335 *
336 *******************************************************************************/
337 typedef clDsmErr_t (*clDsmStartTimerFunc_t) ( H_DsmControl dsmControl,
338  /*I*/ U32BIT timePeriod,
339  void* clDsmTmrUserData,
340  /*O*/ void* *pTimerHandle );
341 
342 
343 /*******************************************************************************
344 * Stops timer
345 *
346 * Timers will always be explicity stopped via this call, even after they have
347 * triggered. Both application and component handles/references are supplied for
348 * flexibility.
349 *
350 * NB. If a timer is stopped (aborted) before it has triggered (ie. before a
351 * timeout has been notified via clDsmSysProcessTimerEvent), timer abort must be
352 * notified via clDsmSysProcessTimerEvent() instead. The call to
353 * clDsmSysProcessTimerEvent can be made from within this callback.
354 *
355 *******************************************************************************/
356 typedef void (*clDsmStopTimerFunc_t) ( H_DsmControl dsmControl,
357  /*I*/ void* timerHandle );
358 
359 
360 
361 /* -- SI QUERY CALLBACKS -- */
362 
363 /*******************************************************************************
364 * Makes (starts) SI query (eg. database lookup)
365 *
366 * Meaning of return values in this context:
367 *
368 * CLDSM_OK
369 * - Query has (synchronously) returned successful result.
370 *
371 * CLDSM_PENDING
372 * - Query is being executed asynchronously - results/events
373 * will be returned via clDsmSysProcessSIQueryEvent()
374 *
375 * CLDSM_ERR_SI_QUERY_FAILED
376 * - Query has (synchronously) failed to determine requested
377 * information (due to error in SI lookup).
378 *
379 * If a query result is to be returned asynchronously then the value of
380 * clDsmSIQueryRef and clDsmSIUserData supplied to this call MUST also be input
381 * to clDsmProcessSIQueryEvent along with the result.
382 *
383 * Returning a queryHandle value in pResult is optional. If not used/available,
384 * it should be set to Null. This value is input to the stopSIQueryFunc callback.
385 *
386 * If a queryHandle is not available synchronously then it can be also be
387 * supplied when clDsmSysProcessSIQueryEvent is called.
388 *
389 * NB. In this case, if the query is stopped for any reason before this event
390 * then the calling environment will have to identify the correct query to stop
391 * from the DSM-CC reference (clDsmSIQueryRef).
392 *
393 *******************************************************************************/
394 typedef clDsmErr_t (*clDsmStartSIQueryFunc_t) ( H_SiqInstance siqInstance,
395  /*I*/ pclDsmSIQuery_t pQuery, clDsmSIQueryRef_t clDsmSIQueryRef,
396  void* clDsmSIUserData,
397  /*O*/ clDsmSIQueryResult_t *pResult );
398 
399 
400 /*******************************************************************************
401 * Stops an SI query
402 *
403 * Any asynchronous SI queries (ie. those that returned a status SIQUERY_PENDING
404 * to the StartSIQueryFunc call) will be explicity stopped via this call, even
405 * after they have completed.
406 *
407 * Both application and component handles/references are supplied for
408 * flexibility.
409 *
410 * NB. If an SI query is stopped (aborted) before it has completed (ie. before
411 * a result has been supplied via clDsmSysProcessSIQueryEvent), SI query abort
412 * must be notified via clDsmSysProcessSIQueryEvent() instead. The call to
413 * clDsmSysProcessSIQueryEvent can be made from within this callback.
414 *
415 *******************************************************************************/
416 typedef void (*clDsmStopSIQueryFunc_t) ( H_SiqInstance siqInstance,
417  /*I*/ void* queryHandle, clDsmSIQueryRef_t clDsmSIQueryRef );
418 
419 
420 
421 /* -- SI CHANGE REGISTRATION CALLBACKS -- */
422 
423 /*******************************************************************************
424 * Register to receive notifications of changes to the SI for the specified
425 * service (on the current transport stream/multiplex).
426 *
427 * When a duplicate subscribe is made (ie. for a service that is already
428 * subscribed) it should increment the count of subscriptions for that service.
429 * Matching unsubscribe will be made for each subscribe.
430 *
431 * Changes are notified via the clDsmSysProcessSIChangeEvent function in the
432 * following situations:
433 *
434 * - The subscribed service cannot be located
435 * - The service is deleted from the multiplex (eg. PAT updated)
436 * - The service info is updated (ie. PMT updated).
437 *
438 * If it can be determined immediately (ie. synchronously) that the requested
439 * service does not exist in the current multiplex (eg. it is not listed in the
440 * most recent stored copy of the PAT) then the output parameter serviceNotFound
441 * can be set to TRUE (otherwise set it to FALSE).
442 *
443 *******************************************************************************/
444 typedef clDsmErr_t (*clDsmSubscribeSIChanged_t) ( H_SiqInstance siqInstance,
445  /*I*/ U16BIT service_id );
446 
447 
448 /*******************************************************************************
449 * Decrement number of subscriptions to the specified service. Only when this
450 * number reaches zero should this function de-register for notifications of
451 * changes to the SI for the service.
452 *
453 * This will be called to de-register for a previously subscribed service,
454 * even if the DSM-CC library has been notified that the subscribed service
455 * cannot be located.
456 *
457 *******************************************************************************/
458 typedef void (*clDsmUnsubscribeSIChanged_t) ( H_SiqInstance siqInstance,
459  /*I*/ U16BIT service_id );
460 
461 
462 
463 /* -- SECTION FILTER CALLBACKS -- */
464 
465 /*******************************************************************************
466 * Requests a section filter to be started.
467 *
468 * It is assumed that the number of section filters that may be simultaneously
469 * requested (in use) is unlimited. Typically it is expected that the worst case
470 * requirement (eg. with full carousel caching and multiple stream events) is
471 * less than that specified in the setup.
472 *
473 * Filtered private sections are returned via clDsmSysProcessPrivateSection().
474 * The clDsmFilterRef value MUST be stored and also
475 * returned with any sections that matched the requested filter.
476 *
477 * Exact duplicate filters will never be requested simultaneously but filters
478 * with 'wildcard' (ie. tableIdExtMask) bits set may overlap with other
479 * requested filters with less or no mask bits set.
480 *
481 * If a section aligns with two or more such filters then it should only be
482 * matched to the 'narrowest' (ie. most exact) filter and that clDsmFilterRef
483 * value passed with the section data to clDsmSysProcessPrivateSection.
484 *
485 * Filters requested with high priority will always be narrower (ie. less mask
486 * bits set) than any overlapping low priority filters and this rule ensures
487 * that sections will always be matched to high priority filters in preference
488 * to low.
489 *
490 * NB. The worst case number of exact filters (ie. with no mask bits set)
491 * requested simultaneously may be large (eg. 100s) but the worst case number of
492 * simultaneous filters with (one or more) mask bits set is expected to be much
493 * smaller (eg. ~10).
494 *
495 * The filter should always remain in effect with continuous supply of section data,
496 * until delSectionFilterFunc is called.
497 *
498 * If platform requires priority rating in this callback, it can use
499 * clDsmSectionFilterPriority().
500 *
501 * Parameters:
502 *
503 * PID MPEG2 PID
504 *
505 * tableId DSM-CC tableId filter value for sections (byte 0).
506 * NB. Only the tableId values of 0x3B, 0x3C, 0x3D will
507 * be used for DSM-CC section filters.
508 *
509 * tableIdExt DSM-CC tableIdExtension filter value (bytes 3&4)
510 *
511 * tableIdExtMask DSM-CC active filter bits.
512 * NB.'Wildcard' bitmasks will only be set on contiguous
513 * bits starting at LSBit.
514 *
515 * Return: void*
516 * This is the platform filter handle value. It is given as input to the
517 * delSectionFilterFunc callback. NULL value is considered failure, and any other
518 * value is considered a successful operation.
519 *
520 *******************************************************************************/
521 typedef void* (*clDsmAddSectionFilterFunc_t) ( H_SfmInstance sfm,
522  /*I*/ pclDsmSFilter_t pFilter, clDsmSFRef_t dsmFilterRef );
523 
524 
525 /*******************************************************************************
526 * Requests a section filter to be stopped
527 *
528 * To give flexibility in identifying the filter to delete, both application
529 * and component handles/references are supplied. Also a repeat of the section
530 * filter details are supplied (which are unique for any active filter) .
531 *
532 * NB. To avoid problems due to delays in deleting filters or caused by queuing
533 * sections the clDsmSysProcessPrivateSection function can detect sections being
534 * supplied from 'stale' (ie. deleted) filters. This will waste CPU time so the
535 * calling environment should ensure as soon as possible (after this callback
536 * is made) that sections matching the deleted filter are stopped.
537 *
538 *******************************************************************************/
539 typedef void (*clDsmDelSectionFilterFunc_t) ( H_SfmInstance sfm,
540  /*I*/ void* filterHandle, clDsmSFRef_t clDsmFilterRef );
541 
542 
543 /*******************************************************************************
544 * Notify a section filter priority changed
545 *
546 *******************************************************************************/
547 typedef void (*clDsmSFPriorityChangedFunc_t) ( H_SfmInstance sfm,
548  /*I*/ void* filterHandle, clDsmSFRef_t clDsmFilterRef,
549  clDsmSFPriority_t priority );
550 
551 
552 /* -- LOAD & STREAM EVENT CALLBACKS -- */
553 
554 /*******************************************************************************
555 * Notify of a load carousel event.
556 *
557 * Called when carousel booted, load completed (ie. SRG module loaded) or load
558 * aborted before completion (due to errors, timeout or unload). Component
559 * handle and userData values supplied for flexibility.
560 *
561 * If clDsmUnloadCarousel() is called before the carousel load is completed
562 * (ie. before this callback has been called with status OC_LOAD_COMPLETED)
563 * then the callback will actually be made from within the clDsmUnloadCarousel
564 * call with status OC_LOAD_ABORTED_UNLOAD.
565 *
566 * Any of the Synchronous or Asynchronous Client API calls (ie. API calls that
567 * do NOT start with clDsmSys...) can be made from within this callback. When
568 * doing this, care must be taken to avoid blocking or re-entrancy problems in
569 * the calling environment. Re-entrancy may occur when unloading objects or
570 * carousels since this can cause a (re-entrant) call to this callback.
571 *
572 *
573 *******************************************************************************/
574 typedef void (*clDsmNotifyCarouselLoadEventFunc_t) (
575  /*I*/ clDsmOCHandle_t clDsmCarouselHandle, E_OCLoadStatus status,
576  U32BIT carouselId );
577 
578 
579 /*******************************************************************************
580 * Notify of a load object event.
581 *
582 * Called when object load completed or load aborted before completion (due to
583 * errors, timeout or unload of object or carousel). Component handle and
584 * userData values supplied for flexibility.
585 *
586 * If clDsmUnloadObject() (or clDsmUnloadCarousel) is called before the object
587 * load is completed (ie. before this callback has been called with status
588 * OBJ_LOAD_COMPLETED) then the callback will actually be made from within the
589 * clDsmUnloadObject (or clDsmUnloadCarousel) call with status
590 * OBJ_LOAD_ABORTED_UNLOAD.
591 *
592 * Any of the Synchronous or Asynchronous Client API calls (ie. API calls that
593 * do NOT start with clDsmSys...) can be made from within this callback. When
594 * doing this, care must be taken to avoid blocking or re-entrancy problems in
595 * the calling environment. Re-entrancy may occur when unloading objects or
596 * carousels since this can cause a (re-entrant) call to this callback.
597 *
598 *
599 *******************************************************************************/
600 typedef void (*clDsmNotifyObjectLoadEventFunc_t) (
601  /*I*/ clDsmObjHandle_t clDsmObjectHandle, clDsmObjLoadStatus_t status,
602  H_ObjUserData pCopyOfObjLoadUserData );
603 
604 
605 
642  /*I*/ H_DsmEvent eventHandle, clDsmSENotifyStatus_t status,
643  void* userData1, void* userData2,
644  U8BIT *namePtr, U8BIT* dataPtr, U8BIT namelen, U8BIT dataLen );
645 
646 
647 
663  /*I*/ void* userData1, void* userData2,
664  S_DvbLocator *pDeferredService );
665 
666 
667 /*
668 -- Type definitions for object caching rules
669 --
670 */
671 typedef U32BIT clDsmCachingRules_t;
672 
673 /*
674 -- Type definitions for setup variables
675 --
676 */
677 
678 /*
679 -- Setup structure for use at initialisation
680 */
681 typedef struct {
682 
683  /*
684  -- General callback pointers
685  --
686  -- NOTES:
687  -- All callbacks MUST be provided except where indicated
688  --
689  */
690  clDsmAllocFunc_t allocFunc;
691  clDsmFreeFunc_t freeFunc;
692 
693  /* -- errorFunc - optional (Null if not used) */
694  clDsmErrorFunc_t errorFunc;
695  /* -- progressFunc - optional (Null if not used) */
696  clDsmProgressFunc_t progressFunc;
697 
698  clDsmAddSectionFilterFunc_t addSectionFilterFunc;
699  clDsmDelSectionFilterFunc_t delSectionFilterFunc;
700  /* -- sfPriorityChangeFunc - optional (Null if not used) */
701  clDsmSFPriorityChangedFunc_t sfPriorityChangeFunc;
702 
703  clDsmStartTimerFunc_t startTimerFunc;
704  clDsmStopTimerFunc_t stopTimerFunc;
705 
706  clDsmStartSIQueryFunc_t startSIQueryFunc;
707  clDsmStopSIQueryFunc_t stopSIQueryFunc;
708 
709  clDsmSubscribeSIChanged_t subscribeSIChangeFunc;
710  clDsmUnsubscribeSIChanged_t unsubscribeSIChangeFunc;
711 
712  /* -- notifyCarouselLoadEventFunc - optional (Null if not used) */
713  clDsmNotifyCarouselLoadEventFunc_t notifyCarouselLoadEventFunc;
714  /* -- notifyObjectLoadEventFunc - optional (Null if not used) */
715  clDsmNotifyObjectLoadEventFunc_t notifyObjectLoadEventFunc;
716 
717  /* notifyStreamEventFunc can be Null when Stream Events are not required */
718  clDsmNotifyStreamEventFunc_t notifyStreamEventFunc;
719 
720  /* notifyDeferredServiceFunc can be Null when deferred service for Stream Objects are not required */
721  clDsmNotifyDeferredServiceFunc_t notifyDeferredServiceFunc;
722 
723  /* -- Control flags */
724 
725  H_DsmControl dsmControl;
726  /*
727  -- Instance handle for external Service Information Query module
728  */
729  H_SiqInstance siqInstance; /* -- Suggested default: Null */
730 
731  /*
732  -- Instance handle for external Section Filter Manager module
733  */
734  H_SfmInstance sfmInstance; /* -- Suggested default: Null */
735 
736  /*
737  -- Pointer (optional) that can be used by calling environment for
738  -- passing setup info to the memory manager (via clDsmMemMgr API) at
739  -- memStart time.
740  */
741  void* memMgrSetup; /* -- Suggested default: Null */
742 
743 
744  /*
745  -- Specifies resolution of time units used on API in _milliseconds_
746  -- (can be set to resolution of external timers)
747  --
748  -- NB. Time values are represented on the API and internally as U32BIT so
749  -- timeUnitResolution should be chosen so that overflow problems will not
750  -- occur during any likely period of continuous use for a receiver (eg. if
751  -- timeUnitResolution = 10mS, wrap-round time = 1.36 years!).
752  */
753  U32BIT timeUnitResolution; /* -- Suggested default: 10 */
754 
755 
756  /*
757  -- Sets the size of dynamic memory available for DSM-CC to use.
758  -- Apart from 100KB approx. the remainder of this memory will be requested
759  -- and accessed via the dynamic memory manager API (clDsmMemMgrAPI.h).
760  --
761  -- NB. In debug builds DSM-CC may allocate slightly (<5%) more than this
762  -- specified amount.
763  --
764  -- If clDsmMemMgrAPI is mapped to a system memory manager then it
765  -- has an additional option (when it is opened) to decrease the amount
766  -- of (the remainder of this) memory it makes available.
767  */
768  U32BIT maxMemorySize; /* -- Absolute minimum: DSMCC_MINIMUM_CACHE_SIZE */
769  /* -- Recommended min: DSMCC_DEFAULT_CACHE_SIZE */
770 
771  /*
772  -- Specifies the maximum number of section filters that are available
773  -- in the calling environment (to this instance) for simultaneously
774  -- acquiring DSM-CC private sections.
775  --
776  -- If client requests (or other events) cause the core stack to
777  -- simultaneously require more section filters than the number available
778  -- it will rotate its requests through the available filters. This may
779  -- cause delays in responding to client requests so the larger this
780  -- number the better.
781  --
782  -- The minimum value is NUM_SECTION_FILTERS_MINIMUM.
783  -- Setting to zero will be interpreted as no restriction on the
784  -- number of section filters available in the calling environment, and
785  -- NUM_SECTION_FILTERS_MAXIMUM will be used.
786  -- Setting to a value less than this the minimum will be ignored, and
787  -- NUM_SECTION_FILTERS_MINIMUM will be used.
788  -- Suggested Default: NUM_SECTION_FILTERS_DEFAULT
789  */
790  U16BIT maxAvailableSectionFilters;
791 
792  /*
793  -- Sets whether DSM-CC component maintains an internal record
794  -- of SI query results so that it does not need to repeatedly
795  -- make the same SI queries (to the calling env). Typically this
796  -- will be used for storing association_tag to PID mappings.
797  */
798  BOOLEAN storeSIQueryResults; /* -- Default: FALSE */
799 
800 
801  /*
802  -- Sets whether DSM-CC component pre-fetches modules into its
803  -- internal cache.
804  --
805  -- NB. This requires a large available memory size and a large number of
806  -- available section filters.
807  --
808  -- Enabling turboCaching also activates full transparent caching (ie.
809  -- automatic re-loading of cached modules that have version updates).
810  -- This is because turboCaching will not work effectively without this
811  -- and also because only when turboCaching is enabled are there
812  -- likely to be sufficient section filters available to support
813  -- automatic module re-loading.
814  */
815  BOOLEAN turboCaching; /* -- Default: FALSE */
816 
818 
819 
820 
821 /*---Global variable declarations for public use-----------------------------*/
822 
823 
824 /******************************************
825 * EXPORTED (PROVIDED) FUNCTION PROTOTYPES *
826 *******************************************/
827 
828 /* ---------------------- SYNCHRONOUS SYSTEM API CALLS ---------------------- */
829 
830 /*
831 -- NOTES:
832 --
833 -- The following functions must be called synchronously with each other and
834 -- with the Synchronous Client API calls since they use and modify common
835 -- instance data. If they need to be called/triggered from different threads
836 -- the calling environment must ensure synchronous behaviour - eg. by using
837 -- a mutex semaphore round the call (or queueing and calling from the same
838 -- thread).
839 --
840 -- In some circumstances it is possible to make one Synchronous API call from
841 -- within another one:
842 --
843 -- eg. clDsmSysProcessTimerEvent can be called within the stopTimerFunc
844 -- callback which itself may have been called from within.
845 -- clDsmSysProcessPrivateSection
846 --
847 -- eg. All Synchronous Client API calls can be called from within the
848 -- notifyCarouselLoadEvent or notifyObjectLoadEvent callbacks which may
849 -- themselves have been called within clDsmSysProcessPrivateSection.
850 --
851 -- These cases are clearly specified in the comments. The calling environment
852 -- must avoid possible permanent blocks in these circumstances, eg. from trying
853 -- to get a mutex on a thread that has it already.
854 --
855 */
856 
857 
858 /*******************************************************************************
859 * Create DSM-CC Core Layer instance
860 *
861 * Only call at startup of an instance (before ANY other DSM-CC Core Layer API
862 * calls are made for that instance). Allocates all required 'static' memory
863 * for the instance (via allocFunc). Also stores (copies) data supplied in
864 * setup structure.
865 *
866 * NB. Dynamic (heap) memory used by the instance is allocated/deallocated and
867 * accessed via the dynamic memory manager API (clDsmMemMgrApi.h).
868 *
869 * Returns instance value which is used to reference the unique data used by
870 * this DSM Core instance. It MUST be stored by the calling environment and
871 * passed to any clDsm API calls for the instance.
872 *
873 * Also returns memContext parameter (obtained when memory manager started).
874 * If implemented/required, this gives the calling environment independent
875 * access to the memory manager context used by this DSM Core instance.
876 *
877 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
878 * allocFunc
879 * freeFunc - only on error
880 *
881 * RETURNS:
882 * CLDSM_OK (0)
883 * CLDSM_ERR_ALLOC_FAILED,
884 * CLDSM_ERR_MEM_HEAP_FULL
885 * CLDSM_ERR_ILLEGAL_SETUP
886 *
887 *******************************************************************************/
888 clDsmErr_t clDsmSysCreate(
889  /*I*/ pclDsmSetup_t pSetup,
890  /*O*/ clDsmInstHandle_t *pInstance, void* *pMemContext );
891 
892 
893 
924 clDsmErr_t clDsmSysDestroy( clDsmInstHandle_t instance,
925  H_SiqInstance *pSiqInst, H_SfmInstance *pSfmInst );
926 
927 
928 
966 clDsmErr_t clDsmSysReset( clDsmInstHandle_t instance, E_DsmRstMode mode );
967 
968 
969 
1001 clDsmErr_t clDsmSysSetCurrService( clDsmInstHandle_t instance,
1002  /*I*/ U16BIT original_network_id, U16BIT transport_stream_id,
1003  U16BIT service_id );
1004 
1005 U16BIT clDsmSysCurrServiceId( clDsmInstHandle_t instance );
1006 
1007 
1033 clDsmErr_t clDsmSysProcessTimerEvent( clDsmInstHandle_t instance,
1034  /*I*/ void* clDsmTmrUserData, clDsmTimerEventStatus_t status, void* timerHandle );
1035 
1036 
1037 
1078 clDsmErr_t clDsmSysProcessSIQueryEvent( clDsmInstHandle_t instance,
1079  /*I*/ clDsmSIQueryRef_t clDsmSIQueryRef, void* clDsmSIUserData,
1080  pclDsmSIQueryResult_t pResult );
1081 
1082 
1083 
1119 clDsmErr_t clDsmSysProcessSIChangeEvent( clDsmInstHandle_t instance,
1120  /*I*/ clDsmSIChangeEvent_t event, U16BIT service_id, U32BIT carousel_id );
1121 
1122 
1123 
1124 /*******************************************************************************
1125 * Process DSM-CC private section data
1126 *
1127 * NOTES:
1128 *
1129 * Call each time the Demux provides a private section from one of the
1130 * requested PIDs (main TS data input of DSM-CC Core API).
1131 *
1132 * It is assumed that the calling environment has already CRC checked the
1133 * section (if relevant) and only sections that pass this check will be
1134 * supplied to clDsmSysProcessPrivateSection.
1135 *
1136 * The clDsmFilterRef and clDsmSfUserData inputs MUST be set to the values
1137 * supplied when the filter for this section was requested
1138 * (via addSectionFilterFunc).
1139 *
1140 * If sections have to be queued (or discarded) in the calling environment
1141 * then those matching filters with a high priority MUST always be supplied
1142 * to this function in preference to those matching low priority filters.
1143 *
1144 * NB. Although sections matching low priority filters (or even high priority
1145 * filters) can be discarded if necessary. The order in which they were
1146 * broadcast should always be maintained when they are supplied to this
1147 * function.
1148 *
1149 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
1150 * errorFunc
1151 * progressFunc
1152 * addSectionFilterFunc
1153 * delSectionFilterFunc
1154 * stopTimerFunc
1155 * startSIQueryFunc
1156 * notifyCarouselLoadEventFunc
1157 * notifyObjectLoadEventFunc
1158 *
1159 * RETURNS:
1160 * CLDSM_OK (0)
1161 * CLDSM_ERR_INVALID_INSTANCE
1162 * CLDSM_ERR_ILLEGAL_PARAMETER
1163 * CLDSM_ERR_ABORTED When dsmFilterRef is not recognised (maybe stale)
1164 *
1165 *******************************************************************************/
1166 clDsmErr_t clDsmSysProcessPrivateSection( clDsmInstHandle_t instance,
1167  /*I*/ U8BIT* pSection, clDsmSFRef_t dsmFilterRef );
1168 
1169 
1170 /*******************************************************************************
1171 * Request priority for DSM-CC private section data
1172 *
1173 *******************************************************************************/
1174 clDsmErr_t clDsmSectionFilterPriority( clDsmInstHandle_t instance,
1175  clDsmSFRef_t dsmFilterRef,
1176  clDsmSFPriority_t *pPriority );
1177 
1178 
1179 /* ---------------------- SYNCHRONOUS CLIENT API CALLS ---------------------- */
1180 
1181 /*
1182 -- NOTES:
1183 --
1184 -- The following functions must be called synchronously with each other and
1185 -- with the above System API calls. If they need to be called/triggered
1186 -- from different threads the calling environment must ensure synchronous
1187 -- behaviour - eg. by using a mutex semaphore round the call (or queueing and
1188 -- calling from the same thread).
1189 --
1190 -- Any of the Synchronous (or Asynchronous) Client API calls (ie. API
1191 -- calls that do NOT start with clDsmSys...) can be made from within the
1192 -- notifyCarouselLoadEvent or notifyObjectLoadEvent callbacks. When doing
1193 -- this, care must be taken to avoid blocking or re-entrancy problems in
1194 -- the calling environment. Re-entrancy may occur when unloading objects or
1195 -- carousels since this can cause a (re-entrant) call to these callbacks.
1196 --
1197 */
1198 
1199 
1200 /* -- CAROUSEL LOAD FUNCS -- */
1201 
1202 /*******************************************************************************
1203 *
1204 * Loads DSM-CC object carousel specified by carousel_id from indicated service
1205 * (on the current multiplex/transport stream)
1206 *
1207 * If carousel_id is set to INVALID_CAROUSEL_ID, then this function loads the
1208 * initiate boot carousel for the service
1209 *
1210 * NOTES:
1211 *
1212 * The returned clDsmCarouselHandle value must always be supplied by the
1213 * calling environment whenever accessing objects in this carousel.
1214 *
1215 * Initially a section filter will be set up to acquire the DSI message for the
1216 * carousel. Once the DSI message is acquired the calling environment is
1217 * notified via the notifyCarouselLoadEventFunc callback (if supplied at
1218 * setup/create) that the carousel is BOOTED. Open object requests can then be
1219 * made for this carousel.
1220 *
1221 * When the service gateway (SRG) is loaded for this carousel the calling
1222 * environment is notified again via the callback that the carousel is now
1223 * LOADED. Objects in the carousel cannot be accessed (opened) until the
1224 * service gateway for the carousel is loaded.
1225 *
1226 * If timeout occurs before the SRG is loaded a timeout error is returned. If
1227 * an error is encountered while loading the carousel then an aborted error is
1228 * returned.
1229 *
1230 * Using the ocLoadUserData1 and ocLoadUserData2 values is optional. These
1231 * values are returned unchecked into the load event callback. They can be used
1232 * for any purpose (eg. to aid in matching callbacks with corresponding load
1233 * requests and/or clients).
1234 *
1235 * If timeout value is set to zero it means no (ie. infinite) timeout.
1236 *
1237 * If a duplicate request is made to load a boot carousel then an error will be
1238 * generated but the clDsmCarouselHandle will be set to the value of the already
1239 * loaded carousel.
1240 *
1241 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
1242 * startTimerFunc
1243 * startSIQueryFunc
1244 * addSectionFilterFunc
1245 *
1246 * RETURNS:
1247 * CLDSM_OK (0)
1248 * CLDSM_DUPLICATE_REQUEST
1249 * CLDSM_ERR_MEM_HEAP_FULL
1250 * CLDSM_ERR_NO_CURRENT_SERVICE_SET
1251 * ?
1252 *
1253 *******************************************************************************/
1254 clDsmErr_t clDsmLoadCarousel( clDsmInstHandle_t instance,
1255  /*I*/ U16BIT service_id, U32BIT carousel_id, U32BIT timeout,
1256  /*O*/ E_OCLoadStatus *pStatus, clDsmOCHandle_t *pclDsmCarouselHandle );
1257 
1258 
1259 
1260 
1301 clDsmErr_t clDsmUnloadCarousel( clDsmInstHandle_t instance,
1302  /*I*/ clDsmOCHandle_t clDsmCarouselHandle, E_DsmRstMode mode );
1303 
1313 clDsmErr_t clDsmGetCarouselId( clDsmInstHandle_t instance,
1314  /*I*/ clDsmOCHandle_t carouselHandle,
1315  /*O*/ U32BIT* pCarouselId );
1316 
1322 clDsmOCHandle_t clDsmCurrentCarousel( clDsmInstHandle_t instance );
1323 
1332 clDsmErr_t clDsmSetCurrentCarousel( clDsmInstHandle_t instance,
1333  /*I*/ clDsmOCHandle_t carouselHandle );
1334 
1346 clDsmErr_t clDsmCarouselLoadFileGroups( clDsmInstHandle_t instance,
1347  /*I*/ clDsmOCHandle_t clDsmCarouselHandle,
1348  /*O*/ U16BIT* total, S_CarouselInfoFileGroup** pGroups );
1349 
1363  /*I*/ clDsmOCHandle_t clDsmCarouselHandle,
1364  /*I*/ S_CarouselInfoFileGroup *groups );
1365 
1366 /* -- OBJECT LOAD FUNCS -- */
1367 
1368 /*******************************************************************************
1369 *
1370 * Load an object with the requested pathname into cache.
1371 *
1372 * Unless the carousel is specifed in the path, this will load an object from
1373 * the 'Current' object carousel. The client may specify another carousel by
1374 * setting the 'Current' object carousel with use of clDsmSetCurrentCarousel().
1375 * If the path does specify a new carousel (as defined by "ETSI TS 102 851"),
1376 * then the function will attempt to load this carousel and make it the new
1377 * 'Current' object carousel.
1378 *
1379 * NOTES:
1380 *
1381 * Currently, an object can only be loaded once the carousel is booted (DSI
1382 * message acquired).
1383 *
1384 * Requested pathname must be a full (absolute) object pathname starting with
1385 * an object in the root (ie. service gateway) directory of the specified
1386 * carousel, eg. dir1/dir2/file3 is treated as DSM:/dir1/dir1/file3. Any
1387 * characters defined in PATH_SEPERATOR_LIST_STRING will be treated as path
1388 * token seperators all other chars are treated as part of a path token. An
1389 * empty pathname U8BIT* (or U8BIT* containing only path token seperators)
1390 * will open the service gateway directory itself.
1391 *
1392 * **** NB. SRG (& directory) ACCESS NOT YET IMPLEMENTED ****
1393 *
1394 * Returns an clDsmObjectHandle which the client uses to access the requested
1395 * object. If the object is already cached then the status parameter will be
1396 * set to OBJ_LOAD_COMPLETED. In this case the objectRef value can be used to
1397 * access (eg. open for reading) the object/file data immediately.
1398 *
1399 * If the object is not in the cache then a fetch from the input stream is
1400 * initiated and the status parameter set to OBJ_LOAD_IN_PROGRESS. When the
1401 * object is loaded into the cache the calling environment is notified via the
1402 * notifyObjectlLoadEventFunc callback (if supplied at setup/create).
1403 *
1404 * Using the objLoadUserData1 and objLoadUserData2 values is optional. These
1405 * values are returned unchecked into the load event callback. They can be used
1406 * for any purpose (eg. to aid in matching callbacks with corresponding load
1407 * requests and/or clients).
1408 *
1409 * If multiple load requests are made for the same object before it is
1410 * available each request will initiate a new (parallel) fetch from the input
1411 * stream and a callback will be generated for each request when the object is
1412 * loaded.
1413 *
1414 * While an object is LOADED it's contents are guaranteed to remain available
1415 * and constant in cache memory (ie. it will not be updated from the input
1416 * stream or deleted to create space in the cache).
1417 *
1418 * Any load request for an object (that is not already loaded) will only get
1419 * completed by a call to clDsmysProcessPrivateSection. This will either have
1420 * delivered the last part of the module containing the object or delivered a
1421 * module containing a previously missing higher level directory in the object
1422 * path that results in the requested object now being accessible in the cache.
1423 *
1424 * If a load proceeds part way down a path and then encounters an error, the
1425 * load is aborted and the appropriate status returned via the callback. The
1426 * clDsmObjectHandle cannot be used to access object/file DATA until/unless
1427 * it is successfully loaded.
1428 *
1429 * **** NB. ONLY CACHING RULE 'fromStream' CURRENTLY IMPLEMENTED ****
1430 * If caching rules are specified they are applied as below. If pCachingRules
1431 * is set to Null the object will be given the default caching rules.
1432 *
1433 * If the object is not in the cache then the caching rules only have an
1434 * effect on the subsequent caching of the object/module once the object load
1435 * is completed and the object is actually unloaded (via clDsmUnloadObject),
1436 * ie. when it is made available for caching.
1437 *
1438 * If the same object is requested multiple times in parallel, then once the
1439 * object load is completed the highest priority caching rules are selected
1440 * (fromStream overrides any other settings). These are applied only when
1441 * the last of the object load instances is unloaded.
1442 *
1443 * If the requested object is already in the cache and the caching rules have
1444 * fromStream set, then the object/module is immediately deleted from the cache
1445 * and a new fetch from the input stream is initiated.
1446 *
1447 * If the same object is loaded multiple times in parallel then the caching
1448 * rules specified at each load call will only replace the currently set
1449 * caching rules for this object if they specify a higher caching priority
1450 * (fromStream overrides any priority setting). If fromStream is set on any
1451 * load then it will cause a re-fetch of the object for that load instance.
1452 * The data for any previous load instances will only get physically deleted
1453 * when they are unloaded.
1454 *
1455 * NB. For module based caching (as currently implemented) the whole module
1456 * inherits the caching rules MOST RECENTLY SPECIFIED for any object in that
1457 * module.
1458 *
1459 * The rules for when multiple objects from the same module are requested (or
1460 * loaded) in parallel are applied to a module on the same basis as described
1461 * for multiple instances of the same object.
1462 *
1463 * **** NOT YET IMPLEMENTED ****
1464 * If timeout value is set to zero it means no (ie. infinite) timeout. If a
1465 * timeout is specified and the object has not been loaded in the specified
1466 * time (for any reason) then the load request is aborted and the client
1467 * notified. Timeout is expressed in periods of timerResolution (specified at
1468 * setup/create).
1469 *
1470 *
1471 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
1472 * addSectionFilterFunc
1473 * startTimerFunc
1474 * startSIQueryFunc
1475 *
1476 * RETURNS:
1477 * CLDSM_OK (0)
1478 * CLDSM_ERR_MEM_HEAP_FULL
1479 * CLDSM_ERR_INVALID_CAROUSEL_HANDLE
1480 * CLDSM_ERR_INVALID_CACHING_RULES
1481 * CLDSM_ERR_CAROUSEL_NOT_BOOTED
1482 *
1483 * CLDSM_ERR_INVALID_PATHNAME - Null pointer or path too long
1484 *
1485 * CLDSM_ERR_LOAD_FAILURE - Failed to load requested file (because
1486 * some part of path could not be located)
1487 * +?
1488 *
1489 *******************************************************************************/
1490 clDsmErr_t clDsmLoadObject( clDsmInstHandle_t instance,
1491  /*I*/ U8BIT* pathname, U32BIT timeout, clDsmCachingRules_t cachingRules,
1492  H_ObjUserData pUserData, U32BIT sizeOfUserData,
1493  /*O*/ clDsmObjLoadStatus_t *pStatus, clDsmObjHandle_t *pclDsmObjectHandle );
1494 
1495 
1496 
1555 clDsmErr_t clDsmUnloadObject( clDsmInstHandle_t instance,
1556  /*I*/ clDsmObjHandle_t clDsmObjectHandle, E_DsmRstMode mode );
1557 
1558 
1585 clDsmErr_t clDsmOpenObject(
1586  /*I*/ clDsmInstHandle_t instance,
1587  /*I*/ clDsmObjHandle_t clDsmObjectHandle,
1588  /*O*/ clDsmObjectKind_t *pKind );
1589 
1590 
1591 
1592 
1593 /*******************************************************************************
1594 * Close a loaded object
1595 *
1596 * NOTES:
1597 *
1598 * Closes the loaded object data. If an object is open this must be called
1599 * before it can be unloaded (via clDsmUnloadObject).
1600 *
1601 *
1602 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
1603 * none
1604 *
1605 * RETURNS:
1606 * CLDSM_OK (0)
1607 * CLDSM_ERR_INVALID_OBJECT_HANDLE
1608 * CLDSM_ERR_OBJECT_NOT_LOADED
1609 * CLDSM_ERR_OBJECT_NOT_OPEN
1610 * ?
1611 *
1612 *******************************************************************************/
1613 clDsmErr_t clDsmCloseObject( clDsmInstHandle_t instance,
1614  /*I*/ clDsmObjHandle_t clDsmObjectHandle );
1615 
1616 
1617 /*******************************************************************************
1618 * **** NB. ONLY CACHING RULE 'fromStream' CURRENTLY IMPLEMENTED ****
1619 *
1620 * Set caching rules for any (cached) object.
1621 *
1622 * Unless the carousel is specifed in the path, this will load an object from
1623 * the 'Current' object carousel. The client may specify another carousel by
1624 * setting the 'Current' object carousel with use of clDsmSetCurrentCarousel().
1625 * If the path does specify a new carousel (as defined by "ETSI TS 102 851"),
1626 * then the function will attempt to load this carousel and make it the new
1627 * 'Current' object carousel.
1628 *
1629 * NOTES:
1630 *
1631 * If the object (OR ANY DIRECTORY ON THE PATH TO THE OBJECT) is not found in
1632 * the cache this command is ignored. Object load failure problems detected at
1633 * call time are not indicated.
1634 *
1635 * If the object is located in the cache the new caching rules are applied
1636 * immediately. If fromStream is set the object is deleted from the cache.
1637 *
1638 * If the object is found in the cache but it is currently loaded the current
1639 * caching rules for this object are set to the specified values (whatever they
1640 * were previously). If fromStream is set, the current object load instance is
1641 * marked for deletion, ie. it is no longer available to subsequent loads
1642 * (although the data is only physically deleted when the object is unloaded
1643 * via clDsmUnloadObject).
1644 *
1645 * Other caching rules are only applied when the object is unloaded.
1646 * If the same object is loaded multiple times in parallel, then these caching
1647 * rules are applied when the last of the object load instances is unloaded.
1648 * Any caching rules set by this call may get overriden if a subsequent parallel
1649 * load of the object that specifies higher priority caching rules is made.
1650 *
1651 * NB. For module based caching (as currently implemented) the whole module
1652 * inherits the caching rules MOST RECENTLY SPECIFIED for any object in that
1653 * module.
1654 *
1655 * The rules for when multiple objects from the same module are requested (or
1656 * loaded) in parallel are applied to a module on the same basis as described
1657 * for multiple instances of the same object.
1658 *
1659 *
1660 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
1661 * delSectionFilterFunc
1662 *
1663 * RETURNS:
1664 * CLDSM_OK (0)
1665 * CLDSM_ERR_INVALID_PATHNAME
1666 * CLDSM_ERR_INVALID_CACHING_RULES
1667 * CLDSM_ERR_INVALID_CAROUSEL_HANDLE
1668 * CLDSM_ERR_CAROUSEL_NOT_BOOTED
1669 * CLDSM_ERR_CAROUSEL_LOAD_FAILED
1670 * ?
1671 *
1672 *******************************************************************************/
1673 clDsmErr_t clDsmSetObjectCachingRules( clDsmInstHandle_t instance,
1674  /*I*/ U8BIT* pathname, clDsmCachingRules_t cachingRules );
1675 
1676 
1677 
1678 /*******************************************************************************
1679 *
1680 * Request pre-fetch into cache of the specified object.
1681 *
1682 * Unless the carousel is specifed in the path, this will load an object from
1683 * the 'Current' object carousel. The client may specify another carousel by
1684 * setting the 'Current' object carousel with use of clDsmSetCurrentCarousel().
1685 * If the path does specify a new carousel (as defined by "ETSI TS 102 851"),
1686 * then the function will attempt to load this carousel and make it the new
1687 * 'Current' object carousel.
1688 *
1689 * NOTES:
1690 *
1691 * The pre-fetch is always 'silent', ie. no notification is given when (or
1692 * whether) the object has been pre-fetched into the cache (ie. object load
1693 * failure errors detected at start time are also not indicated). If the object
1694 * is already in the cache then the pre-fetch request is ignored.
1695 *
1696 * Pre-fetches work like load requests (ie. they are always performed) but
1697 * if necessary, load requests (clDsmLoadObject) have priority on section filter
1698 * resources.
1699 *
1700 * If the object has to be fetched into the cache then it is given the default
1701 * caching rules (nb. fromStream is not set!).
1702 *
1703 * **** NOT YET IMPLEMENTED ****
1704 * If timeout value is set to zero it means no (ie. infinite) timeout. If a
1705 * timeout is specified and the object has not been pre-fetched in the specified
1706 * time (for any reason) then the pre-fetch request is abandoned (silently).
1707 * Timeout is expressed in periods of timerResolution (specified at
1708 * setup/create).
1709 *
1710 *
1711 * CALLBACKS THAT MAY BE INITIATED DURING THIS CALL:
1712 * addSectionFilterFunc
1713 * startTimerFunc
1714 * startSIQueryFunc
1715 *
1716 * RETURNS:
1717 * CLDSM_OK (0)
1718 * CLDSM_ERR_MEM_HEAP_FULL
1719 * CLDSM_ERR_INVALID_PATHNAME
1720 * CLDSM_ERR_INVALID_CAROUSEL_HANDLE
1721 * CLDSM_ERR_CAROUSEL_NOT_BOOTED
1722 * CLDSM_ERR_CAROUSEL_LOAD_FAILED
1723 * ?
1724 *
1725 *******************************************************************************/
1726 clDsmErr_t clDsmPrefetchObject( clDsmInstHandle_t instance,
1727  /*I*/ U8BIT* pathname, U32BIT timeout );
1728 
1729 
1730 
1776 clDsmErr_t clDsmStreamEventSubscribe(
1777  /*I*/ clDsmInstHandle_t dsmccInstance,
1778  /*I*/ clDsmObjHandle_t streamObject,
1779  /*I*/ U8BIT* eventName,
1780  /*I*/ void* userData1,
1781  /*I*/ void* userData2,
1782  /*O*/ H_DsmEvent* pEventHandle );
1783 
1784 
1800 clDsmErr_t clDsmStreamEventUnsubscribe(
1801  /*I*/ clDsmInstHandle_t dsmccInstance,
1802  /*I*/ H_DsmEvent eventHandle );
1803 
1804 
1841 clDsmErr_t clDsmSpecialEventSubscribe(
1842  /*I*/ clDsmInstHandle_t dsmccInstance,
1843  /*I*/ U16BIT associationTag,
1844  /*I*/ U16BIT eventId,
1845  /*I*/ void* userData1,
1846  /*I*/ void* userData2,
1847  /*O*/ H_DsmEvent* pEventHandle );
1848 
1849 
1862 clDsmErr_t clDsmSpecialEventUnsubscribe(
1863  /*I*/ clDsmInstHandle_t dsmccInstance,
1864  /*I*/ H_DsmEvent eventHandle );
1865 
1866 
1867 
1868 /* ---------------------- ASYNCHRONOUS CLIENT API CALLS --------------------- */
1869 
1870 /*
1871 -- NOTES:
1872 --
1873 -- These functions can always be called asynchronously (ie. from a different
1874 -- task/thread) since they can only access an individual object/file data area
1875 -- which must have first been opened (& locked) by a previous synchronous API
1876 -- call.
1877 --
1878 */
1879 
1880 
1881 /*******************************************************************************
1882 * Get specified object kind (also returned by clDsmOpenObject)
1883 *
1884 * The object (clDsmObjectHandle) must be LOADED.
1885 *
1886 * NB. This can also be called to poll for when an object is loaded.
1887 *
1888 * RETURNS:
1889 * CLDSM_OK (0)
1890 * CLDSM_ERR_INVALID_OBJECT_HANDLE
1891 * CLDSM_ERR_OBJECT_NOT_LOADED
1892 *
1893 *******************************************************************************/
1894 clDsmErr_t dsmObjectGetKind(
1895  /*I*/ clDsmObjHandle_t clDsmObjectHandle,
1896  /*O*/ clDsmObjectKind_t *pKind );
1897 
1898 
1899 
1900 /*******************************************************************************
1901 * Get specified object carousel handle.
1902 *
1903 * The object (clDsmObjectHandle) must be LOADED.
1904 *
1905 * NB. This can also be called to poll for when an object is loaded.
1906 *
1907 * RETURNS:
1908 * CLDSM_OK (0)
1909 * CLDSM_ERR_INVALID_OBJECT_HANDLE
1910 * CLDSM_ERR_INVALID_OBJECT_TYPE
1911 * CLDSM_ERR_OBJECT_NOT_LOADED
1912 *
1913 *******************************************************************************/
1914 clDsmErr_t dsmObjectGetCarouselHandle(
1915  /*I*/ clDsmObjHandle_t clDsmObjectHandle,
1916  /*O*/ void* *hCarouselHandle );
1917 
1918 
1919 
1920 /* -- SERVICE GATEWAY ACCESS FUNCS -- */
1921 
1922 
1923 
1957 clDsmErr_t dsmGetObjectServiceContext(
1958  /*I*/ clDsmObjHandle_t clDsmObjectHandle,
1959  /*I*/ U32BIT serviceId,
1960  /*O*/ U8BIT** pSrvCtxtData,
1961  /*O*/ U32BIT* pSrvCtxtLen);
1962 
1963 
1964 /* -- FILE OBJECT ACCESS FUNCS -- */
1965 
1966 /*******************************************************************************
1967 * Get length of specified file data
1968 *
1969 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN.
1970 *
1971 * RETURNS:
1972 * CLDSM_OK (0)
1973 * CLDSM_ERR_INVALID_OBJECT_HANDLE
1974 * CLDSM_ERR_INVALID_OBJECT_TYPE
1975 * CLDSM_ERR_OBJECT_NOT_LOADED
1976 * CLDSM_ERR_OBJECT_NOT_OPEN
1977 * ?
1978 *
1979 *******************************************************************************/
1980 clDsmErr_t dsmFileGetSize(
1981  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle,
1982  /*O*/ U32BIT *pSize );
1983 
1984 
1985 
1986 /*******************************************************************************
1987 * Read specified number of bytes of data from (opened) file into
1988 * destination address, starting at the current 'cursor' ('file' ptr) position.
1989 *
1990 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN. The
1991 * destination memory area MUST be large enough to hold the numBytes requested.
1992 *
1993 * If call attempts to read past end of the file data it will read as many
1994 * bytes as possible and returns error code: CLDSM_ERR_END_OF_DATA
1995 *
1996 * Number of bytes read is stored in pNumBytesActual and 'cursor' position is
1997 * incremented by numBytesActual.
1998 *
1999 * RETURNS:
2000 * CLDSM_OK (0)
2001 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2002 * CLDSM_ERR_INVALID_OBJECT_TYPE
2003 * CLDSM_ERR_OBJECT_NOT_LOADED
2004 * CLDSM_ERR_OBJECT_NOT_OPEN
2005 * CLDSM_ERR_END_OF_DATA
2006 * ?
2007 *
2008 *******************************************************************************/
2009 clDsmErr_t clDsmFileRead(
2010  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle, U32BIT numBytes,
2011  /*O*/ U8BIT *pDest, U32BIT *pNumBytesActual );
2012 
2013 /*******************************************************************************
2014 * Returns pointer to file data and number of bytes in the file.
2015 *
2016 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN. The
2017 * destination memory area MUST be large enough to hold the numBytes requested.
2018 *
2019 * Number of bytes read is stored in pNumBytesActual.
2020 *
2021 * RETURNS:
2022 * CLDSM_OK (0)
2023 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2024 * CLDSM_ERR_OBJECT_NOT_LOADED
2025 *
2026 *******************************************************************************/
2027 clDsmErr_t clDsmFileDirect(
2028  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle,
2029  /*O*/ U8BIT **ppDest, U32BIT *pNumBytesActual );
2030 
2031 
2032 /*******************************************************************************
2033 * Read single byte of data from (opened) file at current 'cursor' position
2034 * into destination and increment 'cursor' position.
2035 *
2036 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN.
2037 *
2038 * If call attempts to read past end of the object data, returns error code:
2039 * CLDSM_ERR_END_OF_DATA
2040 *
2041 * RETURNS:
2042 * CLDSM_OK (0)
2043 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2044 * CLDSM_ERR_INVALID_OBJECT_TYPE
2045 * CLDSM_ERR_OBJECT_NOT_LOADED
2046 * CLDSM_ERR_OBJECT_NOT_OPEN
2047 * CLDSM_ERR_END_OF_DATA
2048 * ?
2049 *
2050 *******************************************************************************/
2051 clDsmErr_t dsmFileReadByte(
2052  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle,
2053  /*O*/ U8BIT *pDest );
2054 
2055 
2056 
2057 /*******************************************************************************
2058 * Set absolute file data 'cursor' position
2059 *
2060 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN.
2061 *
2062 * Cursor can point to any byte in file data AND to notional 'position'
2063 * immediately after last byte of data but setting to anywhere else will return
2064 * error code: CLDSM_ERR_END_OF_DATA
2065 *
2066 * RETURNS:
2067 * CLDSM_OK (0)
2068 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2069 * CLDSM_ERR_INVALID_OBJECT_TYPE
2070 * CLDSM_ERR_OBJECT_NOT_LOADED
2071 * CLDSM_ERR_OBJECT_NOT_OPEN
2072 * CLDSM_ERR_END_OF_DATA
2073 * ?
2074 *
2075 *******************************************************************************/
2076 clDsmErr_t dsmFileSetPosAbs(
2077  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle, U32BIT absPosition );
2078 
2079 
2080 
2081 /*******************************************************************************
2082 * Set file data 'cursor' position relative to current position
2083 *
2084 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN.
2085 *
2086 * Cursor can point to any byte in file data AND to notional 'position'
2087 * immediately after last byte of data but setting to anywhere else will return
2088 * error code: CLDSM_ERR_END_OF_DATA
2089 *
2090 * RETURNS:
2091 * CLDSM_OK (0)
2092 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2093 * CLDSM_ERR_INVALID_OBJECT_TYPE
2094 * CLDSM_ERR_OBJECT_NOT_LOADED
2095 * CLDSM_ERR_OBJECT_NOT_OPEN
2096 * CLDSM_ERR_END_OF_DATA
2097 * ?
2098 *
2099 *******************************************************************************/
2100 clDsmErr_t dsmFileSetPosRel(
2101  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle, S32BIT relPosition );
2102 
2103 
2104 
2105 /*******************************************************************************
2106 * Read (absolute) file data 'cursor' position
2107 *
2108 * The file object (clDsmFileObjectHandle) must be LOADED and OPEN.
2109 *
2110 * Value returned in 'position' is the offset (in bytes) from the start (zero
2111 * position) of the file data to the current cursor position.
2112 *
2113 * If the current cursor position points to past the end of the file data, then
2114 * the position returned is equal to the file data size. Note that it is not
2115 * legal to _read_ data from this cursor position/offset.
2116 *
2117 * RETURNS:
2118 * CLDSM_OK (0)
2119 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2120 * CLDSM_ERR_INVALID_OBJECT_TYPE
2121 * CLDSM_ERR_OBJECT_NOT_LOADED
2122 * CLDSM_ERR_OBJECT_NOT_OPEN
2123 * ?
2124 *
2125 *******************************************************************************/
2126 clDsmErr_t dsmFileGetPos(
2127  /*I*/ clDsmObjHandle_t clDsmFileObjectHandle,
2128  /*O*/ U32BIT *pPosition );
2129 
2130 
2131 /* -- DIRECTORY ACCESS FUNCS -- */
2132 
2133 /*******************************************************************************
2134 *
2135 * The directory object (dirObj) must be LOADED and OPEN.
2136 *
2137 * Retrieves the total number of directory entries and the total length of all
2138 * entry names.
2139 *
2140 * RETURNS:
2141 * CLDSM_OK (0)
2142 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2143 * CLDSM_ERR_INVALID_OBJECT_TYPE
2144 * CLDSM_ERR_OBJECT_NOT_LOADED
2145 * CLDSM_ERR_OBJECT_NOT_OPEN
2146 *
2147 *******************************************************************************/
2148 clDsmErr_t dsmDirEntrySizes(
2149  /*I*/ clDsmObjHandle_t dirObj,
2150  /*O*/ U16BIT *nameCount,
2151  /*O*/ U16BIT *totalNameLength );
2152 
2153 /*******************************************************************************
2154 *
2155 * The directory object must be LOADED and OPEN.
2156 *
2157 * Retrieve the first entry handle
2158 *
2159 * RETURNS:
2160 * CLDSM_OK (0)
2161 * CLDSM_ERR_INVALID_OBJECT_HANDLE
2162 * CLDSM_ERR_INVALID_OBJECT_TYPE
2163 * CLDSM_ERR_OBJECT_NOT_LOADED
2164 * CLDSM_ERR_OBJECT_NOT_OPEN
2165 * CLDSM_ERR_END_OF_DATA
2166 *
2167 *******************************************************************************/
2168 clDsmErr_t dsmDirEntryFirst(
2169  /*I*/ clDsmObjHandle_t dirObj,
2170  /*O*/ void** pFirstEntry );
2171 
2172 /*******************************************************************************
2173 *
2174 * Directory entry handle (entryHandle) is return by dsmDirEntryFirst or
2175 * dsmDirEntryNext.
2176 *
2177 * Retrieve the next entry handle
2178 *
2179 * RETURNS:
2180 * CLDSM_OK (0)
2181 * CLDSM_ERR_INTERNAL
2182 *
2183 *******************************************************************************/
2184 clDsmErr_t dsmDirEntryNext(
2185  /*I*/ void* entryHandle,
2186  /*O*/ void** pNextEntry );
2187 
2188 /*******************************************************************************
2189 *
2190 * The directory entry handle is return by dsmDirEntryFirst or
2191 * dsmDirEntryNext.
2192 *
2193 * Retrieve name length
2194 *
2195 * RETURNS:
2196 * Length of name copied
2197 *
2198 *******************************************************************************/
2199 U16BIT dsmDirEntryNameLength(
2200  /*I*/ void* entryHandle );
2201 
2202 /*******************************************************************************
2203 *
2204 * The directory entry handle is return by dsmDirEntryFirst or
2205 * dsmDirEntryNext.
2206 *
2207 * Copy name for entry to supplied memory location (pName)
2208 * Caller should ensure there is enough space in location
2209 *
2210 * RETURNS:
2211 * Length of name copied
2212 *
2213 *******************************************************************************/
2214 U16BIT dsmDirEntryNameCopy(
2215  /*I*/ void* entryHandle,
2216  /*O*/ U8BIT *pName );
2217 
2218 
2219 /* -- STREAM OBJECT ACCESS FUNCS -- */
2220 
2246 clDsmErr_t dsmStreamGetProgramAssocTag(
2247  /*I*/ clDsmObjHandle_t streamObjectHandle,
2248  /*O*/ U16BIT* pAssociation_tag);
2249 
2250 
2282  /*I*/ clDsmObjHandle_t streamObject, void* userData1, void* userData2,
2283  /*O*/ S_DvbLocator **ppDeferredService );
2284 
2285 /* -- STREAM EVENT ACCESS FUNCS -- */
2286 
2313 clDsmErr_t clDsmStreamEventNameList(
2314  /*I*/ clDsmInstHandle_t dsmccInstance,
2315  /*I*/ clDsmObjHandle_t streamObject,
2316  /*O*/ U8BIT **pNamesPtr, U16BIT *pNamesLen );
2317 
2318 
2319 /*----------------------------------------------------------------------------*/
2320 
2321 #ifdef __cplusplus
2322 }
2323 #endif
2324 #endif /* _DSMCC_H_ */
2325 
clDsmErr_t clDsmCarouselLoadFileGroups(clDsmInstHandle_t instance, clDsmOCHandle_t clDsmCarouselHandle, U16BIT *total, S_CarouselInfoFileGroup **pGroups)
Retrieve from Object Carousel's User Info, the "File Group Info" used by Australia and South Africa M...
Definition: clDsmClientMain.c:332
clDsmErr_t dsmStreamGetProgramAssocTag(clDsmObjHandle_t streamObjectHandle, U16BIT *pAssociation_tag)
The Client calls this function to obtain the Association Tag which can be used to determine the PID o...
Definition: streamObject.c:146
clDsmErr_t clDsmCarouselUnloadFileGroups(clDsmInstHandle_t instance, clDsmOCHandle_t clDsmCarouselHandle, S_CarouselInfoFileGroup *groups)
Release "File Group Info" data allocated by used by clDsmCarouselLoadFileGroups() ...
Definition: clDsmClientMain.c:379
clDsmErr_t clDsmOpenObject(clDsmInstHandle_t instance, clDsmObjHandle_t clDsmObjectHandle, clDsmObjectKind_t *pKind)
Open object data for subsequent access via API functions for given object kind. The object must have ...
Definition: clDsmClientMain.c:933
clDsmErr_t clDsmGetCarouselId(clDsmInstHandle_t instance, clDsmOCHandle_t carouselHandle, U32BIT *pCarouselId)
Retrieve Carousel Id for the loaded DSM-CC Object Carousel.
Definition: clDsmClientMain.c:266
clDsmErr_t dsmGetObjectServiceContext(clDsmObjHandle_t clDsmObjectHandle, U32BIT serviceId, U8BIT **pSrvCtxtData, U32BIT *pSrvCtxtLen)
This function gets service context of DSM object (if available) Need by MHEG5 for specified service g...
Definition: clDsmClientMain.c:1391
clDsmErr_t clDsmSpecialEventUnsubscribe(clDsmInstHandle_t dsmccInstance, H_DsmEvent eventHandle)
Same as clDsmStreamEventUnsubscribe - used in conjuction with clDsmSpecialEventSubscribe.
Definition: streamEvent.c:680
clDsmErr_t clDsmSysProcessSIChangeEvent(clDsmInstHandle_t instance, clDsmSIChangeEvent_t event, U16BIT service_id, U32BIT carousel_id)
Notify that the SI for the indicated service has changed Changes should be notified in the following ...
Definition: clDsmMain.c:1115
Definition: dvblocator.h:30
clDsmErr_t clDsmSysDestroy(clDsmInstHandle_t instance, H_SiqInstance *pSiqInst, H_SfmInstance *pSfmInst)
Destroy DSM-CC Core Layer instance. De-allocates all 'static' memory used by the instance (via freeFu...
Definition: clDsmMain.c:444
clDsmErr_t clDsmStreamEventNameList(clDsmInstHandle_t dsmccInstance, clDsmObjHandle_t streamObject, U8BIT **pNamesPtr, U16BIT *pNamesLen)
The Client uses this function to request list of event names for stream object Before calling this fu...
Definition: streamEvent.c:1282
clDsmErr_t clDsmUnloadObject(clDsmInstHandle_t instance, clDsmObjHandle_t clDsmObjectHandle, E_DsmRstMode mode)
Unload (or cancel the requested load of) a DSM-CC object The client MUST first close and/or unsubscri...
Definition: clDsmClientMain.c:775
clDsmErr_t clDsmStreamEventSubscribe(clDsmInstHandle_t dsmccInstance, clDsmObjHandle_t streamObject, U8BIT *eventName, void *userData1, void *userData2, H_DsmEvent *pEventHandle)
The Client uses this function to request that the DSMCC notifies it when a named stream event occurs...
Definition: streamEvent.c:304
clDsmOCHandle_t clDsmCurrentCarousel(clDsmInstHandle_t instance)
Retrieve handle to the current carousel for DSM-CC Instance.
Definition: clDsmClientMain.c:296
DSM-CC global types header Used by SI Query and Section Filter code.
clDsmErr_t clDsmSpecialEventSubscribe(clDsmInstHandle_t dsmccInstance, U16BIT associationTag, U16BIT eventId, void *userData1, void *userData2, H_DsmEvent *pEventHandle)
Like clDsmStreamEventSubscribe, except that no stream object is required. This function subscribes to...
Definition: streamEvent.c:489
Definition: dsm_client.c:55
clDsmErr_t clDsmUnloadCarousel(clDsmInstHandle_t instance, clDsmOCHandle_t clDsmCarouselHandle, E_DsmRstMode mode)
Unload (or cancel the requested load of) a DSM-CC Object Carousel (service domain). The client MUST first unload all objects before calling this function (which implies it must also have previously closed and/or unsubscribed any events on any loaded objects). If there are any active object loads in the carousel when clDsmUnloadCarousel is called then the unload will not be executed and an error returned. If the carousel is in the process of loading and/or booting the load operation will be aborted (and the notifyCarouselLoadEventFunc callback made with status OC_LOAD_ABORTED_UNLOAD). Any carousel load request that returned a valid clDsmCarouselHandle (ie. did not generate an error at clDsmLoadCarousel call time), must be explicitly unloaded via clDsmUnloadCarousel. This is necessary, whether the carousel was successfully loaded or the load was aborted due to timeout or error. Once unload is called for a carousel, the clDsmCarouselHandle is no longer valid and must not be used by the client/calling env. If it needs to access the carousel subsequently it must re-load it and get a new clDsmCarouselHandle value. To forcefully destroy loaded objects and/or carousels (eg. where the handles may be unknown/lost) then clDsmReset can be used with force switches. Note that this physically deletes them from the cache whereas unloading (objects or carousels) does not. CALLBACKS THAT MAY BE INITIATED DURING THIS CALL: delSectionFilterFunc stopTimerFunc stopSIQueryFunc unsubscribeSIChange notifyCarouselLoadEventFunc.
Definition: clDsmClientMain.c:420
clDsmErr_t clDsmSysSetCurrService(clDsmInstHandle_t instance, U16BIT original_network_id, U16BIT transport_stream_id, U16BIT service_id)
Set/notify the current service (initially and when changing it). This MUST be called initially (ie...
Definition: clDsmMain.c:819
clDsmErr_t clDsmStreamGetDeferredService(clDsmInstHandle_t instance, clDsmObjHandle_t streamObject, void *userData1, void *userData2, S_DvbLocator **ppDeferredService)
The Client calls this function to obtain the Association Tag which can be used to determine the PID o...
Definition: streamObject.c:230
Definition: cldsmcc.h:681
Definition: siq_main.h:33
clDsmErr_t clDsmStreamEventUnsubscribe(clDsmInstHandle_t dsmccInstance, H_DsmEvent eventHandle)
This function is called by the Client to let DSMCC know when a previously subscribed stream event is ...
Definition: streamEvent.c:618
void(* clDsmNotifyStreamEventFunc_t)(H_DsmEvent eventHandle, clDsmSENotifyStatus_t status, void *userData1, void *userData2, U8BIT *namePtr, U8BIT *dataPtr, U8BIT namelen, U8BIT dataLen)
The Client defines this function to enable the DSMCC to communicate to the Client when any subscribed...
Definition: cldsmcc.h:641
Definition: dsmObject.h:55
void(* clDsmNotifyDeferredServiceFunc_t)(void *userData1, void *userData2, S_DvbLocator *pDeferredService)
Called when request for deferred service of stream object has completed after clDsmStreamGetDeferredS...
Definition: cldsmcc.h:662
clDsmErr_t clDsmSysProcessTimerEvent(clDsmInstHandle_t instance, void *clDsmTmrUserData, clDsmTimerEventStatus_t status, void *timerHandle)
Definition: clDsmMain.c:927
clDsmErr_t clDsmSysProcessSIQueryEvent(clDsmInstHandle_t instance, clDsmSIQueryRef_t clDsmSIQueryRef, void *clDsmSIUserData, pclDsmSIQueryResult_t pResult)
Notifies the result of the specified SI query (ie. a callback to startSIQueryFunc that returned SIQUE...
Definition: clDsmMain.c:1035
Definition: clDsmSystem.h:551
clDsmErr_t clDsmSetCurrentCarousel(clDsmInstHandle_t instance, clDsmOCHandle_t carouselHandle)
Sets current carousel for DSM-CC Instance.
Definition: clDsmClientMain.c:301
clDsmErr_t clDsmSysReset(clDsmInstHandle_t instance, E_DsmRstMode mode)
Reset DSM-CC Core Layer instance. Resets conditions to the same state as after clDsmSysCreate (ie...
Definition: clDsmMain.c:681
Definition: sfm_main.h:36
Definition: cldsmtypes.h:148
Definition: cldsmtypes.h:204
Definition: dsm_client.c:39
Definition: cldsmtypes.h:182