DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
module.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  *******************************************************************************/
26 #ifndef _MODULE_H_
27 #define _MODULE_H_
28 
29 
30 /*-------------------------------- Includes --------------------------------*/
31 #include "clDsmSystem.h"
32 
33 #include "linkList.h"
34 #include "sectionFilter.h"
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 
41 /*----------------------------- Exported Macros ----------------------------*/
42 
43 
44 /*------------------------------ Exported Types ----------------------------*/
45 
46 /* -- NB. This is only here to allow debug checking of size from clDsmMain */
47 typedef struct {
48  U16BIT numBlocks;
49  U16BIT blocksRqd;
50  U32BIT downloadSize;
51  U16BIT blockSize;
52  U8BIT blockRcvdRegister[(MAX_BLOCKS_IN_MODULE + 7)/8]; /* -- round up */
53  MemHandle hModuleData;
55 
56 
57 typedef enum {
58  MS_INITIAL, /* -- transient state */
59  MS_PENDING_INFO, /* -- waiting for DII info */
60  MS_PENDING_DDB, /* -- DII info available, waiting for first DDB */
61  MS_BUILDING, /* -- first DDB received */
62  MS_CACHED, /* -- module complete (compressed or decompressed) */
63  MS_ACQ_FAILED, /* -- acquisition failed due to decompress failure
64  -- (transient state)*/
65  MS_ACQ_ABORTED, /* -- acquisition aborted due to multiple decompress
66  -- failures */
67  MS_EXPIRED /* -- module stale (out of date) but still in use (ie.
68  -- has loaded object(s)) */
69 } ModuleStatus_t;
70 
71 
72 /* -- Default = UK MHEG profile 1 settings */
73 typedef struct {
74  U32BIT moduleTimeout;
75  U32BIT blockTimeout;
76  U32BIT minBlockTime;
77  ObjectTap_t tap;
78  /* MHP only requires following */
79  BOOLEAN compressed;
80  U32BIT originalSize;
82 
83 
84 typedef struct {
85  U16BIT moduleId;
86  U16BIT blockSize;
87 #ifndef NDEBUG
88  U32BIT blkRcvd;
89 #endif
90  U32BIT moduleSize;
91  ModuleInfoProfile_t profileInfo;
92  U8BIT version;
93  U8BIT priority;
94  U8BIT transparency;
96 
97 
98 typedef struct s_Module {
99  S_LLObject llData[NUM_LISTS_MODULE];
100  ModuleInfo_t moduleInfo;
101  ModuleStatus_t status;
102 
103  /* -- DDB filter info */
104  pSectionFilterInfo_t pDdbSf;
105 
106  U16BIT currentUseCount; /* -- Limited by design */
107  U16BIT decompressFailureCount; /* -- Limited by MAX_MODULE_DECOMPRESS_FAILURES */
108 
109  U16BIT openCount; /* -- Limited by NUM_OPEN_DSM_OBJECTS_MAX */
110 
111  U32BIT loadedCount; /* -- Limited only by memory */
112  U32BIT clientRequestCount; /* -- Limited only by memory */
113 
114  /* -- NOT CURRENTLY USED - Intended for making more intelligent
115  -- decisions on whether to cache decompressed or not */
116  U32BIT numDirObjs;
117 
118  /* -- NB. Module inherits 'highest priority' caching rules of
119  -- any object loaded from the module */
120  clDsmCachingRules_t cachingRules;
121 
122  MemHandle hModuleBuilder;
123  MemHandle hCompModuleData;
124  MemHandle hModuleData;
125 
126  P_LLControl llcLoadRequests;
127 } Module_t;
128 
129 
130 /*------------------------------ Exported Data -----------------------------*/
131 
132 
133 /*--------------------------- Exported Prototypes --------------------------*/
134 #ifdef DSM_NO_MEM_CONTEXT
135 #define moduleUse( x, a ) moduleUse( a )
136 #define moduleUnUse( x, a ) moduleUnUse( a )
137 #endif
138 
139 
140 clDsmErr_t moduleCreate( pclDsmInstData_t idp,
141  U16BIT moduleId, MemHandle *phModule );
142 
143 void moduleDestroy( pclDsmInstData_t idp, MemHandle *phModule );
144 
145 void moduleUse( DSM_CONTEXT_DEFN, MemHandle hModule );
146 
147 void moduleUnUse( DSM_CONTEXT_DEFN, MemHandle hModule );
148 
149 void moduleResetState( pclDsmInstData_t idp,
150  pModule_t pModule, ModuleStatus_t reqdState );
151 
152 clDsmErr_t moduleBuild( pclDsmInstData_t idp,
153  MemHandle hModule, U8BIT* pDDBMsgPayload,
154  U16BIT ddbMsgPayloadLen, BOOLEAN *pCompleted );
155 
156 /* Generic module list functions */
157 MemHandle moduleListFindById( P_LLControl pModuleList, U16BIT moduleId );
158 
159 
160 /*----------------------------------------------------------------------------*/
161 #ifdef __cplusplus
162 }
163 #endif
164 #endif /* _MODULE_H_ */
Definition: module.h:73
General include file for clDsm library internal definitions.
Definition: module.h:98
Definition: module.h:47
Definition: module.h:84
Definition: clDsmSystem.h:534
Definition: sectionFilter.h:68
Header to the sectionFilter module.
Definition: clDsmSystem.h:551
Definition: linkList.h:47
Definition: linkList.h:55