X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fdynamic-string.c;h=3cccb5c7f37dc46c922ec2976ec625582fc5ec0d;hb=f80022d9df98d29ee41176a4bc6cb91025da84b8;hp=bd1cf453569d6a41dc5072dd08515685c66a690c;hpb=d1673b006d53fdea72c0744e835362ed1917f879;p=sliver-openvswitch.git diff --git a/lib/dynamic-string.c b/lib/dynamic-string.c index bd1cf4535..3cccb5c7f 100644 --- a/lib/dynamic-string.c +++ b/lib/dynamic-string.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -183,22 +183,21 @@ ds_put_printable(struct ds *ds, const char *s, size_t n) } } -/* Writes the current time to 'string' based on 'template'. - * The current time is either localtime or UTC based on 'utc'. */ +/* Writes time 'when' to 'string' based on 'template', in local time or UTC + * based on 'utc'. */ void -ds_put_strftime(struct ds *ds, const char *template, bool utc) +ds_put_strftime(struct ds *ds, const char *template, time_t when, bool utc) { - const struct tm *tm; - time_t now = time_wall(); + struct tm tm; if (utc) { - tm = gmtime(&now); + gmtime_r(&when, &tm); } else { - tm = localtime(&now); + localtime_r(&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(&ds->string[ds->length], avail, template, &tm); if (used) { ds->length += used; return; @@ -207,6 +206,18 @@ ds_put_strftime(struct ds *ds, const char *template, 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) +{ + struct ds s; + + ds_init(&s); + ds_put_strftime(&s, template, when, utc); + return s.string; +} + int ds_get_line(struct ds *ds, FILE *file) { @@ -347,48 +358,50 @@ 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, "%08jx ", (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, "%02hhx%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; } }