summaryrefslogtreecommitdiffstats
path: root/save-xml.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-04 14:56:21 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-04 15:14:14 -0700
commitc66d60efa1efcb5dfbeff3bd345580c977c50f10 (patch)
tree567e0a14f0197b2512c2356325fb0610f430a81c /save-xml.c
parent85921592b052e2be867f049306abd28e69c978ae (diff)
downloadsubsurface-c66d60efa1efcb5dfbeff3bd345580c977c50f10.tar.gz
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 <torvalds@linux-foundation.org>
Diffstat (limited to 'save-xml.c')
-rw-r--r--save-xml.c32
1 files changed, 17 insertions, 15 deletions
diff --git a/save-xml.c b/save-xml.c
index 64d654711..7609b1db8 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, " <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)