DSMCC Version 1.0
DTVKit DSMCC Documentation
All Data Structures Files Functions Typedefs
dsm_client.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright � 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright � 2013 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
24 #ifndef _DSM_CLIENT_H
25 #define _DSM_CLIENT_H
26 
27 
28 #include "fs_types.h"
29 #include "dsm_types.h"
30 
31 
32 /*---Constant and macro definitions for public use-----------------------------*/
33 
34 /*
35  * Defines for 'loadflags' parameter in DSMCC_ClientLoadObject function
36  */
37 #define LOAD_FLAGS_DEFAULT 0x0000007F
38 
39 /* LOAD_FLAGS_CACHE_PRIORITY_MASK is mask bits that specify cache priority
40  * With these bits set to zero, the object is loaded from the stream.
41  */
42 #define LOAD_FLAGS_CACHE_PRIORITY_MASK 0x000000FF
43 #define LOAD_FLAGS_REQUEST_FROM_STREAM 0x00000000
44 
45 /* When LOAD_FLAGS_REQUEST_EXISTANCE_BIT is set, content data is NOT provided
46  * and only E_FsStatus value is relevant on the return
47  */
48 #define LOAD_FLAGS_REQUEST_EXISTANCE_BIT 0x00000400
49 
50 /* For stream object type, and LOAD_FLAGS_REQUEST_DEFERRED_SERVICE_BIT set,
51  * the content data is S_DvbLocator of the deferred service for that stream
52  * Note: ignored if LOAD_FLAGS_REQUEST_EVENT_LIST_BIT is set and stream has events
53  */
54 #define LOAD_FLAGS_REQUEST_DEFERRED_SERVICE_BIT 0x00004000
55 
56 /* For stream object type (with events), and LOAD_FLAGS_REQUEST_EVENT_LIST_BIT set,
57  * the content data is a comma separated list of events on that stream
58  */
59 #define LOAD_FLAGS_REQUEST_EVENT_LIST_BIT 0x00008000
60 
61 /* For a directory object type, and LOAD_FLAGS_REQUEST_DIR_FILE_LIST_BIT set,
62  * the content data is given as a comma separated list of entries in the directory
63  * Note: ignored if LOAD_FLAGS_REQUEST_SERVICE_CONTEXT_BIT is set!
64  */
65 #define LOAD_FLAGS_REQUEST_DIR_FILE_LIST_BIT 0x00040000
66 
67 /* For a directory object type, and LOAD_FLAGS_REQUEST_SERVICE_CONTEXT_BIT set,
68  * the content data points to service context data for service ID
69  * Service ID value must be given in content 'user_data' field.
70  */
71 #define LOAD_FLAGS_REQUEST_SERVICE_CONTEXT_BIT 0x00080000
72 
73 /*---Enumerations for public use-----------------------------------------------*/
74 
75 /*---Global type defs for public use-------------------------------------------*/
76 
77 typedef F_FS_CALLBACK F_DSM_CBLOAD;
78 
89 typedef void (*F_DSM_EVENT)( void* userData, U8BIT* name,
90  U32BIT dataLen, U8BIT* dataPtr );
91 
92 
93 /*---Global Function prototypes for public use---------------------------------*/
94 
95 
131 E_FsStatus DSMCC_ClientLoadObject( H_DsmControl dsmctrl,
132  U8BIT *path, U32BIT flags,
133  F_DSM_CBLOAD cb_func, S_CONTENT *pContent );
134 
142 void DSMCC_ClientPreloadHint( H_DsmControl dsmctrl, U8BIT *path );
143 
165 E_FsStatus DSMCC_ClientEventSubscribeName( H_DsmControl dsmctrl,
166  FS_HANDLE streamObject, U8BIT *eventName,
167  F_DSM_EVENT cb_func, void *userData,
168  H_DsmEvent *pEventHandle );
169 
187 E_FsStatus DSMCC_ClientEventSubscribeId( H_DsmControl dsmctrl,
188  U16BIT associationTag, U16BIT eventId,
189  F_DSM_EVENT cb_func, void* userData,
190  H_DsmEvent *pEventHandle );
191 
198 void DSMCC_ClientEventUnsubscribe(H_DsmControl dsmctrl, H_DsmEvent event);
199 
210 BOOLEAN DSMCC_ClientLoadFileGroups( H_DsmControl dsmctrl, H_ObjCarousel hOC,
211  U16BIT* total, S_CarouselInfoFileGroup **pGroups );
212 
221 void DSMCC_ClientUnloadFileGroups( H_DsmControl dsmctrl, H_ObjCarousel hOC,
222  S_CarouselInfoFileGroup *groups );
223 
224 
225 
226 
227 #endif /* _VGR_DSMCLIENT_H */
228 
BOOLEAN DSMCC_ClientLoadFileGroups(H_DsmControl dsmctrl, H_ObjCarousel hOC, U16BIT *total, S_CarouselInfoFileGroup **pGroups)
Client request to retrieve MHEG5 File system acceleration file groups The client must release the arr...
Definition: dsm_client.c:698
Definition: fs_types.h:46
File System types.
void(* F_DSM_EVENT)(void *userData, U8BIT *name, U32BIT dataLen, U8BIT *dataPtr)
Callback function to notify that a DSM-CC stream event has triggered The event name is given...
Definition: dsm_client.h:89
E_FsStatus DSMCC_ClientEventSubscribeId(H_DsmControl dsmctrl, U16BIT associationTag, U16BIT eventId, F_DSM_EVENT cb_func, void *userData, H_DsmEvent *pEventHandle)
Client request to subscribe to DSMCC Stream Event, specified by event ID and association tag of strea...
Definition: dsm_client.c:643
DSM-CC types used for client control.
void DSMCC_ClientUnloadFileGroups(H_DsmControl dsmctrl, H_ObjCarousel hOC, S_CarouselInfoFileGroup *groups)
Client request to release file group data returned from DSMCC_ClientLoadFileGroups.
Definition: dsm_client.c:731
void(* F_FS_CALLBACK)(E_FsStatus result, S_CONTENT *pContent)
Callback function to notify client of result for a file system load request. This is intented for asy...
Definition: fs_types.h:61
void DSMCC_ClientPreloadHint(H_DsmControl dsmctrl, U8BIT *path)
Provide a hint that the specified file may be required in the future. If possible this should be load...
Definition: dsm_client.c:557
void DSMCC_ClientEventUnsubscribe(H_DsmControl dsmctrl, H_DsmEvent event)
Client request to UN-subscribe to DSMCC Stream Event.
Definition: dsm_client.c:679
E_FsStatus DSMCC_ClientLoadObject(H_DsmControl dsmctrl, U8BIT *path, U32BIT flags, F_DSM_CBLOAD cb_func, S_CONTENT *pContent)
Perform a file load request which is executed synchronously or asynchronously. See load flags above f...
Definition: dsm_client.c:459
E_FsStatus DSMCC_ClientEventSubscribeName(H_DsmControl dsmctrl, FS_HANDLE streamObject, U8BIT *eventName, F_DSM_EVENT cb_func, void *userData, H_DsmEvent *pEventHandle)
Client request to subscribe to DSMCC Stream Event, specified by name. DSMCC notifies when the named s...
Definition: dsm_client.c:595
Definition: dsm_client.c:39