From dca8ab254aa0a687c32009079d85e4d8f960b213 Mon Sep 17 00:00:00 2001 From: Christoph Lipka Date: Thu, 20 Dec 2018 14:58:19 +0100 Subject: Code beautification using uncrustify Signed-off-by: Christoph Lipka --- src/examples/dlt-example-user-common-api.c | 112 +++++++++++------------------ 1 file changed, 43 insertions(+), 69 deletions(-) (limited to 'src/examples/dlt-example-user-common-api.c') diff --git a/src/examples/dlt-example-user-common-api.c b/src/examples/dlt-example-user-common-api.c index 171ca89..880ea97 100644 --- a/src/examples/dlt-example-user-common-api.c +++ b/src/examples/dlt-example-user-common-api.c @@ -72,7 +72,7 @@ void usage() { char version[255]; - dlt_get_version(version,255); + dlt_get_version(version, 255); printf("Usage: dlt-example-common-api [options] message\n"); printf("Generate DLT messages and store them to file or send them to daemon.\n"); @@ -94,7 +94,7 @@ void usage() /** * Main function of tool. */ -int main(int argc, char* argv[]) +int main(int argc, char *argv[]) { #ifdef DLT_TEST_ENABLE int cflag = 0; @@ -110,20 +110,21 @@ int main(int argc, char* argv[]) int c; char *text; - int num,maxnum; + int num, maxnum; int delay; - int state=-1,newstate; + int state = -1, newstate; opterr = 0; #ifdef DLT_TEST_ENABLE + while ((c = getopt (argc, argv, "vgcd:n:z:s:")) != -1) #else + while ((c = getopt (argc, argv, "vgd:n:")) != -1) #endif /* DLT_TEST_ENABLE */ { - switch (c) - { + switch (c) { #ifdef DLT_TEST_ENABLE case 'c': { @@ -158,18 +159,12 @@ int main(int argc, char* argv[]) } case '?': { - if (optopt == 'd' || optopt == 'f' || optopt == 'n') - { + if ((optopt == 'd') || (optopt == 'f') || (optopt == 'n')) fprintf (stderr, "Option -%c requires an argument.\n", optopt); - } else if (isprint (optopt)) - { fprintf (stderr, "Unknown option `-%c'.\n", optopt); - } else - { - fprintf (stderr, "Unknown option character `\\x%x'.\n",optopt); - } + fprintf (stderr, "Unknown option character `\\x%x'.\n", optopt); /* unknown or wrong option used, show usage information and terminate */ usage(); @@ -178,114 +173,93 @@ int main(int argc, char* argv[]) default: { abort (); - break;//for parasoft + break;/*for parasoft */ } } } for (index = optind; index < argc; index++) - { message = argv[index]; - } - if (message == 0) - { + if (message == 0) { /* no message, show usage and terminate */ - fprintf(stderr,"ERROR: No message selected\n"); + fprintf(stderr, "ERROR: No message selected\n"); usage(); return -1; } - DLT_REGISTER_APP("LOG","Test Application for Logging"); - DLT_REGISTER_CONTEXT_APP(mycontext,"TEST","LOG","Test Context for Logging"); + DLT_REGISTER_APP("LOG", "Test Application for Logging"); + DLT_REGISTER_CONTEXT_APP(mycontext, "TEST", "LOG", "Test Context for Logging"); text = message; if (nvalue) - { maxnum = atoi(nvalue); - } else - { maxnum = 10; - } if (dvalue) - { delay = atoi(dvalue) * 1000; - } else - { delay = 500 * 1000; - } - if (gflag) - { + if (gflag) { /* DLT messages to test Fibex non-verbose description: dlt-example-non-verbose.xml */ - DLT_LOG_ID0(mycontext,DLT_LOG_INFO,10); - DLT_LOG_ID1(mycontext,DLT_LOG_INFO,11,DLT_UINT16(1011)); - DLT_LOG_ID2(mycontext,DLT_LOG_INFO,12,DLT_UINT32(1012),DLT_UINT32(1013)); - DLT_LOG_ID2(mycontext,DLT_LOG_INFO,13,DLT_UINT8(123),DLT_FLOAT32(1.12)); - DLT_LOG_ID1(mycontext,DLT_LOG_INFO,14,DLT_STRING("DEAD BEEF")); + DLT_LOG_ID0(mycontext, DLT_LOG_INFO, 10); + DLT_LOG_ID1(mycontext, DLT_LOG_INFO, 11, DLT_UINT16(1011)); + DLT_LOG_ID2(mycontext, DLT_LOG_INFO, 12, DLT_UINT32(1012), DLT_UINT32(1013)); + DLT_LOG_ID2(mycontext, DLT_LOG_INFO, 13, DLT_UINT8(123), DLT_FLOAT32(1.12)); + DLT_LOG_ID1(mycontext, DLT_LOG_INFO, 14, DLT_STRING("DEAD BEEF")); } #ifdef DLT_TEST_ENABLE + if (cflag) - { dlt_user_test_corrupt_user_header(1); - } + if (svalue) - { - dlt_user_test_corrupt_message_size(1,atoi(svalue)); - } - if (zvalue) - { - char* buffer = malloc(atoi(zvalue)); - if(buffer==0) - { + dlt_user_test_corrupt_message_size(1, atoi(svalue)); + + if (zvalue) { + char *buffer = malloc(atoi(zvalue)); + + if (buffer == 0) { /* no message, show usage and terminate */ - fprintf(stderr,"Cannot allocate buffer memory!\n"); + fprintf(stderr, "Cannot allocate buffer memory!\n"); return -1; } - DLT_LOG2(mycontext,DLT_LOG_WARN,DLT_STRING(text),DLT_RAW(buffer,atoi(zvalue))); + + DLT_LOG2(mycontext, DLT_LOG_WARN, DLT_STRING(text), DLT_RAW(buffer, atoi(zvalue))); free(buffer); } + #endif /* DLT_TEST_ENABLE */ - for (num=0;num0) - { + if (delay > 0) usleep(delay); - } } sleep(1); -- cgit v1.2.1