From c66d60efa1efcb5dfbeff3bd345580c977c50f10 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 4 Sep 2011 14:56:21 -0700 Subject: [PATCH] Use common helper for printing milli-units I don't necessarily want to show three decimal digits when one or two would do. So prepare for that by using a helper. This doesn't actually change the printout yet. Signed-off-by: Linus Torvalds --- save-xml.c | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/save-xml.c b/save-xml.c index 64d6547..7609b1d 100644 --- a/save-xml.c +++ b/save-xml.c @@ -9,23 +9,26 @@ #define FRACTION(n,x) ((unsigned)(n)/(x)),((unsigned)(n)%(x)) -static void show_temperature(FILE *f, temperature_t temp, const char *pre, const char *post) +static void show_milli(FILE *f, const char *pre, int value, const char *unit, const char *post) { - if (temp.mkelvin) { - int mcelsius = temp.mkelvin - 273150; - const char *sign =""; - if (mcelsius < 0) { - sign = "-"; - mcelsius = - mcelsius; - } - fprintf(f, "%s%s%u.%03u C%s", pre, sign, FRACTION(mcelsius, 1000), post); + fputs(pre, f); + if (value < 0) { + putc('-', f); + value = -value; } + fprintf(f, "%u.%03u%s%s", FRACTION(value, 1000), unit, post); +} + +static void show_temperature(FILE *f, temperature_t temp, const char *pre, const char *post) +{ + if (temp.mkelvin) + show_milli(f, pre, temp.mkelvin - 273150, " C", post); } static void show_depth(FILE *f, depth_t depth, const char *pre, const char *post) { if (depth.mm) - fprintf(f, "%s%u.%03u m%s", pre, FRACTION(depth.mm, 1000), post); + show_milli(f, pre, depth.mm, " m", post); } static void show_duration(FILE *f, duration_t duration, const char *pre, const char *post) @@ -37,7 +40,7 @@ static void show_duration(FILE *f, duration_t duration, const char *pre, const c static void show_pressure(FILE *f, pressure_t pressure, const char *pre, const char *post) { if (pressure.mbar) - fprintf(f, "%s%u.%03u bar%s", pre, FRACTION(pressure.mbar, 1000), post); + show_milli(f, pre, pressure.mbar, " bar", post); } /* @@ -141,7 +144,7 @@ static void save_cylinder_info(FILE *f, struct dive *dive) fprintf(f, " he='%u.%u%%'", FRACTION(he, 10)); } if (volume) - fprintf(f, " size='%u.%03u l'", FRACTION(volume, 1000)); + show_milli(f, " size='", volume, " l", "'"); if (description) fprintf(f, " description='%s'", description); fprintf(f, " />\n"); @@ -150,9 +153,8 @@ static void save_cylinder_info(FILE *f, struct dive *dive) static void save_sample(FILE *f, struct sample *sample) { - fprintf(f, " time.seconds,60), - FRACTION(sample->depth.mm, 1000)); + fprintf(f, " time.seconds,60)); + show_milli(f, " depth='", sample->depth.mm, " m", "'"); show_temperature(f, sample->temperature, " temp='", "'"); show_pressure(f, sample->cylinderpressure, " pressure='", "'"); if (sample->cylinderindex) -- 2.43.0