This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| sdk:log-to-syslog [2016/09/30 13:47] – [The Script] juraschek | sdk:log-to-syslog [2016/10/05 15:36] (current) – [The Script] nicer line break without value break juraschek | ||
|---|---|---|---|
| Line 62: | Line 62: | ||
| | | ||
| <code c status-to-syslog.are> | <code c status-to-syslog.are> | ||
| - | /* DESC: A Script that can be used for a longtime logging of a NetModule Wireless Router. | + | |
| - | * The upper part of the script is the logger template. The lower part is the real programm, where you describe the settings and workflow. | + | |
| - | * Copyright (C) 2016 NetModule AG, Switzerland | + | |
| - | */ | + | |
| - | + | | |
| - | + | | |
| - | template logger | + | template logger |
| - | { | + | { |
| - | + | | |
| - | # give the constructor the array of fields to log | + | # give the constructor the array of fields to log |
| - | void logger(array logfields) { | + | void logger(array logfields) { |
| - | this.fields = logfields; | + | this.fields = logfields; |
| - | } | + | |
| - | + | ||
| - | int logNow(){ | + | |
| - | //get current status output | + | |
| - | sections = mkarray(" | + | |
| - | status = mkstruct(); | + | |
| - | for(i = 0; i < length(sections); | + | |
| - | status=struct_merge(status, | + | |
| } | } | ||
| + | |||
| + | int logNow(){ | ||
| + | MAX_LINE_LEN=180; | ||
| + | //get current status output | ||
| + | sections = mkarray(" | ||
| + | status = mkstruct(); | ||
| + | for(i = 0; i < length(sections); | ||
| + | status=struct_merge(status, | ||
| + | } | ||
| + | |||
| + | line = ""; | ||
| + | | ||
| + | for(i = 0; i < length(this.fields); | ||
| + | if(strlen(this.fields[i]) > 0 ) { | ||
| + | value = struct_get(status, | ||
| + | if(strlen(value) == 0) { | ||
| + | value = sprintf(" | ||
| + | } | ||
| + | |||
| + | if(strlen(this.fields[i+1]) > 0 ) { | ||
| + | nextvalue = struct_get(status, | ||
| + | if(strlen(nextvalue) == 0) { | ||
| + | nextvalue = sprintf(" | ||
| + | } | ||
| + | } | ||
| - | | + | //line = sprintf('%s%s;', line,value); |
| - | for(i = 0; i < length(this.fields); i++) { | + | |
| - | | + | if (strlen(line)+strlen(sprintf(" |
| - | value = struct_get(status, this.fields[i]); | + | nb_syslog(line); |
| - | if(strlen(value) == 0) { | + | line=""; |
| - | value = sprintf(" | + | } |
| + | | ||
| } | } | ||
| - | //line = sprintf(' | ||
| - | line = sprintf(" | ||
| } | } | ||
| + | if (strlen(line) > 0) nb_syslog(line); | ||
| + | |||
| + | return 0; | ||
| } | } | ||
| - | MAX_LINE_LEN=180; | + | |
| - | | + | |
| - | | + | } // of template logger |
| - | | + | |
| - | } | + | if (argc < 3){ |
| + | printf(" | ||
| + | | ||
| + | } | ||
| + | |||
| + | if (argv[1] == " | ||
| + | mode = 0; | ||
| + | else | ||
| + | mode = (int) argv[1]; | ||
| + | |||
| + | elements = mkarray(); | ||
| + | for (i = 2; i <= argc; i++) { | ||
| + | | ||
| + | } | ||
| + | l = new logger(elements); | ||
| + | |||
| + | do { | ||
| + | | ||
| + | sleep(mode); | ||
| + | | ||
| + | exit(0); | ||
| - | return 0; | ||
| - | } | ||
| - | |||
| - | |||
| - | } // of template logger | ||
| - | |||
| - | if (argc < 3){ | ||
| - | printf(" | ||
| - | exit(1); | ||
| - | } | ||
| - | |||
| - | if (argv[1] == " | ||
| - | mode = 0; | ||
| - | else | ||
| - | mode = (int) argv[1]; | ||
| - | |||
| - | elements = mkarray(); | ||
| - | for (i = 2; i <= argc; i++) { | ||
| - | elements = array_merge(elements, | ||
| - | } | ||
| - | l = new logger(elements); | ||
| - | do { | ||
| - | l.logNow(); | ||
| - | sleep(mode); | ||
| - | } while(mode); | ||
| - | exit(0); | ||
| </ | </ | ||