[PATCH 12/12] Include debug printout for easier manual testing

Miika Turkia miika.turkia at gmail.com
Wed Jul 22 08:06:37 PDT 2015


When Subsurface is run with high enough verbosity level, generate
command line to test Seabear import manually with xsltproc.

Signed-off-by: Miika Turkia <miika.turkia at gmail.com>
---
 file.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/file.c b/file.c
index 27c1a24..f7f9833 100644
--- a/file.c
+++ b/file.c
@@ -1052,6 +1052,19 @@ int parse_seabear_csv_file(const char *filename, int timef, int depthf, int temp
 	if (try_to_xslt_open_csv(filename, &mem, csvtemplate))
 		return -1;
 
+	/*
+	 * Lets print command line for manual testing with xsltproc if
+	 * verbosity level is high enough. The printed line needs the
+	 * input file added as last parameter.
+	 */
+
+	if (verbose >= 2) {
+		fprintf(stderr, "xsltproc ");
+		for (i=0; params[i]; i+=2)
+			fprintf(stderr, "--stringparam %s %s ", params[i], params[i+1]);
+		fprintf(stderr, "xslt/csv2xml.xslt\n");
+	}
+
 	ret = parse_xml_buffer(filename, mem.buffer, mem.size, &dive_table, (const char **)params);
 	free(mem.buffer);
 	for (i = 0; params[i]; i += 2)
-- 
2.1.4



More information about the subsurface mailing list