Skip to content

Commit 3bb7eb2

Browse files
authored
Add missing string functions (COVESA#309)
Signed-off-by: Martin Willers <[email protected]>
1 parent d40ecef commit 3bb7eb2

File tree

5 files changed

+333
-6
lines changed

5 files changed

+333
-6
lines changed

doc/dlt_for_developers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -665,9 +665,9 @@ std::string_view key = line.substr(0, 4);
665665
std::string_view value = line.substr(6);
666666
667667
if (dlt_user_log_write_start_id(&ctx, &ctxdata, DLT_LOG_INFO, 42) > 0) {
668-
dlt_user_log_write_constant_string(&myctxdata, "key");
668+
dlt_user_log_write_constant_utf8_string(&myctxdata, "key");
669669
dlt_user_log_write_sized_utf8_string(&myctxdata, key.data(), key.size());
670-
dlt_user_log_write_constant_string(&myctxdata, "value");
670+
dlt_user_log_write_constant_utf8_string(&myctxdata, "value");
671671
dlt_user_log_write_sized_utf8_string(&myctxdata, value.data(), value.size());
672672
dlt_user_log_write_finish(&myctxdata);
673673
}

include/dlt/dlt_user.h.in

+60-4
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ DltReturnValue dlt_user_log_write_sized_string(DltContextData *log, const char *
496496

497497
/**
498498
* Write a constant null terminated ASCII string into a DLT log message.
499-
* In non verbose mode DLT parameter will not be send at all.
499+
* In non verbose mode DLT parameter will not be sent at all.
500500
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
501501
* Finish sending log message by calling dlt_user_log_write_finish.
502502
* @param log pointer to an object containing information about logging context data
@@ -507,11 +507,11 @@ DltReturnValue dlt_user_log_write_constant_string(DltContextData *log, const cha
507507

508508
/**
509509
* Write a constant, potentially non-null-terminated ASCII string into a DLT log message.
510-
* In non verbose mode DLT parameter will not be send at all.
510+
* In non verbose mode DLT parameter will not be sent at all.
511511
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
512512
* Finish sending log message by calling dlt_user_log_write_finish.
513513
* @param log pointer to an object containing information about logging context data
514-
* @param text pointer to the parameter written into log message containing null termination.
514+
* @param text pointer to the parameter written into log message
515515
* @param length length in bytes of @a text (without any termination character)
516516
* @return Value from DltReturnValue enum
517517
*/
@@ -538,6 +538,29 @@ DltReturnValue dlt_user_log_write_utf8_string(DltContextData *log, const char *t
538538
*/
539539
DltReturnValue dlt_user_log_write_sized_utf8_string(DltContextData *log, const char *text, uint16_t length);
540540

541+
/**
542+
* Write a constant null terminated UTF8 string into a DLT log message.
543+
* In non verbose mode DLT parameter will not be sent at all.
544+
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
545+
* Finish sending log message by calling dlt_user_log_write_finish.
546+
* @param log pointer to an object containing information about logging context data
547+
* @param text pointer to the parameter written into log message containing null termination.
548+
* @return Value from DltReturnValue enum
549+
*/
550+
DltReturnValue dlt_user_log_write_constant_utf8_string(DltContextData *log, const char *text);
551+
552+
/**
553+
* Write a constant, potentially non-null-terminated UTF8 string into a DLT log message.
554+
* In non verbose mode DLT parameter will not be sent at all.
555+
* dlt_user_log_write_start has to be called before adding any attributes to the log message.
556+
* Finish sending log message by calling dlt_user_log_write_finish.
557+
* @param log pointer to an object containing information about logging context data
558+
* @param text pointer to the parameter written into log message
559+
* @param length length in bytes of @a text (without any termination character)
560+
* @return Value from DltReturnValue enum
561+
*/
562+
DltReturnValue dlt_user_log_write_sized_constant_utf8_string(DltContextData *log, const char *text, uint16_t length);
563+
541564
/**
542565
* Write a null-terminated ASCII string with "name" attribute into a DLT log message.
543566
* dlt_user_log_write_start has to be called before adding any parameters to the log message.
@@ -595,7 +618,7 @@ DltReturnValue dlt_user_log_write_constant_string_attr(DltContextData *log, cons
595618
* and no content to the message.
596619
*
597620
* @param log pointer to an object containing information about logging context data
598-
* @param text pointer to the parameter written into log message containing null termination
621+
* @param text pointer to the parameter written into log message
599622
* @param length length in bytes of @a text (without any termination character)
600623
* @param name the "name" attribute (or NULL)
601624
* @return value from DltReturnValue enum
@@ -633,6 +656,39 @@ DltReturnValue dlt_user_log_write_utf8_string_attr(DltContextData *log, const ch
633656
*/
634657
DltReturnValue dlt_user_log_write_sized_utf8_string_attr(DltContextData *log, const char *text, uint16_t length, const char *name);
635658

659+
/**
660+
* Write a constant, null-terminated UTF8 string with "name" attribute into a DLT log message.
661+
* In non-verbose mode, this parameter will not be sent at all.
662+
* dlt_user_log_write_start has to be called before adding any parameters to the log message.
663+
* Finish building a log message by calling dlt_user_log_write_finish.
664+
*
665+
* If @a name is NULL, this function will add an attribute field with length 0
666+
* and no content to the message.
667+
*
668+
* @param log pointer to an object containing information about logging context data
669+
* @param text pointer to the parameter written into log message containing null termination
670+
* @param name the "name" attribute (or NULL)
671+
* @return value from DltReturnValue enum
672+
*/
673+
DltReturnValue dlt_user_log_write_constant_utf8_string_attr(DltContextData *log, const char *text, const char *name);
674+
675+
/**
676+
* Write a constant, potentially non-null-terminated UTF8 string with "name" attribute into a DLT log message.
677+
* In non-verbose mode, this parameter will not be sent at all.
678+
* dlt_user_log_write_start has to be called before adding any parameters to the log message.
679+
* Finish building a log message by calling dlt_user_log_write_finish.
680+
*
681+
* If @a name is NULL, this function will add an attribute field with length 0
682+
* and no content to the message.
683+
*
684+
* @param log pointer to an object containing information about logging context data
685+
* @param text pointer to the parameter written into log message
686+
* @param length length in bytes of @a text (without any termination character)
687+
* @param name the "name" attribute (or NULL)
688+
* @return value from DltReturnValue enum
689+
*/
690+
DltReturnValue dlt_user_log_write_sized_constant_utf8_string_attr(DltContextData *log, const char *text, uint16_t length, const char *name);
691+
636692
/**
637693
* Write a binary memory block into a DLT log message.
638694
* dlt_user_log_write_start has to be called before adding any attributes to the log message.

include/dlt/dlt_user_macros.h

+38
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,24 @@
368368
#define DLT_SIZED_UTF8(TEXT, LEN) \
369369
(void)dlt_user_log_write_sized_utf8_string(&log_local, TEXT, LEN)
370370

371+
/**
372+
* Add constant utf8-encoded string parameter to the log messsage.
373+
* @param TEXT Constant UTF8-encoded string
374+
*/
375+
#define DLT_CUTF8(TEXT) \
376+
(void)dlt_user_log_write_constant_utf8_string(&log_local, TEXT)
377+
378+
/**
379+
* Add constant utf8-encoded string parameter with given length to the log messsage.
380+
* The string in @a TEXT does not need to be null-terminated, but
381+
* the copied string will be null-terminated at its destination
382+
* in the message buffer.
383+
* @param TEXT Constant UTF8-encoded string
384+
* @param LEN length in bytes to take from @a TEXT
385+
*/
386+
#define DLT_SIZED_CUTF8(TEXT, LEN) \
387+
(void)dlt_user_log_write_sized_constant_utf8_string(&log_local, TEXT, LEN)
388+
371389
/**
372390
* Add string parameter with "name" attribute to the log messsage.
373391
* @param TEXT ASCII string
@@ -428,6 +446,26 @@
428446
#define DLT_SIZED_UTF8_ATTR(TEXT, LEN, NAME) \
429447
(void)dlt_user_log_write_sized_utf8_string_attr(&log_local, TEXT, LEN, ATTR)
430448

449+
/**
450+
* Add constant utf8-encoded string parameter with "name" attribute to the log messsage.
451+
* @param TEXT Constant UTF8-encoded string
452+
* @param NAME "name" attribute
453+
*/
454+
#define DLT_CUTF8_ATTR(TEXT, NAME) \
455+
(void)dlt_user_log_write_constant_utf8_string_attr(&log_local, TEXT, NAME)
456+
457+
/**
458+
* Add constant utf8-encoded string parameter with given length and "name" attribute to the log messsage.
459+
* The string in @a TEXT does not need to be null-terminated, but
460+
* the copied string will be null-terminated at its destination
461+
* in the message buffer.
462+
* @param TEXT Constant UTF8-encoded string
463+
* @param LEN length in bytes to take from @a TEXT
464+
* @param NAME "name" attribute
465+
*/
466+
#define DLT_SIZED_CUTF8_ATTR(TEXT, LEN, NAME) \
467+
(void)dlt_user_log_write_sized_constant_utf8_string_attr(&log_local, TEXT, LEN, NAME)
468+
431469
/**
432470
* Add boolean parameter to the log messsage.
433471
* @param BOOL_VAR Boolean value (mapped to uint8)

src/lib/dlt_user.c

+24
Original file line numberDiff line numberDiff line change
@@ -2367,6 +2367,30 @@ DltReturnValue dlt_user_log_write_sized_utf8_string_attr(DltContextData *log, co
23672367
return dlt_user_log_write_sized_string_utils_attr(log, text, length, UTF8_STRING, name, true);
23682368
}
23692369

2370+
DltReturnValue dlt_user_log_write_constant_utf8_string(DltContextData *log, const char *text)
2371+
{
2372+
/* Send parameter only in verbose mode */
2373+
return is_verbose_mode(dlt_user.verbose_mode, log) ? dlt_user_log_write_utf8_string(log, text) : DLT_RETURN_OK;
2374+
}
2375+
2376+
DltReturnValue dlt_user_log_write_constant_utf8_string_attr(DltContextData *log, const char *text, const char *name)
2377+
{
2378+
/* Send parameter only in verbose mode */
2379+
return is_verbose_mode(dlt_user.verbose_mode, log) ? dlt_user_log_write_utf8_string_attr(log, text, name) : DLT_RETURN_OK;
2380+
}
2381+
2382+
DltReturnValue dlt_user_log_write_sized_constant_utf8_string(DltContextData *log, const char *text, uint16_t length)
2383+
{
2384+
/* Send parameter only in verbose mode */
2385+
return is_verbose_mode(dlt_user.verbose_mode, log) ? dlt_user_log_write_sized_utf8_string(log, text, length) : DLT_RETURN_OK;
2386+
}
2387+
2388+
DltReturnValue dlt_user_log_write_sized_constant_utf8_string_attr(DltContextData *log, const char *text, uint16_t length, const char *name)
2389+
{
2390+
/* Send parameter only in verbose mode */
2391+
return is_verbose_mode(dlt_user.verbose_mode, log) ? dlt_user_log_write_sized_utf8_string_attr(log, text, length, name) : DLT_RETURN_OK;
2392+
}
2393+
23702394
static DltReturnValue dlt_user_log_write_sized_string_utils_attr(DltContextData *log, const char *text, uint16_t length, const enum StringType type, const char *name, bool with_var_info)
23712395
{
23722396
if ((log == NULL) || (text == NULL))

0 commit comments

Comments
 (0)