DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
getModuleInfo_include_src.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  *******************************************************************************/
29 /*
30 -- getpModuleInfo_source - Common Code
31 --
32 -- Get module info from module info descriptor in DII message (compatible with
33 -- contiguous or managed/MemSeq memory)
34 --
35 -- Uses/assumes the following vars:
36 -- valid, mpModuleInfoDescStart, *pModuleInfo
37 --
38 -- mpModuleInfoDescStart references ('points' to) first byte of module info
39 -- descriptor, valid (BOOLEAN) indicates whether module info was valid
40 --
41 -- mpModuleInfoDescStart = const pUInt8/MemSeqRef,
42 -- pModuleInfo = pModuleInfo_t
43 -- valid = BOOLEAN
44 --
45 -- NB. Only DVB (UK Profile 1) spec. currently implemented
46 */
47 
48 {
49  MemPtr mpModuleInfoDesc;
50  U8BIT tapsCount;
51  U8BIT userInfoLength;
52  MemPos currPos, endPos;
53  U8BIT descriptorTag;
54  U8BIT descriptorLength;
55  U8BIT ui8 = 0;
56  U16BIT ui16 = 0;
57  ui8 += 0; /* -- stop compiler warnings when no checking */
58 
59  dsmAssert(( mpModuleInfoDescStart != NULL ));
60  dsmAssert(( pModuleInfo != NULL ));
61 
62 
63  /* -- Open MemPtr for accessing module descriptor info */
64  MEMPTR_OPEN( mpModuleInfoDescStart, mpModuleInfoDesc );
65 
66  /* -- Read moduleId */
67  READ_UINT16( mpModuleInfoDesc, pModuleInfo->moduleId );
68 
69  /* -- Read moduleSize */
70  /* -- L0 check because 0 length modules are not useful */
71  READ_UINT32_L0CHK( mpModuleInfoDesc, pModuleInfo->moduleSize,
72  pModuleInfo->moduleSize != 0,
73  dsmDP2(("DATA ERROR: Module size = %u\n", pModuleInfo->moduleSize)),
74  goto _return_False );
75 
76 #ifndef NDEBUG
77  /* Initialise debug monitor flag */
78  pModuleInfo->blkRcvd = 0;
79 #endif
80 
81  /* -- Read moduleVersion */
82  READ_UINT8( mpModuleInfoDesc, pModuleInfo->version );
83 
84  /* -- Skip pModuleInfoLength */
85  SET_POS_REL( mpModuleInfoDesc, 1 );
86 
87  /* -- mpModuleInfoDesc -> BIOP::pModuleInfo */
88 
89  /* -- Read moduleTimeOut */
90  READ_UINT32( mpModuleInfoDesc, pModuleInfo->profileInfo.moduleTimeout );
91 
92  /* -- Read blockTimeOut */
93  READ_UINT32( mpModuleInfoDesc, pModuleInfo->profileInfo.blockTimeout );
94 
95  /* -- Read minBlockTime */
96  READ_UINT32( mpModuleInfoDesc, pModuleInfo->profileInfo.minBlockTime );
97 
98  /* -- Read/check tapsCount >= 1 (DVB) */
99  /* -- L1 check because this should be correct */
100  READ_UINT8_L1CHK( mpModuleInfoDesc, tapsCount, tapsCount >= 1,
101  dsmDP2(("DATA ERROR: Module info tapsCount (< 1) = %u\n", ui8)),
102  goto _return_False );
103 
104 
105  /* -- mpModuleInfoDesc -> start of first BIOP::Tap */
106 
107  /* -- Read info from first Tap */
108  /* -- Read tapId - TODO: Not required ? */
109  READ_UINT16( mpModuleInfoDesc, pModuleInfo->profileInfo.tap.id );
110 
111  /* -- tapUse = BIOP_OBJECT_USE (in BIOP::pModuleInfoMessage - DVB/UK DTT) */
112  /* -- L0 check because this must be correct */
113  READ_UINT16_L0CHK( mpModuleInfoDesc, ui16, ui16 == BIOP_OBJECT_USE,
114  dsmDP2(("DATA ERROR: Module info 1st tapUse (!= BIOP_OBJECT_USE) = %u\n", ui16)),
115  goto _return_False );
116 
117  /* -- Read associationTag */
118  READ_UINT16( mpModuleInfoDesc, pModuleInfo->profileInfo.tap.associationTag );
119 
120  /* -- selectorLength = 0 (DVB/UK DTT) */
121  ADV_UINT8_L2CHK( mpModuleInfoDesc, ui8, ui8 == 0x00,
122  dsmDP2(("DATA ERROR: Module info tap selectorLength (!= 0) = %u\n", ui8)),
123  goto _return_False );
124 
125  /* -- Skip any remaining Taps */
126  while (--tapsCount > 0) {
127 
128  /* -- Skip tapId, tapUse, associationTag */
129  SET_POS_REL( mpModuleInfoDesc, 6 );
130 
131  /* -- Read selectorLength */
132  READ_UINT8( mpModuleInfoDesc, ui8 );
133 
134  /* -- Skip selector field */
135  SET_POS_REL( mpModuleInfoDesc, (S32BIT)ui8 );
136  }
137 
138 
139  /* -- mpModuleInfoDesc -> userInfoLength */
140 
141  /* -- Read userInfoLength */
142  READ_UINT8( mpModuleInfoDesc, userInfoLength );
143 
144  /* -- Initialise module compression info */
145  pModuleInfo->profileInfo.compressed = FALSE;
146  pModuleInfo->profileInfo.originalSize = pModuleInfo->moduleSize;
147 
148  if (userInfoLength > 0) {
149 
150  /* -- Search module descriptor loop for compressed module descriptor */
151 
152  /* -- Determine end position of search data */
153  GET_POS( mpModuleInfoDesc, currPos );
154  endPos = currPos + userInfoLength;
155 
156  while (currPos < endPos) {
157 
158  /* -- mpModuleInfoDesc -> current module descriptor */
159 
160  /* -- Read descriptorTag */
161  READ_UINT8( mpModuleInfoDesc, descriptorTag );
162 
163  /* -- Read descriptorLength */
164  READ_UINT8( mpModuleInfoDesc, descriptorLength );
165 
166  switch (descriptorTag )
167  {
168  case DESCRIPTOR_COMP_MODULE_TAG:
169  /* -- compressionMethod LSNibble == 0x8 (DVB/RFC1950)*/
170  /* -- L1 check because this should be correct (subsequently
171  -- zlib inflate should also check compression method of
172  -- module data/stream before attempting to decompress) */
173  ADV_UINT8_L1CHK( mpModuleInfoDesc, ui8, (ui8 & 0x0f) == 0x08,
174  dsmDP2(("DATA ERROR: Module info compressionMethod (!= 0x08) = %u\n", ui8)),
175  goto _return_False );
176 
177  /* -- Indicate module is compressed */
178  pModuleInfo->profileInfo.compressed = TRUE;
179 
180  /* -- Read originalSize */
181  READ_UINT32( mpModuleInfoDesc,
182  pModuleInfo->profileInfo.originalSize );
183 
184  /* -- Found the required info so quit the loop */
185  break;
186 
187  case DESCRIPTOR_MHP_CACHING_PRIORITY:
188  /* TS 101 812, section B.2.2.4.2 Caching priority descriptor */
189  READ_UINT32( mpModuleInfoDesc, pModuleInfo->priority );
190  READ_UINT32( mpModuleInfoDesc, pModuleInfo->transparency );
191  break;
192 
193  default:
194  dsmDP2(("INFO: Module - Unknown descriptor tag: %x\n", descriptorTag));
195  /* -- Skip this module descriptor */
196  SET_POS_REL( mpModuleInfoDesc, (S32BIT)descriptorLength );
197  }
198 
199  /* -- Find next (potential) descriptor start position */
200  GET_POS( mpModuleInfoDesc, currPos );
201  }
202  }
203 
204  /* -- If we get here, assume we have recovered the required data */
205  valid = TRUE;
206  goto _return;
207 
208  /* -- NB. Final position of mpModuleInfoDesc ptr is irrelevant */
209 
210 _return_False:
211  valid = FALSE;
212 
213 _return:
214  MEMPTR_CLOSE( mpModuleInfoDesc );
215  DEBUG_CHK( valid == TRUE,
216  dsmDP1(("ERROR: getpModuleInfo failure (invalid)\n")) );
217 }
218 
219 
220 /*----------------------------------------------------------------------------*/
221 
222 
223