DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
dataCarousel.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 _DATACAROUSEL_H_
27 #define _DATACAROUSEL_H_
28 
29 
30 /*-------------------------------- Includes --------------------------------*/
31 
32 #include "clDsmSystem.h"
33 
34 #include "linkList.h"
35 #include "module.h"
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 
42 /*----------------------------- Exported Macros ----------------------------*/
43 
44 
45 /*------------------------------ Exported Types ----------------------------*/
46 
47 typedef struct {
48  U16BIT blockSize;
49  U16BIT numberOfModules; /* -- NB. Value stored here not currently used */
51 
52 
53 typedef struct {
54  S_LLObject llData[NUM_LISTS_DATA_CAROUSEL];
55  U16BIT dataCarouselId;
56  U32BIT lastRcvdTransactionId;
57  U32BIT diiCrc;
58 
59  /* -- DII filter info */
61  pSectionFilterInfo_t pDiiSf;
62 
63  U16BIT diiRequestCount;
64  U16BIT diiMonitorCount;
65 
66  DiiInfo_t diiInfo;
67  U16BIT diiMsgDataLen;
68  MemHandle hDiiMsgData;
69 
70  P_LLControl llcDcModules;
71 
73 
74 
75 /*------------------------------ Exported Data -----------------------------*/
76 
77 
78 /*--------------------------- Exported Prototypes --------------------------*/
79 
80 clDsmErr_t dcCreate( pclDsmInstData_t idp,
81  pDeliveryParaTap_t pTap, MemHandle *phDataCarousel );
82 
83 void dcDestroy( pclDsmInstData_t idp, MemHandle *phDataCarousel );
84 
85 MemHandle dcListFindById( P_LLControl pDcList, U32BIT transactionId );
86 
87 
88 /* -- CONTIGUOUS MEMORY DATA ACCESS FUNCTIONS */
89 
90 #include "defMemUtilsContig.h" /* -- Default mem type for functions */
91 
92 BOOLEAN dcGetDiiMsgInfoContig( const U8BIT* pDiiMsg, DiiInfo_t *pDiiInfo );
93 
94 BOOLEAN dcFindModuleInDiiMsgContig(
95  /*I*/ const MemPtr pDiiMsg, U32BIT dataLength, U16BIT moduleId,
96  /*O*/ MemPtr *pModuleInfoDescStart );
97 
98 BOOLEAN dcGetModuleInfoContig(
99  const MemPtr pModuleInfoDescStart, ModuleInfo_t *pModuleInfo );
100 
101 void dcGetFirstModuleDescContig(
102  /*I*/ const MemPtr mpDiiMsg,
103  /*O*/ MemPtr *mpModuleInfoDescStart );
104 
105 void dcGetNextModuleDescContig(
106  /*I*/ const MemPtr mpCurrModuleDescStart,
107  /*O*/ MemPtr *mpNextModuleDescStart );
108 
109 
110 /* -- MANAGED MEMORY DATA ACCESS FUNCTIONS */
111 
112 #include "defMemUtilsMgd.h" /* -- Default mem type for functions */
113 
114 BOOLEAN dcFindModuleInDiiMsgSeq(
115  /*I*/ const MemPtr mpDiiMsg, U32BIT dataLength, U16BIT moduleId,
116  /*O*/ MemPtr *mpModuleInfoDescStart );
117 
118 BOOLEAN dcGetModuleInfoSeq(
119  const MemPtr mpModuleInfoDescStart, ModuleInfo_t *pModuleInfo );
120 
121 
122 /*----------------------------------------------------------------------------*/
123 
124 #ifdef __cplusplus
125 }
126 #endif
127 #endif /* _DATACAROUSEL_H_ */
General include file for clDsm library internal definitions.
Defines memory access utils to work with contiguous memory.
Definition: dataCarousel.h:47
Definition: module.h:84
Definition: clDsmSystem.h:525
Definition: sectionFilter.h:68
Definition: clDsmSystem.h:551
Definition: linkList.h:47
Definition: linkList.h:55
Header to the 'module' module - Functions/methods for creating/destroying and managing attributes of ...
Defines memory access utils to work with managed (MemMgr) memory.