DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
dsfm.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  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
24 #ifndef _DSFM_H_
25 #define _DSFM_H_
26 
27 #include "cldsmtypes.h"
28 #include "dmxtypes.h"
29 #include "stdfuncs.h"
30 
31 #define SECTION_HEADER_LENGTH 8
32 
33 /* values for debug config */
34 #define DF_NONE 0x0000
35 #define DF_MAIN 0x0001
36 #define DF_FILTER 0x0002
37 #define DF_CACHE 0x0004
38 #define DF_ALL 0x000f
39 
40 typedef enum {
41  SFM_ERROR,
42  SFM_IGNORE,
43  SFM_UPDATE_CACHE,
44  SFM_UPDATE_LOW,
45  SFM_UPDATE_HIGH
46 } E_SFM_STATUS;
47 
48 typedef struct s_DmxPidFilter* H_DmxPidFilter;
49 
50 /*------------------- Functions supplied to SFM at setup ---------------------*/
51 
59 typedef PIDFILT (*F_PidFilterAdd)( DMXREF demux, U16BIT pid );
60 
67 typedef void (*F_PidFilterDelete)( DMXREF demux, PIDFILT pfid );
68 
83 typedef SECFILT (*F_SecFilterAdd)( DMXREF demux, PIDFILT pfid,
84  U8BIT tid, U8BIT tidMask,
85  U16BIT tidExt, U16BIT tidExtMask );
86 
93 typedef void (*F_SecFilterDelete)( DMXREF demux, SECFILT sfid );
94 
103 typedef void (*F_PidFilterStart)( DMXREF demux, PIDFILT pfid );
104 
112 typedef void (*F_PidFilterStop)( DMXREF demux, PIDFILT pfid );
113 
122 typedef void (*F_UpdateFilter)( H_SfmInstance sfm, H_DmxPidFilter hPF );
123 
136 typedef void (*F_CacheMatch)( H_SfmInstance sfm, U8BIT* pSection,
137  void* hBuffer, E_SFM_STATUS status );
138 
139 /*---------------- Setup structure for SFM initialisation -------------------*/
140 
141 typedef struct
142 {
143  /* ---------- Manditory functions ----------- */
144 
145  F_MemAlloc memAlloc;
146  F_MemFree memFree;
147 
148  F_Locking mutexLock;
149  F_Locking mutexUnlock;
150 
151  F_PidFilterAdd pidFilterAdd;
152  F_PidFilterDelete pidFilterDelete;
153 
154  F_SecFilterAdd secFilterAdd;
155  F_SecFilterDelete secFilterDelete;
156 
157  F_PidFilterStart pidFilterStart;
158  F_PidFilterStop pidFilterStop;
159 
160  F_UpdateFilter updateFilter;
161 
162  /* ---------- Optional functions ----------- */
163 
164  /* cacheMatch function provided so that processing of section data matched
165  * in cache can happen after DSM-CC has finished processing request for
166  * relevant section filter.
167  * If 'cacheMatch' is NULL, then SFM_DsmccFilterAdd will directly call
168  * SFM_ProcessSection.
169  */
170  F_CacheMatch cacheMatch;
171 
172  /* -------- Optional debug functions --------- */
173 
174  /* errPrintf and dbgPrintf functions are only used in a debug build
175  * When not supplied, these must be set to NULL
176  */
177  F_Printf errPrintf;
178  F_Printf dbgPrintf;
179 
180  /* ------------- Mutex parameters ------------ */
181 
182  /* sfmMutex is manditory, used in mutexLock / mutexUnlock functions
183  * and must be created and valid before supplying to SFM_CreateInstance
184  */
185  void* sfmMutex;
186 
187  /* cacheMutex and bufferMutex are only required.if caching
188  * - see sectionBuffCacheSize
189  * It if used in mutexLock / mutexUnlock functions and must be created
190  * before supplying to SFM_CreateInstance
191  */
192  void* cacheMutex;
193  void* bufferMutex;
194 
195  /* -------- Configuration parameters --------- */
196 
197  /* Set maximum number of PID filters available to be used symultaneously
198  * Minimum value: 4
199  */
200  U8BIT maxPidFilters;
201 
202  /* Set maximum number of section filters per PID filter used symultaneously.
203  * Low values will increase requirement for SFM to do it's own
204  * software section filtering.
205  * Minimum value: 1
206  */
207  U8BIT maxSecFiltersPerPid;
208 
209  /* Size of section buffer manager cache in 64K byte blocks. This memory is
210  * used to store section data not immediately required by DSM-CC instance.
211  * This facilitates faster DSM-CC file loading - particularly when the number
212  * of section filters is limited. See maxSecFiltersPerPid (and maxPidFilters)
213  * Minimum value: 0
214  * Suggested value: 16
215  */
216  U8BIT sectionBuffCacheSize;
217 
218  /*
219  * Specifies the maximum number of section filters that are available
220  * to the DSM-CC instance for simultaneously acquiring DSM-CC private sections.
221  * This should be set with the same value as that given to the DSM-CC instance
222  * creation - see 'maxAvailableSectionFilters' in DSM-CC setup.
223  */
224  U16BIT maxAvailableSectionFilters;
225 
226  /* dbgState controls type of debug output for dbgPrintf
227  * For valid debug filter states see above
228  */
229  U32BIT dbgState;
230 
231 } S_SfmSetup;
232 
233 
234 /*---------------------- Functions that configure SFM ------------------------*/
235 
242 
252 void SFM_DestroyInstance( H_SfmInstance sfm, void **pSfmMtx,
253  void **pCchMtx, void **pBufMtx );
254 
263 void SFM_SetDebugConfig( H_SfmInstance sfm, F_Printf errPrintf,
264  F_Printf dbgPrintf, U32BIT dbgState );
265 
272 void SFM_SetDebugState( H_SfmInstance sfm, U32BIT dbgState );
273 
281 
288 void SFM_SetDemuxHandle( H_SfmInstance sfm, DMXREF demux );
289 
290 
291 
292 /*----------------- Functions that process section data ---------------------*/
293 
309 E_SFM_STATUS SFM_RequireSection( H_SfmInstance sfm, PIDFILT pfid,
310  U8BIT *pHeader, void** phBuffer );
311 
323 U8BIT* SFM_CacheBuffer( H_SfmInstance sfm, void* hBuffer );
324 
337 void SFM_ProcessSection( H_SfmInstance sfm, U8BIT *pSection, void* hBuffer );
338 
345 void SFM_FilterUpdate( H_SfmInstance sfm, H_DmxPidFilter hPF );
346 
347 /*-------------------- Functions to manage SFM caching -----------------------*/
348 
355 BOOLEAN SFM_CacheEnableSSF( H_SfmInstance sfm );
356 
363 
372 void SFM_CacheClear( H_SfmInstance sfm );
373 
374 
375 
376 /*----------------- Functions provided to DSM-CC component -------------------*/
377 
389  clDsmSFRef_t dsmSfRef );
390 
401 void SFM_DsmccFilterDelete( H_SfmInstance sfm, void* filterHandle,
402  clDsmSFRef_t dsmSfRef );
403 
404 
416 void SFM_DsmccFilterPriorityChange( H_SfmInstance sfm, void* filterHandle,
417  clDsmSFRef_t dsmSfRef,
418  clDsmSFPriority_t priority );
419 
420 #endif /*_DSFM_H_*/
void(* F_CacheMatch)(H_SfmInstance sfm, U8BIT *pSection, void *hBuffer, E_SFM_STATUS status)
Report to SFM client that there is an update to be processed. This is called in the normal DSM-CC thr...
Definition: dsfm.h:136
void SFM_CacheClear(H_SfmInstance sfm)
Clear all SFM cached section data. Not required to be called, if setup had sectionBuffCacheSize set t...
Definition: sfm_cache.c:523
SECFILT(* F_SecFilterAdd)(DMXREF demux, PIDFILT pfid, U8BIT tid, U8BIT tidMask, U16BIT tidExt, U16BIT tidExtMask)
Allocate a section filter on supplied PID filter The hardware should acquire all sections matching th...
Definition: dsfm.h:83
BOOLEAN SFM_CacheEnableSSF(H_SfmInstance sfm)
Enables Full Sotfware Section Filtering using SFM cache. This will only be successfull if sufficient ...
Definition: sfm_filter.c:85
E_SFM_STATUS SFM_RequireSection(H_SfmInstance sfm, PIDFILT pfid, U8BIT *pHeader, void **phBuffer)
This function performs minimal checking of section header data to find out whether SFM requires this ...
Definition: sfm_main.c:278
void(* F_PidFilterStart)(DMXREF demux, PIDFILT pfid)
Start aquiring section data on PID filter according to all allocated section filters for this PID fil...
Definition: dsfm.h:103
void(* F_SecFilterDelete)(DMXREF demux, SECFILT sfid)
Delete section filter.
Definition: dsfm.h:93
void SFM_CacheDisableSSF(H_SfmInstance sfm)
Disables Sotfware Section Filtering.
Define Demux types use in section filter API.
void SFM_SetDemuxHandle(H_SfmInstance sfm, DMXREF demux)
Set handle to be passed to F_DvpFilterSetup and F_DvpFilterRemove.
Definition: sfm_main.c:253
DSM-CC global types header Used by SI Query and Section Filter code.
void SFM_DsmccFilterPriorityChange(H_SfmInstance sfm, void *filterHandle, clDsmSFRef_t dsmSfRef, clDsmSFPriority_t priority)
Change DSM-CC section filter priority Called by DSM-CC component, and given in clDsmSysCreate setup...
Definition: sfm_filter.c:1076
U8BIT * SFM_CacheBuffer(H_SfmInstance sfm, void *hBuffer)
Get section data buffer pointer in SFM's cache for the handle. This should only be called after SFM_R...
Definition: sfm_cache.c:674
void SFM_DestroyInstance(H_SfmInstance sfm, void **pSfmMtx, void **pCchMtx, void **pBufMtx)
Destroy Section Filter Manager instance, and return mutexes so that they may be destroyed by client...
Definition: sfm_main.c:181
void(* F_UpdateFilter)(H_SfmInstance sfm, H_DmxPidFilter hPF)
Report to SFM client that there is a filter update to be processed. The client must place the request...
Definition: dsfm.h:122
H_SfmInstance SFM_CreateInstance(S_SfmSetup *pSetup)
Create Section Filter Manager instance, using setup structure.
Definition: sfm_main.c:62
void SFM_FilterUpdate(H_SfmInstance sfm, H_DmxPidFilter hPF)
Update SFM PID filter to configure HW for latest requirements.
Definition: sfm_filter.c:1023
void SFM_DsmccFilterDelete(H_SfmInstance sfm, void *filterHandle, clDsmSFRef_t dsmSfRef)
Delete DSM-CC section filter. Called by DSM-CC component, and given in clDsmSysCreate setup...
Definition: sfm_filter.c:973
void SFM_SetDsmInstance(H_SfmInstance sfm, clDsmInstHandle_t dsmcc)
Set instance handle for DSM-CC that SFM is supporting.
Definition: sfm_main.c:240
void * SFM_DsmccFilterAdd(H_SfmInstance sfm, pclDsmSFilter_t pFilter, clDsmSFRef_t dsmSfRef)
Add DSM-CC section filter. Called by DSM-CC component, and given in clDsmSysCreate setup...
Definition: sfm_filter.c:906
void SFM_SetDebugConfig(H_SfmInstance sfm, F_Printf errPrintf, F_Printf dbgPrintf, U32BIT dbgState)
This allows controlling software to reconfigure SFM debug output.
Definition: sfm_main.c:212
void SFM_ProcessSection(H_SfmInstance sfm, U8BIT *pSection, void *hBuffer)
Process required section buffer. This should only be called after SFM_RequireSection has returned SFM...
Definition: sfm_main.c:320
Definition: clDsmSystem.h:551
void(* F_PidFilterStop)(DMXREF demux, PIDFILT pfid)
Stop aquiring section data on PID filter. Stop and Start are called when adding or deleting section f...
Definition: dsfm.h:112
Definition: dsfm.h:141
void(* F_PidFilterDelete)(DMXREF demux, PIDFILT pfid)
Delet PID filter.
Definition: dsfm.h:67
Definition: sfm_main.h:36
Define standard function types.
Definition: cldsmtypes.h:148
PIDFILT(* F_PidFilterAdd)(DMXREF demux, U16BIT pid)
Allocate, configure a PID.
Definition: dsfm.h:59
void SFM_SetDebugState(H_SfmInstance sfm, U32BIT dbgState)
This allows controlling software to reconfigure SFM debug output.
Definition: sfm_main.c:229