]> git.tdb.fi Git - ext/subsurface.git/blob - save-xml.c
Sanitize and fix cylinder pressure overview
[ext/subsurface.git] / save-xml.c
1 #include <stdio.h>
2 #include <ctype.h>
3 #include <string.h>
4 #include <stdlib.h>
5 #include <errno.h>
6 #include <time.h>
7
8 #include "dive.h"
9
10 #define FRACTION(n,x) ((unsigned)(n)/(x)),((unsigned)(n)%(x))
11
12 static void show_milli(FILE *f, const char *pre, int value, const char *unit, const char *post)
13 {
14         int i;
15         char buf[4];
16         unsigned v;
17
18         fputs(pre, f);
19         v = value;
20         if (value < 0) {
21                 putc('-', f);
22                 v = -value;
23         }
24         for (i = 2; i >= 0; i--) {
25                 buf[i] = (v % 10) + '0';
26                 v /= 10;
27         }
28         buf[3] = 0;
29         if (buf[2] == '0') {
30                 buf[2] = 0;
31                 if (buf[1] == '0')
32                         buf[1] = 0;
33         }
34
35         fprintf(f, "%u.%s%s%s", v, buf, unit, post);
36 }
37
38 static void show_temperature(FILE *f, temperature_t temp, const char *pre, const char *post)
39 {
40         if (temp.mkelvin)
41                 show_milli(f, pre, temp.mkelvin - 273150, " C", post);
42 }
43
44 static void show_depth(FILE *f, depth_t depth, const char *pre, const char *post)
45 {
46         if (depth.mm)
47                 show_milli(f, pre, depth.mm, " m", post);
48 }
49
50 static void show_duration(FILE *f, duration_t duration, const char *pre, const char *post)
51 {
52         if (duration.seconds)
53                 fprintf(f, "%s%u:%02u min%s", pre, FRACTION(duration.seconds, 60), post);
54 }
55
56 static void show_pressure(FILE *f, pressure_t pressure, const char *pre, const char *post)
57 {
58         if (pressure.mbar)
59                 show_milli(f, pre, pressure.mbar, " bar", post);
60 }
61
62 /*
63  * We're outputting utf8 in xml.
64  * We need to quote the characters <, >, &.
65  *
66  * Technically I don't think we'd necessarily need to quote the control
67  * characters, but at least libxml2 doesn't like them. It doesn't even
68  * allow them quoted. So we just skip them and replace them with '?'.
69  *
70  * Nothing else (and if we ever do this using attributes, we'd need to
71  * quote the quotes we use too).
72  */
73 static void quote(FILE *f, const char *text)
74 {
75         const char *p = text;
76
77         for (;;) {
78                 const char *escape;
79
80                 switch (*p++) {
81                 default:
82                         continue;
83                 case 0:
84                         escape = NULL;
85                         break;
86                 case 1 ... 8:
87                 case 11: case 12:
88                 case 14 ... 31:
89                         escape = "?";
90                         break;
91                 case '<':
92                         escape = "&lt;";
93                         break;
94                 case '>':
95                         escape = "&gt;";
96                         break;
97                 case '&':
98                         escape = "&amp;";
99                         break;
100                 }
101                 fwrite(text, (p - text - 1), 1, f);
102                 if (!escape)
103                         break;
104                 fputs(escape, f);
105                 text = p;
106         }
107 }
108
109 static void show_utf8(FILE *f, const char *text, const char *pre, const char *post)
110 {
111         int len;
112
113         if (!text)
114                 return;
115         while (isspace(*text))
116                 text++;
117         len = strlen(text);
118         if (!len)
119                 return;
120         while (len && isspace(text[len-1]))
121                 len--;
122         /* FIXME! Quoting! */
123         fputs(pre, f);
124         quote(f, text);
125         fputs(post, f);
126 }
127
128 static void save_overview(FILE *f, struct dive *dive)
129 {
130         show_depth(f, dive->maxdepth, "  <maxdepth>", "</maxdepth>\n");
131         show_depth(f, dive->meandepth, "  <meandepth>", "</meandepth>\n");
132         show_temperature(f, dive->airtemp, "  <airtemp>", "</airtemp>\n");
133         show_temperature(f, dive->watertemp, "  <watertemp>", "</watertemp>\n");
134         show_duration(f, dive->duration, "  <duration>", "</duration>\n");
135         show_duration(f, dive->surfacetime, "  <surfacetime>", "</surfacetime>\n");
136         show_utf8(f, dive->location, "  <location>","</location>\n");
137         show_utf8(f, dive->notes, "  <notes>","</notes>\n");
138 }
139
140 static void save_cylinder_info(FILE *f, struct dive *dive)
141 {
142         int i;
143
144         for (i = 0; i < MAX_CYLINDERS; i++) {
145                 cylinder_t *cylinder = dive->cylinder+i;
146                 int volume = cylinder->type.size.mliter;
147                 const char *description = cylinder->type.description;
148                 int o2 = cylinder->gasmix.o2.permille;
149                 int he = cylinder->gasmix.he.permille;
150                 int start = cylinder->start.mbar;
151                 int end = cylinder->end.mbar;
152
153                 /* No cylinder information at all? */
154                 if (!o2 && !volume && !start && !end)
155                         return;
156                 fprintf(f, "  <cylinder");
157                 if (o2) {
158                         fprintf(f, " o2='%u.%u%%'", FRACTION(o2, 10));
159                         if (he)
160                                 fprintf(f, " he='%u.%u%%'", FRACTION(he, 10));
161                 }
162                 if (volume)
163                         show_milli(f, " size='", volume, " l", "'");
164                 if (description)
165                         fprintf(f, " description='%s'", description);
166                 show_pressure(f, cylinder->start, " start='", "'");
167                 show_pressure(f, cylinder->end, " end='", "'");
168                 fprintf(f, " />\n");
169         }
170 }
171
172 static void save_sample(FILE *f, struct sample *sample)
173 {
174         fprintf(f, "  <sample time='%u:%02u min'", FRACTION(sample->time.seconds,60));
175         show_milli(f, " depth='", sample->depth.mm, " m", "'");
176         show_temperature(f, sample->temperature, " temp='", "'");
177         show_pressure(f, sample->cylinderpressure, " pressure='", "'");
178         if (sample->cylinderindex)
179                 fprintf(f, " cylinderindex='%d'", sample->cylinderindex);
180         fprintf(f, " />\n");
181 }
182
183 static void save_dive(FILE *f, struct dive *dive)
184 {
185         int i;
186         struct tm *tm = gmtime(&dive->when);
187
188         fprintf(f, "<dive date='%04u-%02u-%02u' time='%02u:%02u:%02u'>\n",
189                 tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
190                 tm->tm_hour, tm->tm_min, tm->tm_sec);
191         save_overview(f, dive);
192         save_cylinder_info(f, dive);
193         for (i = 0; i < dive->samples; i++)
194                 save_sample(f, dive->sample+i);
195         fprintf(f, "</dive>\n");
196 }
197
198 #define VERSION 1
199
200 void save_dives(const char *filename)
201 {
202         int i;
203         FILE *f = fopen(filename, "w");
204
205         if (!f)
206                 return;
207
208         /* Flush any edits of current dives back to the dives! */
209         flush_dive_info_changes();
210
211         fprintf(f, "<dives>\n<program name='diveclog' version='%d'></program>\n", VERSION);
212         for (i = 0; i < dive_table.nr; i++)
213                 save_dive(f, get_dive(i));
214         fprintf(f, "</dives>\n");
215         fclose(f);
216 }