DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
objectCarousel.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 _OBJECTCAROUSEL_H_
26 #define _OBJECTCAROUSEL_H_
27 
28 
29 /*-------------------------------- Includes --------------------------------*/
30 #include "clDsmSystem.h"
31 
32 #include "linkList.h"
33 #include "sectionFilter.h"
34 #include "object.h"
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 
41 /*----------------------------- Exported Macros ----------------------------*/
42 
43 #define OC_MAGIC 0x27BEC2A5
44 #define INVALID_DSI_TRANSACTION_ID 0xFFFFFFFF
45 
46 
47 /*------------------------------ Exported Types ----------------------------*/
48 
49 typedef enum {
50  OCS_INITIAL,
51  OCS_PENDING_BOOTINFO, /* -- waiting on SI Query for boot info */
52  OCS_BOOTING, /* -- DSI requested */
53  OCS_BOOTED, /* -- DSI (SRG info) acquired, SRG requested */
54  OCS_LOADED, /* -- SRG loaded */
55  OCS_LOAD_FAILED /* -- failed to boot or load */
56 } OcStatus_t;
57 
58 
59 typedef struct FileGroupList_s *pFileGroupList_t;
60 
61 typedef struct s_ObjectCarousel
62 {
63  S_LLObject llData[NUM_LISTS_OBJECT_CAROUSEL];
64 
65  U32BIT magic;
66 
67  U32BIT carouselId;
68  U32BIT dsiTransactionId;
69  U16BIT service_id;
70 
71  /* -- DSI filter info */
72  U16BIT dsiAssocTag;
73  pSectionFilterInfo_t pDsiSf;
74 
75  OcStatus_t ocStatus;
76  MemHandle hPendingSiQueryRef; /* -- Only used initially */
77 
78  MemHandle hLoadRequest;
79 
80  DeliveryParaTap_t srgTap;
81  ObjectLocation_t srgObjLoc;
82  pFileGroupList_t pFileGroupList;
83 
84  MemHandle hSrgDataCarousel;
85  MemHandle hSrgModule;
86 
87  U32BIT srgObjectOffset;
88  ObjectDataInfo_t srgObjectInfo;
89  BOOLEAN srgObjectLoaded;
90 
91  BOOLEAN bOCLiteOptionsObjectProcessing;
92  U16BIT loadedObjectCount;
93 
94  P_LLControl llcOcDataCarousels;
95  P_LLControl llcOcDiiAcquires;
96  P_LLControl llcOcModuleAcquires;
97  P_LLControl llcOcPostponedLiteObjectLoads;
99 
100 
101 /*------------------------------ Exported Data -----------------------------*/
102 
103 
104 /*--------------------------- Exported Prototypes --------------------------*/
105 
106 clDsmErr_t ocCreate( pclDsmInstData_t idp,
107  U32BIT carouselId, pObjectCarousel_t *ppObjectCarousel );
108 
109 void ocDestroy( pclDsmInstData_t idp,
110  pObjectCarousel_t *ppObjectCarousel );
111 
112 clDsmErr_t ocDiiAcquireStart( pclDsmInstData_t idp,
113  pObjectCarousel_t pOC, MemHandle hDC, clDsmSFPriority_t sfPriority );
114 
115 void ocDiiAcquireStop( pclDsmInstData_t idp,
116  pObjectCarousel_t pOC, MemHandle hDataCarousel );
117 
118 clDsmErr_t ocModuleAcquireStart( pclDsmInstData_t idp,
119  pObjectCarousel_t pOC, MemHandle hModule, clDsmSFPriority_t sfPriority );
120 
121 void ocModuleAcquireStop( pclDsmInstData_t idp, pObjectCarousel_t pOC, MemHandle hModule );
122 
123 pObjectCarousel_t ocListFindById( P_LLControl plcObjectCarousel, U16BIT service_id, U32BIT carouselId );
124 
125 BOOLEAN ocListFind( P_LLControl pllcObjectCarousel, MemHandle hObjectCarousel );
126 
127 clDsmErr_t ocUpdateSrgUserInfo( pclDsmInstData_t idp, pObjectCarousel_t pOC,
128  U8BIT* pSrgData, U16BIT usrInfoLen );
129 
130 clDsmErr_t ocRetrieveFileGroups( pObjectCarousel_t pOC, U16BIT* total,
131  S_CarouselInfoFileGroup **pGroups );
132 
133 void ocReleaseFileGroups( pclDsmInstData_t idp, pObjectCarousel_t pOC, S_CarouselInfoFileGroup *groups );
134 
135 /*----------------------------------------------------------------------------*/
136 
137 #ifdef __cplusplus
138 }
139 #endif
140 #endif /* _OBJECTCAROUSEL_H_ */
141 
General include file for clDsm library internal definitions.
Definition: clDsmSystem.h:525
Definition: sectionFilter.h:68
Header to the sectionFilter module.
Header to the object module - functions/methods accessing data of object messages inside modules...
Definition: objectCarousel.c:49
Definition: clDsmSystem.h:551
Definition: clDsmSystem.h:514
Definition: object.h:56
Definition: linkList.h:47
Definition: linkList.h:55