DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
siQuery.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 _SIQUERY_H_
26 #define _SIQUERY_H_
27 
28 
29 /*---includes for this file--------------------------------------------------*/
30 
31 
32 #include "clDsmSystem.h"
33 #include "linkList.h"
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 
40 /*---Constant and macro definitions for public use---------------------------*/
41 
42 #define SI_QUERY_MAGIC 0xC537D89E
43 
44 
45 /*******************
46 * EXPORTED TYPES *
47 ********************/
48 
49 typedef enum {
50  SIQS_INITIAL = 0,
51  SIQS_PENDING, /* -- Waiting for results to be supplied asynchronously */
52  SIQS_COMPLETED, /* -- Results supplied */
53  SIQS_ABORTED, /* -- Aborted before results supplied */
54  SIQS_EXPIRED /* -- Aborted before results supplied but has duplicates */
55 } SiQueryState_t;
56 
57 typedef struct {
58  S_LLObject llData[NUM_LISTS_SI_QUERY];
59 
60  U32BIT magic;
61  SiQueryState_t state;
62 
63  clDsmSIQuery_t query;
64  void* target;
65 
66  void* queryHandle; /* -- External handle */
67 
68  P_LLControl llcDuplSiQuerys; /* -- Only used if original == True */
69  BOOLEAN original; /* -- original or duplicate (False) */
70 
72 
73 
74 /*---Global variable declarations for public use-----------------------------*/
75 
76 /*---Global Function prototypes for public use---------------------------------*/
77 
78 clDsmErr_t siQueryStart( pclDsmInstData_t idp,
79  /*I*/ pclDsmSIQuery_t pQueryData, void* queryTarget,
80  /*O*/ clDsmSIQueryResult_t *pResult );
81 
83  /*IO*/ MemHandle *phPendingSiQueryRef );
84 
86  /*IO*/ MemHandle *phSiQueryRef );
87 
89  /*I*/ MemHandle hSiQueryRef, pclDsmSIQueryResult_t pResult );
90 
91 #ifdef GET_PID_LIST
92 clDsmErr_t siQueryGetPIDList( pclDsmInstData_t idp );
93 #endif /*GET_PID_LIST*/
94 
95 /*----------------------------------------------------------------------------*/
96 #ifdef __cplusplus
97 }
98 #endif
99 #endif /* _SIQUERY_H_ */
General include file for clDsm library internal definitions.
clDsmErr_t siQueryProcessResult(pclDsmInstData_t idp, MemHandle hSiQueryRef, pclDsmSIQueryResult_t pResult)
Processes and stops the specified SI Query.
Definition: siQuery.c:530
void siQueryStop(pclDsmInstData_t idp, MemHandle *phSiQueryRef)
Stops the specified SI Query. Removes from any lists it is in and destroys associated memory object...
Definition: siQuery.c:273
Definition: clDsmSystem.h:551
Definition: linkList.h:47
Definition: linkList.h:55
clDsmErr_t siQueryStart(pclDsmInstData_t idp, pclDsmSIQuery_t pQueryData, void *queryTarget, clDsmSIQueryResult_t *pResult)
Starts an SI Query. First tests if we have already made this query and the results are stored or stil...
Definition: siQuery.c:78
Definition: siQuery.h:57
void siQueryAbortPending(pclDsmInstData_t idp, MemHandle *phPendingSiQueryRef)
Aborts the specified SI Query before completion. Stops/destroys duplicate queries. For original queries or duplicate queries that have expired parents (and no further duplicates) calls stop SI Query callback on relevant query.
Definition: siQuery.c:350
Definition: cldsmtypes.h:204
Definition: cldsmtypes.h:182