DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
dsmObject.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 © 2002 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 _DSMOBJECT_H_
26 #define _DSMOBJECT_H_
27 
28 
29 /*---includes for this file--------------------------------------------------*/
30 
31 #include "clDsmSystem.h"
32 #include "linkList.h"
33 #include "object.h"
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 
40 /*---Constant and macro definitions for public use---------------------------*/
41 
42 
43 #define DSM_OBJECT_MAGIC 0xF1D3B597
44 
45 #define DSM_OBJECT_VALIDATE( pDsmObject ) \
46  (pDsmObject->magic == DSM_OBJECT_MAGIC)
47 
48 #define DEFFERED_SERVICE_RECEIVED 0xD0FE
49 
50 /*---Global type defs for public use-------------------------------------------*/
51 
53 
54 
56  S_LLObject llData[NUM_LISTS_OBJECT];
57 
58  U32BIT magic;
59  MemHandle myHandle;
60 
61  clDsmObjLoadStatus_t status;
62 
63  clDsmCachingRules_t cachingRules;
64 
65  clDsmObjectKind_t kind;
66 
67  pObjectCarousel_t pObjCarousel;
68  MemHandle hModule;
69 
70  ObjectDataInfo_t objectInfo;
71  U32BIT objectDataOffset;
72  MemSeqRef objectDataSeq;
73 
74  /* Use of below depends on 'status' */
75  union {
76  MemHandle hLoadRequest; /* non-NULL when (status == OBJ_LOAD_IN_PROGRESS) */
77  MemHandle hPendingSiQueryRef; /* non-NULL when (status == OBJ_LOAD_COMPLETED) and getting deferred service */
78  } r;
79 
80  /* Use of below depends on 'kind', and only valid when (status == OBJ_LOAD_COMPLETED) */
81  union {
82  /* deferred service query - temporary held data, while (hPendingSiQueryRef != NULL) */
83  struct {
84  void* userData1;
85  void* userData2;
86  } ds;
87 
88  /* stream object, deferred service */
89  struct {
90  S_DvbLocator multiplex;
91  U16BIT retrieved;
92  } so;
93 
94  /* directory object ...*/
95 
96  } data;
97 };
98 
99 /*---Global variable declarations for public use-----------------------------*/
100 
101 /*---Global Function prototypes for public use---------------------------------*/
102 
103 clDsmErr_t objectCreate( pclDsmInstData_t idp, MemHandle *phObject );
104 
105 void objectDestroy( pclDsmInstData_t idp, MemHandle *phObject );
106 
107 
108 /*----------------------------------------------------------------------------*/
109 #ifdef __cplusplus
110 }
111 #endif
112 #endif /* _DSMOBJECT_H_ */
General include file for clDsm library internal definitions.
Definition: dvblocator.h:30
Definition: dsmObject.h:55
Header to the object module - functions/methods accessing data of object messages inside modules...
Definition: clDsmSystem.h:551
Definition: object.h:56
Definition: linkList.h:47