X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fdynamic-string.c;h=914af64c16493a879869b91d8ebe9f29c014b0da;hb=cfc50ae514f805dcd9c14589f21158185424daf6;hp=ba9aa6dd609d140c1314480cab65be64c9dd75e3;hpb=3e78870d0bfc3be3255a7ca71588692c6615f0c7;p=sliver-openvswitch.git diff --git a/lib/dynamic-string.c b/lib/dynamic-string.c index ba9aa6dd6..914af64c1 100644 --- a/lib/dynamic-string.c +++ b/lib/dynamic-string.c @@ -16,6 +16,7 @@ #include #include "dynamic-string.h" +#include #include #include #include @@ -183,21 +184,24 @@ ds_put_printable(struct ds *ds, const char *s, size_t n) } } -/* Writes time 'when' to 'string' based on 'template', in local time or UTC - * based on 'utc'. */ +/* Writes the current time with optional millisecond resolution to 'string' + * based on 'template'. + * The current time is either localtime or UTC based on 'utc'. */ void -ds_put_strftime(struct ds *ds, const char *template, time_t when, bool utc) +ds_put_strftime_msec(struct ds *ds, const char *template, long long int when, + bool utc) { - struct tm tm; + struct tm_msec tm; if (utc) { - gmtime_r(&when, &tm); + gmtime_msec(when, &tm); } else { - localtime_r(&when, &tm); + localtime_msec(when, &tm); } for (;;) { size_t avail = ds->string ? ds->allocated - ds->length + 1 : 0; - size_t used = strftime(&ds->string[ds->length], avail, template, &tm); + size_t used = strftime_msec(&ds->string[ds->length], avail, template, + &tm); if (used) { ds->length += used; return; @@ -209,12 +213,12 @@ ds_put_strftime(struct ds *ds, const char *template, time_t when, bool utc) /* Returns a malloc()'d string for time 'when' based on 'template', in local * time or UTC based on 'utc'. */ char * -xastrftime(const char *template, time_t when, bool utc) +xastrftime_msec(const char *template, long long int when, bool utc) { struct ds s; ds_init(&s); - ds_put_strftime(&s, template, when, utc); + ds_put_strftime_msec(&s, template, when, utc); return s.string; } @@ -238,14 +242,21 @@ ds_get_line(struct ds *ds, FILE *file) * Deletes comments introduced by "#" and skips lines that contains only white * space (after deleting comments). * + * If 'line_numberp' is nonnull, increments '*line_numberp' by the number of + * lines read from 'file'. + * * Returns 0 if successful, EOF if no non-blank line was found. */ int -ds_get_preprocessed_line(struct ds *ds, FILE *file) +ds_get_preprocessed_line(struct ds *ds, FILE *file, int *line_numberp) { while (!ds_get_line(ds, file)) { char *line = ds_cstr(ds); char *comment; + if (line_numberp) { + ++*line_numberp; + } + /* Delete comments. */ comment = strchr(line, '#'); if (comment) { @@ -358,48 +369,51 @@ void ds_put_hex_dump(struct ds *ds, const void *buf_, size_t size, uintptr_t ofs, bool ascii) { - const uint8_t *buf = buf_; - const size_t per_line = 16; /* Maximum bytes per line. */ - - while (size > 0) - { - size_t start, end, n; - size_t i; - - /* Number of bytes on this line. */ - start = ofs % per_line; - end = per_line; - if (end - start > size) - end = start + size; - n = end - start; - - /* Print line. */ - ds_put_format(ds, "%08jx ", (uintmax_t) ROUND_DOWN(ofs, per_line)); - for (i = 0; i < start; i++) - ds_put_format(ds, " "); - for (; i < end; i++) - ds_put_format(ds, "%02hhx%c", - buf[i - start], i == per_line / 2 - 1? '-' : ' '); - if (ascii) - { - for (; i < per_line; i++) + const uint8_t *buf = buf_; + const size_t per_line = 16; /* Maximum bytes per line. */ + + while (size > 0) { + size_t start, end, n; + size_t i; + + /* Number of bytes on this line. */ + start = ofs % per_line; + end = per_line; + if (end - start > size) + end = start + size; + n = end - start; + + /* Print line. */ + ds_put_format(ds, "%08"PRIxMAX" ", + (uintmax_t) ROUND_DOWN(ofs, per_line)); + for (i = 0; i < start; i++) { ds_put_format(ds, " "); - ds_put_format(ds, "|"); - for (i = 0; i < start; i++) - ds_put_format(ds, " "); - for (; i < end; i++) { - int c = buf[i - start]; - ds_put_char(ds, c >= 32 && c < 127 ? c : '.'); - } - for (; i < per_line; i++) - ds_put_format(ds, " "); - ds_put_format(ds, "|"); } - ds_put_format(ds, "\n"); + for (; i < end; i++) { + ds_put_format(ds, "%02x%c", + buf[i - start], i == per_line / 2 - 1? '-' : ' '); + } + if (ascii) { + for (; i < per_line; i++) + ds_put_format(ds, " "); + ds_put_format(ds, "|"); + for (i = 0; i < start; i++) + ds_put_format(ds, " "); + for (; i < end; i++) { + int c = buf[i - start]; + ds_put_char(ds, c >= 32 && c < 127 ? c : '.'); + } + for (; i < per_line; i++) + ds_put_format(ds, " "); + ds_put_format(ds, "|"); + } else { + ds_chomp(ds, ' '); + } + ds_put_format(ds, "\n"); - ofs += n; - buf += n; - size -= n; + ofs += n; + buf += n; + size -= n; } }