DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
Data Structures | Macros | Typedefs | Enumerations | Functions
siQuery.h File Reference

Header to siQuery module - functions for managing SI queries. More...

#include "clDsmSystem.h"
#include "linkList.h"

Go to the source code of this file.

Data Structures

struct  SiQuery_t
 

Macros

#define SI_QUERY_MAGIC   0xC537D89E
 

Typedefs

typedef struct SiQuery_tpSiQuery_t
 

Enumerations

enum  SiQueryState_t {
  SIQS_INITIAL = 0, SIQS_PENDING, SIQS_COMPLETED, SIQS_ABORTED,
  SIQS_EXPIRED
}
 

Functions

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 still pending. Otherwise tries SI query callback. If results are not synchronously returned, stores state of query ready for when they are asynchronously returned (via clDsmProcessSiQueryEvent). NB. If start returns results SYNCHRONOUSLY then siQueryStop must not be called. More...
 
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. More...
 
void siQueryStop (pclDsmInstData_t idp, MemHandle *phSiQueryRef)
 Stops the specified SI Query. Removes from any lists it is in and destroys associated memory object. NB. If siQueryStart returned results SYNCHRONOUSLY then this must not be called. More...
 
clDsmErr_t siQueryProcessResult (pclDsmInstData_t idp, MemHandle hSiQueryRef, pclDsmSIQueryResult_t pResult)
 Processes and stops the specified SI Query. More...
 

Detailed Description

Header to siQuery module - functions for managing SI queries.

Date
07/05/2002
Author
N Kirkland

Function Documentation

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.

Parameters
idpPointer to instance data.
phPendingSiQueryRefPointer to handle of query to abort.
Returns
clDsmErr_t siQueryProcessResult ( pclDsmInstData_t  idp,
MemHandle  hSiQueryRef,
pclDsmSIQueryResult_t  pResult 
)

Processes and stops the specified SI Query.

Parameters
idpPointer to instance data.
hSiQueryRefRefererence for this query (value supplied at start time).
statusStatus of query results.
pResultPointer to results of query (if successful).
Returns
CLDSM_OK (0) The process SI query event was executed with no problems. CLDSM_ERR_INVALID_SIQUERY_STATUS Supplied status value is invalid here. CLDSM_ERR_SYSTEM_ADD_SECTION_FILTER, Problem with add section filter callback.
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 still pending. Otherwise tries SI query callback. If results are not synchronously returned, stores state of query ready for when they are asynchronously returned (via clDsmProcessSiQueryEvent). NB. If start returns results SYNCHRONOUSLY then siQueryStop must not be called.

Parameters
idpPointer to instance data.
pQueryDataPointer to structure containing query details.
queryTargetHandle to target of query (ie. object that needs query results - eg. carousel or section filter).
pResultResults of query if synchronously returned.
Returns
CLDSM_OK Everything hunkydory CLDSM_ERR_SI_QUERY_FAILED Synchronous SI query failed to determine requested information CLDSM_MEM_HEAP_FULL Internal memory manager heap full (treat as internal error)
void siQueryStop ( pclDsmInstData_t  idp,
MemHandle *  phSiQueryRef 
)

Stops the specified SI Query. Removes from any lists it is in and destroys associated memory object. NB. If siQueryStart returned results SYNCHRONOUSLY then this must not be called.

Parameters
idpPointer to instance data.
phSiQueryRefPointer to handle of query to stop (nulled after call).
Returns