summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/cm/engine/api/component_engine.h
blob: a1e9defda7e4c452dfbeaadfbdf09438804386d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/*
 * Copyright (C) ST-Ericsson SA 2010
 * Author: Jean-Philippe FASSINO <jean-philippe.fassino@stericsson.com> for ST-Ericsson.
 * License terms: GNU General Public License (GPL) version 2.
 */
/*!
 * \brief Components Component Manager User Engine API.
 *
 * This file contains the Component Manager Engine API for manipulating components.
 *
 */

#ifndef COMPONENT_ENGINE_H_
#define COMPONENT_ENGINE_H_

#include <cm/engine/memory/inc/domain_type.h>
#include <cm/engine/component/inc/component_type.h>
#include <cm/engine/communication/inc/communication_type.h>
#include <inc/nmf-limits.h>

/*!
 * \brief Instantiate a new component.
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_InstantiateComponent(
    const char templateName[MAX_TEMPLATE_NAME_LENGTH],          //!< [in] Null terminated string (Max size=\ref MAX_TEMPLATE_NAME_LENGTH)
    t_cm_domain_id domainId,                                    //!< [in] Domain
    t_nmf_client_id clientId,                                   //!< [in] Client ID (aka PID)
    t_nmf_ee_priority priority,                                 //!< [in] Component priority
    const char localName[MAX_COMPONENT_NAME_LENGTH],            //!< [in] Null terminated string (Max size=\ref MAX_COMPONENT_NAME_LENGTH)
    const char *dataFile,                                       //!< [in] Optional reference on file where component is stored
    t_cm_instance_handle *component                             //!< [out] component
    );

/*!
 * \brief Start a component.
 *
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_StartComponent(
    t_cm_instance_handle component,
    t_nmf_client_id clientId);

/*!
 * \brief Stop a component.
 *
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_StopComponent(
    t_cm_instance_handle component,
    t_nmf_client_id clientId);

/*!
 * \brief Destroy a component.
 *
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_DestroyComponent(
    t_cm_instance_handle component,
    t_nmf_client_id clientId);

/*!
 * \brief Stop and destroy all components belonging to the given client.
 *
 * \param[in] client
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_FlushComponents(
        t_nmf_client_id client);

/*!
 * \brief Bind two components together.
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_BindComponent(
    const t_cm_instance_handle      client,                                             //!<
    const char                      requiredItfClientName[MAX_INTERFACE_NAME_LENGTH],   //!< Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
    const t_cm_instance_handle      server,                                             //!<
    const char                      providedItfServerName[MAX_INTERFACE_NAME_LENGTH],   //!< Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
    t_bool                          traced,                                             //!< FALSE for synchronous binding, TRUE for traced one
    t_nmf_client_id                 clientId,                                           //!< Client ID
    const char                      *dataFileTrace                                      //!< Component file data in case on traced (Note: could be null if file already in cache)
    );

/*!
 * \brief Unbind a component.
 *
 * \param[in] client
 * \param[in] requiredItfClientName Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_UnbindComponent(
    const t_cm_instance_handle      client,
    const char                      * requiredItfClientName,
    t_nmf_client_id                 clientId);

/*!
 * \brief Bind a component to void (silently ignore a call).
 *
 * \param[in] client
 * \param[in] requiredItfClientName Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_BindComponentToVoid(
    const t_cm_instance_handle      client,
    const char                      requiredItfClientName[MAX_INTERFACE_NAME_LENGTH],
    t_nmf_client_id                 clientId);

/*!
 * \brief Bind two components together in an asynchronous way
 * (the components can be on the same MPC or on two different MPC)
 *
 * \param[in] client
 * \param[in] requiredItfClientName Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 * \param[in] server
 * \param[in] providedItfServerName Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 * \param[in] fifosize
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_BindComponentAsynchronous(
    const t_cm_instance_handle      client,
    const char                      * requiredItfClientName,
    const t_cm_instance_handle      server,
    const char                      * providedItfServerName,
    t_uint32                        fifosize,
    t_cm_mpc_memory_type            eventMemType,
    t_nmf_client_id                 clientId,
    const char                      *dataFileSkeletonOrEvent,
    const char                      *dataFileStub);

/*!
 * \brief Unbind a component previously binded asynchronously
 *
 * \param[in] client
 * \param[in] requiredItfClientName Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_UnbindComponentAsynchronous(
    const t_cm_instance_handle      client,
    const char                      * requiredItfClientName,
    t_nmf_client_id                 clientId);

/*!
 * \brief Bind the Host to a component.
 *
 * \param[in] server
 * \param[in] providedItfServerName Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 * \param[in] fifosize
 * \param[out] host2mpcId
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_BindComponentFromCMCore(
    const t_cm_instance_handle      server,
    const char                      * providedItfServerName,
    t_uint32                        fifosize,
    t_cm_mpc_memory_type            eventMemType,
    t_cm_bf_host2mpc_handle         *host2mpcId,
    t_nmf_client_id                 clientId,
    const char                      *dataFileSkeleton);

/*!
 * \brief Unbind a component from the Host.
 *
 * \param[in] host2mpcId
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_UnbindComponentFromCMCore(
        t_cm_bf_host2mpc_handle         host2mpcId);

/*!
 * \brief Bind a component to the Host, see \ref CM_ENGINE_BindComponentToCMCore.
 *
 * See \ref MPC2HOST "MPC->Host binding" for seeing an integration example.
 *
 * \note This method is not called from CM Proxy, its only there for wrapping purpose!!!
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_BindComponentToCMCore(
        const t_cm_instance_handle  client,
        const char                  *requiredItfClientName,
        t_uint32                    fifosize,
        t_nmf_mpc2host_handle       upLayerThis,
        const char                  *dataFileStub,
        t_cm_bf_mpc2host_handle     *mpc2hostId,
        t_nmf_client_id             clientId);

/*!
 * \brief Unbind a component to the Host, see \ref CM_ENGINE_UnbindComponentToCMCore.
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_UnbindComponentToCMCore(
        const t_cm_instance_handle      client,
        const char                      *requiredItfClientName,
        t_nmf_mpc2host_handle           *upLayerThis,
        t_nmf_client_id                 clientId);

/*!
 * \brief Read a value on an attribute exported by a component instance.
 *
 * \param[in] component
 * \param[in] attrName  Null terminated string (Max size=\ref MAX_ATTRIBUTE_NAME_LENGTH).
 * \param[out] value
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_ReadComponentAttribute(
    const t_cm_instance_handle component,
    const char* attrName,
    t_uint24 *value);

/*!
 * \brief Write a value on an attribute exported by a component instance.
 *
 * \param[in] component
 * \param[in] attrName  Null terminated string (Max size=\ref MAX_ATTRIBUTE_NAME_LENGTH).
 * \param[out] value
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_WriteComponentAttribute(
    const t_cm_instance_handle component,
    const char* attrName,
    t_uint24 value);


/*!
 * \brief Get the older component.
 *
 * \param[in] client
 * \param[out] headerComponent
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentListHeader(
        const t_nmf_client_id       client,
	t_cm_instance_handle        *headerComponent);

/*!
 * \brief Get the next component.
 *
 * \param[in] client
 * \param[in] prevComponent
 * \param[out] nextComponent
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentListNext(
        const t_nmf_client_id       client,
	const t_cm_instance_handle  prevComponent,
	t_cm_instance_handle        *nextComponent);

/*!
 * \brief Get a component description
 *
 * \param[in] component
 * \param[in] templateNameLength
 * \param[in] localNameLength
 * \param[out] templateName         Null terminated string (Size=templateNameLength, Max size=\ref MAX_TEMPLATE_NAME_LENGTH).
 * \param[out] coreId
 * \param[out] localName            Null terminated string (Size=localNameLength, Max size=\ref MAX_COMPONENT_NAME_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentDescription(
        const t_cm_instance_handle  component,
        char                        *templateName,
        t_uint32                    templateNameLength,
        t_nmf_core_id               *coreId,
        char                        *localName,
        t_uint32                    localNameLength,
	t_nmf_ee_priority           *priority);

/*!
 * \brief Get number of interface required by a component.
 *
 * \param[in] component
 * \param[out] numberRequiredInterfaces
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentRequiredInterfaceNumber(
    const t_cm_instance_handle  component,
    t_uint8                     *numberRequiredInterfaces);

/*!
 * \brief Return information about required interface.
 *
 * \param[in] component
 * \param[in] index
 * \param[in] itfNameLength
 * \param[in] itfTypeLength
 * \param[out] itfName          Null terminated string (Size=itfNameLength, Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 * \param[out] itfType          Null terminated string (Size=itfTypeLength, Max size=\ref MAX_INTERFACE_TYPE_NAME_LENGTH).
 * \param[out] collectionSize
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentRequiredInterface(
        const t_cm_instance_handle  component,
        const t_uint8               index,
        char                        *itfName,
        t_uint32                    itfNameLength,
        char                        *itfType,
        t_uint32                    itfTypeLength,
        t_cm_require_state          *requireState,
        t_sint16                    *collectionSize);

/*!
 * \brief Get the component binded to a required interface.
 *
 * \param[in] component
 * \param[in] itfName               Null terminated string (Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 * \param[in] serverItfNameLength
 * \param[out] server
 * \param[out] serverItfName        Null terminated string (Size=serverItfNameLength, Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentRequiredInterfaceBinding(
        const t_cm_instance_handle  component,
        const char                  *itfName,
        t_cm_instance_handle        *server,
        char                        *serverItfName,
        t_uint32                    serverItfNameLength);

/*!
 * \brief Get number of interface provided by a component.
 *
 * \param[in] component
 * \param[out] numberProvidedInterfaces
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentProvidedInterfaceNumber(
    const t_cm_instance_handle  component,
    t_uint8                     *numberProvidedInterfaces);

/*!
 * \brief Return information about provided interface.
 *
 * \param[in] component
 * \param[in] index
 * \param[in] itfNameLength
 * \param[in] itfTypeLength
 * \param[out] itfName          Null terminated string (Size=itfNameLength, Max size=\ref MAX_INTERFACE_NAME_LENGTH).
 * \param[out] itfType          Null terminated string (Size=itfTypeLength, Max size=\ref MAX_INTERFACE_TYPE_NAME_LENGTH).
 * \param[out] collectionSize
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentProvidedInterface(
        const t_cm_instance_handle  component,
        const t_uint8               index,
        char                        *itfName,
        t_uint32                    itfNameLength,
        char                        *itfType,
        t_uint32                    itfTypeLength,
        t_sint16                    *collectionSize);

/*!
 * \brief Get number of properties of a component.
 *
 * \param[in] component
 * \param[out] numberProperties
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentPropertyNumber(
    const t_cm_instance_handle  component,
    t_uint8                     *numberProperties);

/*!
 * \brief Return the name of a property.
 *
 * \param[in] component
 * \param[in] index
 * \param[in] propertyNameLength
 * \param[out] propertyName         Null terminated string (Size=propertyNameLength, Max size=\ref MAX_PROPERTY_NAME_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentPropertyName(
        const t_cm_instance_handle  component,
        const t_uint8               index,
        char                        *propertyName,
        t_uint32                    propertyNameLength);

/*!
 * \brief Get property value of a component.
 *
 * \param[in] component
 * \param[in] propertyName
 * \param[in] propertyValueLength
 * \param[out] propertyValue         Null terminated string (Size=propertyValueLength, Max size=\ref MAX_PROPERTY_VALUE_LENGTH).
 *
 * \ingroup CM_ENGINE_API
 */
PUBLIC IMPORT_SHARED t_cm_error CM_ENGINE_GetComponentPropertyValue(
        const t_cm_instance_handle  component,
        const char                  *propertyName,
        char                        *propertyValue,
        t_uint32                    propertyValueLength);

#endif /*COMPONENT_ENGINE_H_*/