DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
loadMgr.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  * Copyright © 2001 Koninklijke Philips Electronics N.V
5  *
6  * This file is part of a DTVKit Software Component
7  * You are permitted to copy, modify or distribute this file subject to the terms
8  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
9  *
10  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
11  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
13  *
14  * If you or your organisation is not a member of DTVKit then you have access
15  * to this source code outside of the terms of the licence agreement
16  * and you are expected to delete this and any associated files immediately.
17  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
18  *******************************************************************************/
25 #ifndef _LOADMGR_H_
26 #define _LOADMGR_H_
27 
28 
29 /*-------------------------------- Includes --------------------------------*/
30 #include "clDsmSystem.h"
31 
32 #include "linkList.h"
33 #include "object.h"
34 #include "dsmObject.h"
35 #include "objectCarousel.h"
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 
41 /*----------------------------- Exported Macros ----------------------------*/
42 
43 #define LOAD_REQUEST_MAGIC 0x4C525154 /*'LRQT'*/
44 
45 /*------------------------------ Exported Types ----------------------------*/
46 
47 typedef enum {
48  LRS_INITIAL = 0,
49  LRS_STALLED_DSI,
50  LRS_STALLED_SRG_MODULE,
51  LRS_STALLED_MODULE,
52  LRS_ABORTED_TIMEOUT,
53  LRS_ABORTED_PATH_ERROR,
54  LRS_ABORTED_LOAD_ERROR,
55  LRS_ABORTED_BY_REQUESTER,
56  LRS_LOADED,
57  LRS_LITE_OPTIONS_LOADED,
58  LRS_LITE_OPTIONS_PENDING,
59  LRS_ABORT_PENDING_RELOAD
60 } LRStatus_t;
61 
62 
63 typedef enum {
64  TT_NONE = 0,
65  TT_SRG,
66  TT_GEN_OBJECT,
67  TT_PREFETCH_DIR_OBJ,
68  TT_PREFETCH_NON_DIR_OBJ,
69  TT_MODULE
70 } TargetType_t;
71 
73 
74 typedef void (*LoadFinaliseFunc_t) ( pclDsmInstData_t idp,
75  /*I*/ pLoadRequest_t pLoadRequest );
76 
78  S_LLObject llData[NUM_LISTS_LOAD_REQUEST];
79  U32BIT magic;
80  LRStatus_t status; /* -- Curent load state */
81  TargetType_t targetKind; /* -- Kind of final load target */
82 
83  pObjectCarousel_t pObjCarousel; /* -- OC this load is requested on */
84 
85  MemHandle hDataCarousel; /* -- DC that load is currently progressed to */
86  MemHandle hModule; /* -- Module that load is currently progressed to */
87 
88  DeliveryParaTap_t tap; /* -- Next tap that load needs */
89  ObjectLocation_t objectLocation; /* -- Next object that load needs */
90 
91  clDsmCachingRules_t cachingRules;
92 
93  /* -- Reference/handle to target */
94  union {
95  pDsmObject_t pDsmObject;
96  MemHandle hOC;
97  } targetRef;
98 
99  LoadFinaliseFunc_t loadFinaliseFunc; /* -- Callback */
100 
101  U32BIT targetObjectOffset; /* -- NB. From start of moduleData */
102  ObjectDataInfo_t targetObjectInfo;
103 
104  /* -- Requester userData */
105  void* loadUserData;
106 
107  U32BIT userTimeout; /* -- Original timeout set on load */
108  /* TODO: May not need to store timeout in loadRequest */
109 
110  BOOLEAN clientRequest; /* -- True = this load was requested
111  -- by an external client (ie. not
112  -- an internal pre-fetch */
113 
114  U32BIT remainingPathOffset;
115  MemHandle hRemainingPath;
116 
117  BOOLEAN temporary; /* -- True = this is a temporary
118  * -- request, do not store it */
119 
120 };
121 
122 
123 /*------------------------------ Exported Data -----------------------------*/
124 
125 
126 /*--------------------------- Exported Prototypes --------------------------*/
127 #ifdef DSM_NO_MEM_CONTEXT
128 #define lmSetModuleCachingRules( x, a, b ) lmSetModuleCachingRules( a, b )
129 #endif
130 
131 clDsmErr_t lmCarouselLoadCreate( pclDsmInstData_t idp, pObjectCarousel_t pOC,
132  U32BIT timeout, MemHandle *phLoadRequest );
133 
134 clDsmErr_t lmUpdateCarouselBoot( pclDsmInstData_t idp, pObjectCarousel_t pOC,
135  clDsmCarouselInfo_t *pCarouselInfo );
136 
137 
138 clDsmErr_t lmRequestObjectLoad( pclDsmInstData_t idp,
139  pObjectCarousel_t pOC, U8BIT* path, U32BIT timeout,
140  H_ObjUserData pUserData, U32BIT sizeOfUserData,
141  pDsmObject_t pDsmObject,
142  MemHandle *phLoadRequest );
143 
144 clDsmErr_t lmPrefetchObjectLoad( pclDsmInstData_t idp,
145  pObjectCarousel_t pOC, U8BIT* path, U32BIT timeout,
146  MemHandle *phLoadRequest );
147 
148 void lmLoadDestroy( pclDsmInstData_t idp,
149  MemHandle *phLoadRequest );
150 
151 clDsmErr_t lmGetObjectLoadState( pclDsmInstData_t idp,
152  /*I*/ pObjectCarousel_t pOC, U8BIT* path,
153  /*O*/ BOOLEAN *pLoaded, MemHandle *phModule );
154 
155 clDsmErr_t lmUpdateCarouselSRGInfo( pclDsmInstData_t idp,
157  pObjectLocation_t pSrgLocn );
158 
159 clDsmErr_t lmUpdateDataCarousel( pclDsmInstData_t idp,
160  pObjectCarousel_t pObjectCarousel, MemHandle *phDataCarousel,
161  U32BIT transactionId, U8BIT* pDiiMsg, U16BIT diiMsgDataLen );
162 
163 clDsmErr_t lmUpdateModule( pclDsmInstData_t idp,
164  pObjectCarousel_t pOC, MemHandle *phModule );
165 
166 void lmUnloadModule( pclDsmInstData_t idp, MemHandle *phModule );
167 
168 void lmUnloadDataCarousel( pclDsmInstData_t idp, MemHandle *phDC );
169 
170 void lmUnloadCarousel( pclDsmInstData_t idp, pObjectCarousel_t *ppOC );
171 
172 void lmStopModuleLoadRequest( pclDsmInstData_t idp, MemHandle *phLoadRequest );
173 
174 void lmSetObjectModuleLoaded( pclDsmInstData_t idp, MemHandle hModule );
175 
176 void lmSetObjectModuleUnloaded( pclDsmInstData_t idp, MemHandle *phModule );
177 
178 void lmAbortCarouselLoadRequest( pclDsmInstData_t idp, pObjectCarousel_t pOC );
179 
180 void lmAbortLoadRequestsOnModuleTimeout( pclDsmInstData_t idp, MemHandle *phModule);
181 
182  clDsmErr_t lmLiteOptionsObjectHandle(pclDsmInstData_t idp,
183  U8BIT *name,
184  pLoadRequest_t pLoadRequest );
185 
186 clDsmErr_t lmLiteOptionsObjectOnModuleUpdate(pclDsmInstData_t idp,
187  U8BIT *name,
188  pObjectCarousel_t pCurrOC ,
189  MemHandle hLoadedModule,
190  pLoadRequest_t pLoadRequest );
191 
192 /*----------------------------------------------------------------------------*/
193 
194 #ifdef __cplusplus
195 }
196 #endif
197 #endif /* _LOADMGR_H_ */
General include file for clDsm library internal definitions.
Definition: loadMgr.h:77
Definition: dsm_client.c:55
Definition: clDsmSystem.h:525
Header to dsmObject module - functions for managing DSM object heap.
Definition: dsmObject.h:55
Header to the object module - functions/methods accessing data of object messages inside modules...
Definition: clDsmSystem.h:551
Definition: clDsmSystem.h:514
Definition: object.h:56
Definition: linkList.h:47