Reduce usage of SEM_LOCK in application library and reset pointers.
[profile/ivi/dlt-daemon.git] / include / dlt / dlt_user_macros.h
1 /**
2  * @licence app begin@
3  * Copyright (C) 2012  BMW AG
4  *
5  * This file is part of GENIVI Project Dlt - Diagnostic Log and Trace console apps.
6  *
7  * Contributions are licensed to the GENIVI Alliance under one or more
8  * Contribution License Agreements.
9  *
10  * \copyright
11  * This Source Code Form is subject to the terms of the
12  * Mozilla Public License, v. 2.0. If a  copy of the MPL was not distributed with
13  * this file, You can obtain one at http://mozilla.org/MPL/2.0/.
14  *
15  *
16  * \author Alexander Wenzel <alexander.aw.wenzel@bmw.de> BMW 2011-2012
17  *
18  * \file dlt_user_macros.h
19  * For further information see http://www.genivi.org/.
20  * @licence end@
21  */
22
23 /*******************************************************************************
24  **                                                                            **
25  **  SRC-MODULE: dlt_user_macros.h                                             **
26  **                                                                            **
27  **  TARGET    : linux                                                         **
28  **                                                                            **
29  **  PROJECT   : DLT                                                           **
30  **                                                                            **
31  **  AUTHOR    : Alexander Wenzel Alexander.AW.Wenzel@bmw.de                   **
32  **              Markus Klein                                                  **
33  **                                                                            **
34  **  PURPOSE   :                                                               **
35  **                                                                            **
36  **  REMARKS   :                                                               **
37  **                                                                            **
38  **  PLATFORM DEPENDANT [yes/no]: yes                                          **
39  **                                                                            **
40  **  TO BE CHANGED BY USER [yes/no]: no                                        **
41  **                                                                            **
42  *******************************************************************************/
43
44 /*******************************************************************************
45  **                      Author Identity                                       **
46  ********************************************************************************
47  **                                                                            **
48  ** Initials     Name                       Company                            **
49  ** --------     -------------------------  ---------------------------------- **
50  **  aw          Alexander Wenzel           BMW                                **
51  **  mk          Markus Klein               Fraunhofer ESK                     **
52  *******************************************************************************/
53
54 /*******************************************************************************
55  **                      Revision Control History                              **
56  *******************************************************************************/
57
58 /*
59  * $LastChangedRevision: 1515 $
60  * $LastChangedDate: 2010-12-13 09:18:54 +0100 (Mon, 13 Dec 2010) $
61  * $LastChangedBy$
62  Initials    Date         Comment
63  aw          13.01.2010   initial
64  */
65
66 #ifndef DLT_USER_MACROS_H
67 #define DLT_USER_MACORS_H
68
69 #include "dlt_version.h"
70
71 /**
72  \defgroup userapi DLT User API
73  \addtogroup userapi
74  \{
75  */
76
77 /**************************************************************************************************
78  * The folowing macros define a macro interface for DLT
79  **************************************************************************************************/
80
81 /**
82  * Create an object for a new context.
83  * This macro has to be called first for every.
84  * @param CONTEXT object containing information about one special logging context
85  */
86 #define DLT_DECLARE_CONTEXT(CONTEXT) \
87 DltContext CONTEXT;
88
89 /**
90  * Use an object of a new context created in another module.
91  * This macro has to be called first for every.
92  * @param CONTEXT object containing information about one special logging context
93  */
94 #define DLT_IMPORT_CONTEXT(CONTEXT) \
95 extern DltContext CONTEXT;
96
97 /**
98  * Register application.
99  * @param APPID application id with maximal four characters
100  * @param DESCRIPTION ASCII string containing description
101  */
102 #define DLT_REGISTER_APP(APPID,DESCRIPTION) do {\
103                 dlt_check_library_version(_DLT_PACKAGE_MAJOR_VERSION, _DLT_PACKAGE_MINOR_VERSION ); \
104                 dlt_register_app( APPID, DESCRIPTION);} while(0)
105
106
107 /**
108  * Unregister application.
109  */
110 #define DLT_UNREGISTER_APP() do{\
111         dlt_unregister_app();} while(0)
112
113 /**
114  * Register context (with default log level and default trace status)
115  * @param CONTEXT object containing information about one special logging context
116  * @param CONTEXTID context id with maximal four characters
117  * @param DESCRIPTION ASCII string containing description
118  */
119 #define DLT_REGISTER_CONTEXT(CONTEXT,CONTEXTID,DESCRIPTION) do{\
120         dlt_register_context(&(CONTEXT), CONTEXTID, DESCRIPTION);} while(0)
121
122 /**
123  * Register context with pre-defined log level and pre-defined trace status.
124  * @param CONTEXT object containing information about one special logging context
125  * @param CONTEXTID context id with maximal four characters
126  * @param DESCRIPTION ASCII string containing description
127  * @param LOGLEVEL log level to be pre-set for this context
128  (DLT_LOG_DEFAULT is not allowed here)
129  * @param TRACESTATUS trace status to be pre-set for this context
130  (DLT_TRACE_STATUS_DEFAULT is not allowed here)
131  */
132 #define DLT_REGISTER_CONTEXT_LL_TS(CONTEXT,CONTEXTID,DESCRIPTION,LOGLEVEL,TRACESTATUS) do{\
133         dlt_register_context_ll_ts(&(CONTEXT), CONTEXTID, DESCRIPTION, LOGLEVEL, TRACESTATUS);} while(0)
134
135 /**
136  * Unregister context.
137  * @param CONTEXT object containing information about one special logging context
138  */
139 #define DLT_UNREGISTER_CONTEXT(CONTEXT) do{\
140         dlt_unregister_context(&(CONTEXT));} while(0)
141
142 /**
143  * Register callback function called when injection message was received
144  * @param CONTEXT object containing information about one special logging context
145  * @param SERVICEID service id of the injection message
146  * @param CALLBACK function pointer to callback function
147  */
148 #define DLT_REGISTER_INJECTION_CALLBACK(CONTEXT, SERVICEID, CALLBACK) do{\
149         dlt_register_injection_callback(&(CONTEXT),SERVICEID, CALLBACK);} while(0)
150
151 /**
152  * Send log message with variable list of messages (intended for verbose mode)
153  * @param CONTEXT object containing information about one special logging context
154  * @param LOGLEVEL the log level of the log message
155  * @param ARGS variable list of arguments
156  */
157 #ifdef _MSC_VER
158 /* DLT_LOG is not supported by MS Visual C++ */
159 /* use function interface instead            */
160 #else
161 #define DLT_LOG(CONTEXT,LOGLEVEL,ARGS...) \
162         do { \
163                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
164                 { \
165                         DltContextData log; \
166                         if (dlt_user_log_write_start(&CONTEXT,&log,LOGLEVEL)>0) \
167                         { \
168                                 ARGS; \
169                                 dlt_user_log_write_finish(&log); \
170                         } \
171                 } \
172         } while(0)
173 #endif
174
175 /**
176  * Send log message with variable list of messages (intended for non-verbose mode)
177  * @param CONTEXT object containing information about one special logging context
178  * @param LOGLEVEL the log level of the log message
179  * @param MSGID the message id of log message
180  * @param ARGS variable list of arguments: 
181  calls to DLT_STRING(), DLT_BOOL(), DLT_FLOAT32(), DLT_FLOAT64(),
182  DLT_INT(), DLT_UINT(), DLT_RAW()
183  */
184 #ifdef _MSC_VER
185 /* DLT_LOG_ID is not supported by MS Visual C++ */
186 /* use function interface instead               */
187 #else
188 #define DLT_LOG_ID(CONTEXT,LOGLEVEL,MSGID,ARGS...) \
189         do { \
190                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
191                 { \
192                         DltContextData log; \
193                         if (dlt_user_log_write_start_id(&CONTEXT,&log,LOGLEVEL,MSGID)>0) \
194                         { \
195                                 ARGS; \
196                                 dlt_user_log_write_finish(&log); \
197                         } \
198                 } \
199         } while(0)
200 #endif
201
202 /**
203  * Add string parameter to the log messsage.
204  * @param TEXT ASCII string
205  */
206 #define DLT_STRING(TEXT) \
207         dlt_user_log_write_string(&log,TEXT)
208
209 /**
210  * Add utf8-encoded string parameter to the log messsage.
211  * @param TEXT UTF8-encoded string
212  */
213 #define DLT_UTF8(TEXT) \
214         dlt_user_log_write_utf8_string(&log,TEXT)
215
216 /**
217  * Add boolean parameter to the log messsage.
218  * @param BOOL_VAR Boolean value (mapped to uint8)
219  */
220 #define DLT_BOOL(BOOL_VAR) \
221         dlt_user_log_write_bool(&log,BOOL_VAR)
222
223 /**
224  * Add float32 parameter to the log messsage.
225  * @param FLOAT32_VAR Float32 value (mapped to float)
226  */
227 #define DLT_FLOAT32(FLOAT32_VAR) \
228         dlt_user_log_write_float32(&log,FLOAT32_VAR)
229
230 /**
231  * Add float64 parameter to the log messsage.
232  * @param FLOAT64_VAR Float64 value (mapped to double)
233  */
234 #define DLT_FLOAT64(FLOAT64_VAR) \
235         dlt_user_log_write_float64(&log,FLOAT64_VAR)
236
237 /**
238  * Add integer parameter to the log messsage.
239  * @param INT_VAR integer value
240  */
241 #define DLT_INT(INT_VAR) \
242         dlt_user_log_write_int(&log,INT_VAR)
243
244 #define DLT_INT8(INT_VAR) \
245         dlt_user_log_write_int8(&log,INT_VAR)
246
247 #define DLT_INT16(INT_VAR) \
248         dlt_user_log_write_int16(&log,INT_VAR)
249
250 #define DLT_INT32(INT_VAR) \
251         dlt_user_log_write_int32(&log,INT_VAR)
252
253 #define DLT_INT64(INT_VAR) \
254         dlt_user_log_write_int64(&log,INT_VAR)
255
256 /**
257  * Add unsigned integer parameter to the log messsage.
258  * @param UINT_VAR unsigned integer value
259  */
260 #define DLT_UINT(UINT_VAR) \
261         dlt_user_log_write_uint(&log,UINT_VAR)
262
263 #define DLT_UINT8(UINT_VAR) \
264         dlt_user_log_write_uint8(&log,UINT_VAR)
265
266 #define DLT_UINT16(UINT_VAR) \
267         dlt_user_log_write_uint16(&log,UINT_VAR)
268
269 #define DLT_UINT32(UINT_VAR) \
270         dlt_user_log_write_uint32(&log,UINT_VAR)
271
272 #define DLT_UINT64(UINT_VAR) \
273         dlt_user_log_write_uint64(&log,UINT_VAR)
274
275 /**
276  * Add binary memory block to the log messages.
277  * @param BUF pointer to memory block
278  * @param LEN length of memory block
279  */
280 #define DLT_RAW(BUF,LEN) \
281         dlt_user_log_write_raw(&log,BUF,LEN)
282
283 /**
284  * Trace network message
285  * @param CONTEXT object containing information about one special logging context
286  * @param TYPE type of network trace message
287  * @param HEADERLEN length of network message header
288  * @param HEADER pointer to network message header
289  * @param PAYLOADLEN length of network message payload
290  * @param PAYLOAD pointer to network message payload
291  */
292 #define DLT_TRACE_NETWORK(CONTEXT,TYPE,HEADERLEN,HEADER,PAYLOADLEN,PAYLOAD) \
293     do { \
294         if ((CONTEXT).trace_status_ptr && *((CONTEXT).trace_status_ptr)==DLT_TRACE_STATUS_ON) \
295         { \
296                 dlt_user_trace_network(&(CONTEXT),TYPE,HEADERLEN,HEADER,PAYLOADLEN,PAYLOAD); \
297                 } \
298     }while(0)
299
300 /**
301  * Trace network message, allow truncation
302  * @param CONTEXT object containing information about one special logging context
303  * @param TYPE type of network trace message
304  * @param HEADERLEN length of network message header
305  * @param HEADER pointer to network message header
306  * @param PAYLOADLEN length of network message payload
307  * @param PAYLOAD pointer to network message payload
308  */
309 #define DLT_TRACE_NETWORK_TRUNCATED(CONTEXT,TYPE,HEADERLEN,HEADER,PAYLOADLEN,PAYLOAD) \
310     do { \
311         if ((CONTEXT).trace_status_ptr && *((CONTEXT).trace_status_ptr)==DLT_TRACE_STATUS_ON) \
312         { \
313                 dlt_user_trace_network_truncated(&(CONTEXT),TYPE,HEADERLEN,HEADER,PAYLOADLEN,PAYLOAD, 1); \
314                 } \
315     }while(0)
316
317 /**
318  * Trace network message, segment large messages
319  * @param CONTEXT object containing information about one special logging context
320  * @param TYPE type of network trace message
321  * @param HEADERLEN length of network message header
322  * @param HEADER pointer to network message header
323  * @param PAYLOADLEN length of network message payload
324  * @param PAYLOAD pointer to network message payload
325  */
326 #define DLT_TRACE_NETWORK_SEGMENTED(CONTEXT,TYPE,HEADERLEN,HEADER,PAYLOADLEN,PAYLOAD) \
327     do { \
328         if ((CONTEXT).trace_status_ptr && *((CONTEXT).trace_status_ptr)==DLT_TRACE_STATUS_ON) \
329         { \
330                 dlt_user_trace_network_segmented(&(CONTEXT),TYPE,HEADERLEN,HEADER,PAYLOADLEN,PAYLOAD); \
331         } \
332     }while(0)
333
334 /**
335  * Send log message with string parameter.
336  * @param CONTEXT object containing information about one special logging context
337  * @param LOGLEVEL the log level of the log message
338  * @param TEXT ASCII string
339  */
340 #define DLT_LOG_STRING(CONTEXT,LOGLEVEL,TEXT) \
341     do { \
342                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
343                 { \
344                         dlt_log_string(&(CONTEXT), LOGLEVEL, TEXT); \
345                 } \
346     } while(0)
347
348 /**
349  * Send log message with string parameter and integer parameter.
350  * @param CONTEXT object containing information about one special logging context
351  * @param LOGLEVEL the log level of the log messages
352  * @param TEXT ASCII string
353  * @param INT_VAR integer value
354  */
355 #define DLT_LOG_STRING_INT(CONTEXT,LOGLEVEL,TEXT,INT_VAR) \
356         do { \
357                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
358                 { \
359                         dlt_log_string_int(&(CONTEXT), LOGLEVEL, TEXT, INT_VAR); \
360                 } \
361         } while(0)
362
363 /**
364  * Send log message with string parameter and unsigned integer parameter.
365  * @param CONTEXT object containing information about one special logging context
366  * @param LOGLEVEL the log level of the log message
367  * @param TEXT ASCII string
368  * @param UINT_VAR unsigned integer value
369  */
370 #define DLT_LOG_STRING_UINT(CONTEXT,LOGLEVEL,TEXT,UINT_VAR) \
371         do { \
372                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
373                 { \
374                         dlt_log_string_uint(&(CONTEXT),LOGLEVEL,TEXT,UINT_VAR); \
375                 } \
376         } while(0)
377
378 /**
379  * Send log message with unsigned integer parameter.
380  * @param CONTEXT object containing information about one special logging context
381  * @param LOGLEVEL the log level of the log message
382  * @param UINT_VAR unsigned integer value
383  */
384 #define DLT_LOG_UINT(CONTEXT,LOGLEVEL,UINT_VAR) \
385         do { \
386                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
387                 { \
388                         dlt_log_uint(&(CONTEXT),LOGLEVEL,UINT_VAR); \
389                 } \
390         } while(0)
391
392 /**
393  * Send log message with integer parameter.
394  * @param CONTEXT object containing information about one special logging context
395  * @param LOGLEVEL the log level of the log message
396  * @param INT_VAR integer value
397  */
398 #define DLT_LOG_INT(CONTEXT,LOGLEVEL,INT_VAR) \
399         do { \
400                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
401                 { \
402                         dlt_log_int(&(CONTEXT),LOGLEVEL,INT_VAR); \
403                 } \
404         } while(0)
405
406 /**
407  * Send log message with binary memory block.
408  * @param CONTEXT object containing information about one special logging context
409  * @param LOGLEVEL the log level of the log message
410  * @param BUF pointer to memory block
411  * @param LEN length of memory block
412  */
413 #define DLT_LOG_RAW(CONTEXT,LOGLEVEL,BUF,LEN) \
414         do { \
415                 if((CONTEXT).log_level_ptr && ((LOGLEVEL)<=(int)*((CONTEXT).log_level_ptr) ) && ((LOGLEVEL)!=0)) \
416                 { \
417                         dlt_log_raw(&(CONTEXT),LOGLEVEL,BUF,LEN); \
418                 } \
419         } while(0)
420
421 /**
422  * Switch to verbose mode
423  *
424  */
425 #define DLT_VERBOSE_MODE() do { \
426         dlt_verbose_mode();} while(0)
427
428 /**
429  * Switch to non-verbose mode
430  *
431  */
432 #define DLT_NONVERBOSE_MODE() do {\
433         dlt_nonverbose_mode();} while(0)
434
435 /**
436  * Set maximum logged log level and trace status of application
437  *
438  * @param LOGLEVEL This is the log level to be set for the whole application
439  * @param TRACESTATUS This is the trace status to be set for the whole application
440  */
441 #define DLT_SET_APPLICATION_LL_TS_LIMIT(LOGLEVEL, TRACESTATUS) do {\
442     dlt_set_application_ll_ts_limit(LOGLEVEL, TRACESTATUS);} while(0)
443
444 /**
445  * Enable local printing of messages
446  *
447  */
448 #define DLT_ENABLE_LOCAL_PRINT() do {\
449         dlt_enable_local_print();} while(0)
450
451 /**
452  * Disable local printing of messages
453  *
454  */
455 #define DLT_DISABLE_LOCAL_PRINT() do {\
456         dlt_disable_local_print();} while(0)
457
458 /**
459  \}
460  */
461
462 #endif /* DLT_USER_MACROS_H */