]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Use common helper for printing milli-units
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 4 Sep 2011 21:56:21 +0000 (14:56 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 4 Sep 2011 22:14:14 +0000 (15:14 -0700)
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 <torvalds@linux-foundation.org>
save-xml.c

index 64d65471132d3340756e1ff274c9ed807fe848c1..7609b1db87b2baf2870eea776c717a09f0fe7256 100644 (file)
@@ -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, "  <sample time='%u:%02u min' depth='%u.%03u m'",
-               FRACTION(sample->time.seconds,60),
-               FRACTION(sample->depth.mm, 1000));
+       fprintf(f, "  <sample time='%u:%02u min'", FRACTION(sample->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)