MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
|
File interface functions to DSMCC component. More...
Go to the source code of this file.
Macros | |
#define | FRP_CACHE_DEFAULT 0x007F |
#define | FRP_CACHE_MASK 0x00FF |
#define | FRP_APPLICATION 0x0100 |
#define | FRP_SCENE 0x0200 |
#define | FRP_GROUP 0x0300 |
#define | FRP_EXISTS 0x0400 |
#define | FRP_VERIFY 0x0800 |
#define | FRP_HASH 0x1000 |
#define | FRP_CERT 0x2000 |
#define | FRP_SERVER 0x3000 |
#define | FRP_DEFER_SERV 0x4000 |
#define | FRP_IN_APP 0x8000 |
Typedefs | |
typedef void(* | F_CB_Good )(void *userData, S_CONTENT *content) |
typedef void(* | F_CB_Fail )(void *userData) |
Enumerations | |
enum | MHEG5FileOrmResetMode { MHEG5_FILE_ORM_RESET_SCENE_OBJECTS, MHEG5_FILE_ORM_RESET_ALL_OBJECTS, MHEG5_FILE_ORM_RESET_ALL } |
Functions | |
void | MHEG5FileOrmInit (void) |
Initialise the file ORM module. More... | |
void | MHEG5FileOrmReset (MHEG5FileOrmResetMode resetMode) |
Reset the ORM module. This function supports two modes: More... | |
BOOLEAN | MHEG5FileOrmIsReset (MHEG5FileOrmResetMode *resetMode) |
Tell whether the ORM module is currently being reset. If it is, the function also returns the current reset mode. This information is required in order to decide whether to generate an EngineEvent when a file load fails. If a file cannot be loaded (doesn't exist, timeout) then an event is required, but if a file load "fails" because the ORM module is being reset, then no event should be generated. resetMode is an optional parameter, and it can also be NULL. More... | |
BOOLEAN | MHEG5FileOrmProcess (void) |
Check for any file requests that have arrived since this function was last called. For each arrived file the callback will be called. The function may have to be called more than once in case a file the arrived affects other files as well. More... | |
void | MHEG5FileOrmClear (void *orm_ref) |
Aborts a request for file. More... | |
void * | MHEG5FileOrmGet (MHEG5String name, U16BIT priority, void *userData, F_CB_Good callback, F_CB_Fail failCallback) |
Initiate retrieval of a file. The file will be loaded and the callback function called when it is available. More... | |
void | MHEG5FileOrmSetCachePriority (MHEG5String name, U8BIT cachePriority) |
Set the cache priority of a specified file. More... | |
void | MHEG5FileOrmPreloadHint (MHEG5String name) |
Provide a preload hint to DSM-CC that the specified file may be required in the future. DSM-CC could (but is not required to) acquire the file into cache. More... | |
void | MHEG5ciSetModuleId (U32BIT module) |
void | MHEG5ciFileAcknowledge (BOOLEAN fileOK, U8BIT *pFileData, U32BIT length) |
Process the FileAcknowledge message sent from the CI module. More... | |
void | MHEG5httpRequestAck (U32BIT requestId, U32BIT status, S32BIT code, U8BIT requestType, U8BIT *data, U32BIT len) |
Acknowledge function called when a file request has been completed by the HTTP module. More... | |
File interface functions to DSMCC component.
#define FRP_APPLICATION 0x0100 |
#define FRP_CACHE_DEFAULT 0x007F |
#define FRP_CACHE_MASK 0x00FF |
#define FRP_CERT 0x2000 |
#define FRP_DEFER_SERV 0x4000 |
#define FRP_EXISTS 0x0400 |
#define FRP_GROUP 0x0300 |
#define FRP_HASH 0x1000 |
#define FRP_IN_APP 0x8000 |
#define FRP_SCENE 0x0200 |
#define FRP_SERVER 0x3000 |
#define FRP_VERIFY 0x0800 |
typedef void(* F_CB_Fail)(void *userData) |
typedef void(* F_CB_Good)(void *userData, S_CONTENT *content) |
Process the FileAcknowledge message sent from the CI module.
fileOK | FileOK field of the FileAcknowledge message |
pFileData | Pointer to file data in the FileAcknowledge message |
length | Number of bytes in the file data |
void MHEG5ciSetModuleId | ( | U32BIT | module | ) |
void MHEG5FileOrmClear | ( | void * | orm_ref | ) |
Aborts a request for file.
orm_ref | File Orm handle returned by MHEG5FileOrmGet() |
Aborts a request for file.
orm_ref | Handle given back by MHEG5FileOrmGet |
void* MHEG5FileOrmGet | ( | MHEG5String | name, |
U16BIT | priority, | ||
void * | userData, | ||
F_CB_Good | callback, | ||
F_CB_Fail | failCallback | ||
) |
Initiate retrieval of a file. The file will be loaded and the callback function called when it is available.
name | Name of file to retrieve. This will be expanded using the rules specified by the UK1 profile. |
priority | Least significant byte is cache priority, and top byte gives extra priority information |
callback | Pointer to callback function that will be called when the file is retreived. The callback function is passed a pointer to the file content data, the group id and id of the object, the file size in bytes and the object carousel. |
failCallback | Pointer to callback function that will be called when the file cannot be retrieved. The callback function is passed the group id and id of the object. |
name | Name of file to retrieve. This will be expanded using the rules specified by the UK1 profile. |
cachePriority | Cache priority with which to fetch the object. |
callback | Pointer to callback function that will be called when the file is retreived. The callback function is passed a pointer to the file content data, the group id and id of the object, the file size in bytes and the object carousel. |
failCallback | Pointer to callback function that will be called when the file cannot be retrieved. The callback function is passed the group id and id of the object. |
void MHEG5FileOrmInit | ( | void | ) |
Initialise the file ORM module.
BOOLEAN MHEG5FileOrmIsReset | ( | MHEG5FileOrmResetMode * | resetMode | ) |
Tell whether the ORM module is currently being reset. If it is, the function also returns the current reset mode. This information is required in order to decide whether to generate an EngineEvent when a file load fails. If a file cannot be loaded (doesn't exist, timeout) then an event is required, but if a file load "fails" because the ORM module is being reset, then no event should be generated. resetMode is an optional parameter, and it can also be NULL.
resetMode | Reset mode (if return value is TRUE) |
void MHEG5FileOrmPreloadHint | ( | MHEG5String | name | ) |
Provide a preload hint to DSM-CC that the specified file may be required in the future. DSM-CC could (but is not required to) acquire the file into cache.
name | Name of file to preload |
BOOLEAN MHEG5FileOrmProcess | ( | void | ) |
Check for any file requests that have arrived since this function was last called. For each arrived file the callback will be called. The function may have to be called more than once in case a file the arrived affects other files as well.
void MHEG5FileOrmReset | ( | MHEG5FileOrmResetMode | resetMode | ) |
Reset the ORM module. This function supports two modes:
resetMode | Reset mode |
void MHEG5FileOrmSetCachePriority | ( | MHEG5String | name, |
U8BIT | cachePriority | ||
) |
Set the cache priority of a specified file.
name | Name of file to set the priority of. This will be expanded using the rules specified by the UK1 profile. |
cachePriority | Cache priority with which to fetch the object. |
void MHEG5httpRequestAck | ( | U32BIT | requestId, |
U32BIT | status, | ||
S32BIT | code, | ||
U8BIT | requestType, | ||
U8BIT * | data, | ||
U32BIT | len | ||
) |
Acknowledge function called when a file request has been completed by the HTTP module.
requestId | Request ID |
status | HTTP response status |
code | HTTP response code |
requestType | Type of HTTP request |
data | HTTP reply data |
len | Length of HTTP reply data |