2012-01-26 21:00:45 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdlib.h>
|
2012-01-27 01:43:33 +00:00
|
|
|
#include <string.h>
|
2012-01-26 21:00:45 +00:00
|
|
|
#include <errno.h>
|
2013-10-06 15:55:58 +00:00
|
|
|
#include "gettext.h"
|
2013-05-11 19:33:46 +00:00
|
|
|
#include <zip.h>
|
2013-10-19 05:17:13 +00:00
|
|
|
#include <time.h>
|
2012-01-26 21:00:45 +00:00
|
|
|
|
|
|
|
#include "dive.h"
|
2012-01-27 20:43:40 +00:00
|
|
|
#include "file.h"
|
2012-01-26 21:00:45 +00:00
|
|
|
|
2012-08-24 22:39:00 +00:00
|
|
|
/* Crazy windows sh*t */
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2013-03-14 03:37:38 +00:00
|
|
|
int readfile(const char *filename, struct memblock *mem)
|
2012-01-26 21:00:45 +00:00
|
|
|
{
|
2012-07-12 22:28:47 +00:00
|
|
|
int ret, fd;
|
2012-01-26 21:00:45 +00:00
|
|
|
struct stat st;
|
2012-01-27 18:56:36 +00:00
|
|
|
char *buf;
|
2012-01-26 21:00:45 +00:00
|
|
|
|
|
|
|
mem->buffer = NULL;
|
|
|
|
mem->size = 0;
|
|
|
|
|
2013-10-05 07:29:09 +00:00
|
|
|
fd = open(filename, O_RDONLY | O_BINARY, 0);
|
2012-01-26 21:00:45 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
ret = fstat(fd, &st);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
|
|
|
ret = -EINVAL;
|
|
|
|
if (!S_ISREG(st.st_mode))
|
|
|
|
goto out;
|
|
|
|
ret = 0;
|
|
|
|
if (!st.st_size)
|
|
|
|
goto out;
|
2012-01-27 18:56:36 +00:00
|
|
|
buf = malloc(st.st_size+1);
|
2012-01-26 21:00:45 +00:00
|
|
|
ret = -1;
|
|
|
|
errno = ENOMEM;
|
2012-01-27 18:56:36 +00:00
|
|
|
if (!buf)
|
2012-01-26 21:00:45 +00:00
|
|
|
goto out;
|
2012-01-27 18:56:36 +00:00
|
|
|
mem->buffer = buf;
|
2012-01-26 21:00:45 +00:00
|
|
|
mem->size = st.st_size;
|
2012-01-27 18:56:36 +00:00
|
|
|
ret = read(fd, buf, mem->size);
|
2012-01-26 21:00:45 +00:00
|
|
|
if (ret < 0)
|
|
|
|
goto free;
|
2012-01-27 18:56:36 +00:00
|
|
|
buf[ret] = 0;
|
2012-01-26 21:00:45 +00:00
|
|
|
if (ret == mem->size)
|
|
|
|
goto out;
|
|
|
|
errno = EIO;
|
|
|
|
ret = -1;
|
|
|
|
free:
|
|
|
|
free(mem->buffer);
|
|
|
|
mem->buffer = NULL;
|
|
|
|
mem->size = 0;
|
|
|
|
out:
|
|
|
|
close(fd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-01-27 01:43:33 +00:00
|
|
|
|
2013-05-22 06:13:45 +00:00
|
|
|
static void zip_read(struct zip_file *file, char **error, const char *filename)
|
2012-01-27 01:43:33 +00:00
|
|
|
{
|
|
|
|
int size = 1024, n, read = 0;
|
|
|
|
char *mem = malloc(size);
|
|
|
|
|
|
|
|
while ((n = zip_fread(file, mem+read, size-read)) > 0) {
|
|
|
|
read += n;
|
|
|
|
size = read * 3 / 2;
|
|
|
|
mem = realloc(mem, size);
|
|
|
|
}
|
2013-03-17 05:12:23 +00:00
|
|
|
mem[read] = 0;
|
2013-10-16 19:05:19 +00:00
|
|
|
parse_xml_buffer(filename, mem, read, &dive_table, NULL, error);
|
2012-01-27 01:43:33 +00:00
|
|
|
free(mem);
|
|
|
|
}
|
|
|
|
|
2013-05-22 06:13:45 +00:00
|
|
|
static int try_to_open_zip(const char *filename, struct memblock *mem, char **error)
|
2012-01-27 01:43:33 +00:00
|
|
|
{
|
|
|
|
int success = 0;
|
2012-01-27 18:56:36 +00:00
|
|
|
/* Grr. libzip needs to re-open the file, it can't take a buffer */
|
2012-01-27 01:43:33 +00:00
|
|
|
struct zip *zip = zip_open(filename, ZIP_CHECKCONS, NULL);
|
|
|
|
|
|
|
|
if (zip) {
|
|
|
|
int index;
|
|
|
|
for (index = 0; ;index++) {
|
|
|
|
struct zip_file *file = zip_fopen_index(zip, index, 0);
|
|
|
|
if (!file)
|
|
|
|
break;
|
2013-02-21 03:19:06 +00:00
|
|
|
zip_read(file, error, filename);
|
2012-01-27 01:43:33 +00:00
|
|
|
zip_fclose(file);
|
|
|
|
success++;
|
|
|
|
}
|
|
|
|
zip_close(zip);
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2013-09-29 12:44:38 +00:00
|
|
|
static int try_to_xslt_open_csv(const char *filename, struct memblock *mem, char **error)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
if (readfile(filename, mem) < 0) {
|
|
|
|
if (error) {
|
2013-10-10 05:48:35 +00:00
|
|
|
int len = strlen(translate("gettextFromC","Failed to read '%s'")) + strlen(filename);
|
2013-09-29 12:44:38 +00:00
|
|
|
*error = malloc(len);
|
2013-10-10 05:48:35 +00:00
|
|
|
snprintf(*error, len, translate("gettextFromC","Failed to read '%s'"), filename);
|
2013-09-29 12:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Surround the CSV file content with XML tags to enable XSLT
|
|
|
|
* parsing
|
|
|
|
*/
|
|
|
|
buf = realloc(mem->buffer, mem->size + strlen("<csv></csv>"));
|
|
|
|
if (buf != NULL) {
|
|
|
|
memmove(buf + 5, mem->buffer, mem->size);
|
|
|
|
memcpy(buf, "<csv>", 5);
|
|
|
|
memcpy(mem->buffer + mem->size + 5, "</csv>", 7);
|
|
|
|
mem->buffer = buf;
|
|
|
|
mem->size += strlen("<csv></csv>");
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-22 06:13:45 +00:00
|
|
|
static int try_to_open_db(const char *filename, struct memblock *mem, char **error)
|
2013-03-05 05:10:39 +00:00
|
|
|
{
|
|
|
|
return parse_dm4_buffer(filename, mem->buffer, mem->size, &dive_table, error);
|
|
|
|
}
|
|
|
|
|
2012-09-20 00:35:52 +00:00
|
|
|
static timestamp_t parse_date(const char *date)
|
2012-06-20 03:07:42 +00:00
|
|
|
{
|
|
|
|
int hour, min, sec;
|
|
|
|
struct tm tm;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
memset(&tm, 0, sizeof(tm));
|
|
|
|
tm.tm_mday = strtol(date, &p, 10);
|
|
|
|
if (tm.tm_mday < 1 || tm.tm_mday > 31)
|
|
|
|
return 0;
|
|
|
|
for (tm.tm_mon = 0; tm.tm_mon < 12; tm.tm_mon++) {
|
|
|
|
if (!memcmp(p, monthname(tm.tm_mon), 3))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (tm.tm_mon > 11)
|
|
|
|
return 0;
|
|
|
|
date = p+3;
|
|
|
|
tm.tm_year = strtol(date, &p, 10);
|
|
|
|
if (date == p)
|
|
|
|
return 0;
|
|
|
|
if (tm.tm_year < 70)
|
|
|
|
tm.tm_year += 2000;
|
|
|
|
if (tm.tm_year < 100)
|
|
|
|
tm.tm_year += 1900;
|
|
|
|
if (sscanf(p, "%d:%d:%d", &hour, &min, &sec) != 3)
|
|
|
|
return 0;
|
|
|
|
tm.tm_hour = hour;
|
|
|
|
tm.tm_min = min;
|
|
|
|
tm.tm_sec = sec;
|
|
|
|
return utc_mktime(&tm);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum csv_format {
|
|
|
|
CSV_DEPTH, CSV_TEMP, CSV_PRESSURE
|
|
|
|
};
|
|
|
|
|
|
|
|
static void add_sample_data(struct sample *sample, enum csv_format type, double val)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case CSV_DEPTH:
|
|
|
|
sample->depth.mm = feet_to_mm(val);
|
|
|
|
break;
|
|
|
|
case CSV_TEMP:
|
|
|
|
sample->temperature.mkelvin = F_to_mkelvin(val);
|
|
|
|
break;
|
|
|
|
case CSV_PRESSURE:
|
2012-06-20 05:41:44 +00:00
|
|
|
sample->cylinderpressure.mbar = psi_to_mbar(val*4);
|
2012-06-20 03:07:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cochran comma-separated values: depth in feet, temperature in F, pressure in psi.
|
|
|
|
*
|
|
|
|
* They start with eight comma-separated fields like:
|
|
|
|
*
|
|
|
|
* filename: {C:\Analyst4\can\T036785.can},{C:\Analyst4\can\K031892.can}
|
|
|
|
* divenr: %d
|
|
|
|
* datetime: {03Sep11 16:37:22},{15Dec11 18:27:02}
|
|
|
|
* ??: 1
|
|
|
|
* serialnr??: {CCI134},{CCI207}
|
|
|
|
* computer??: {GeminiII},{CommanderIII}
|
|
|
|
* computer??: {GeminiII},{CommanderIII}
|
|
|
|
* ??: 1
|
|
|
|
*
|
|
|
|
* Followed by the data values (all comma-separated, all one long line).
|
|
|
|
*/
|
|
|
|
static int try_to_open_csv(const char *filename, struct memblock *mem, enum csv_format type)
|
|
|
|
{
|
|
|
|
char *p = mem->buffer;
|
|
|
|
char *header[8];
|
|
|
|
int i, time;
|
2012-09-20 00:35:52 +00:00
|
|
|
timestamp_t date;
|
2012-06-20 03:07:42 +00:00
|
|
|
struct dive *dive;
|
2013-02-09 15:41:15 +00:00
|
|
|
struct divecomputer *dc;
|
2012-06-20 03:07:42 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
header[i] = p;
|
|
|
|
p = strchr(p, ',');
|
|
|
|
if (!p)
|
|
|
|
return 0;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
date = parse_date(header[2]);
|
|
|
|
if (!date)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dive = alloc_dive();
|
|
|
|
dive->when = date;
|
|
|
|
dive->number = atoi(header[1]);
|
2013-02-09 15:41:15 +00:00
|
|
|
dc = &dive->dc;
|
2012-06-20 03:07:42 +00:00
|
|
|
|
|
|
|
time = 0;
|
|
|
|
for (;;) {
|
|
|
|
char *end;
|
|
|
|
double val;
|
|
|
|
struct sample *sample;
|
|
|
|
|
|
|
|
errno = 0;
|
2013-10-05 07:29:09 +00:00
|
|
|
val = strtod(p,&end); // FIXME == localization issue
|
2012-06-20 03:07:42 +00:00
|
|
|
if (end == p)
|
|
|
|
break;
|
|
|
|
if (errno)
|
|
|
|
break;
|
|
|
|
|
2013-02-09 15:41:15 +00:00
|
|
|
sample = prepare_sample(dc);
|
2012-06-20 03:07:42 +00:00
|
|
|
sample->time.seconds = time;
|
|
|
|
add_sample_data(sample, type, val);
|
2013-02-09 15:41:15 +00:00
|
|
|
finish_sample(dc);
|
2012-06-20 03:07:42 +00:00
|
|
|
|
|
|
|
time++;
|
2013-02-09 15:41:15 +00:00
|
|
|
dc->duration.seconds = time;
|
2012-06-20 03:07:42 +00:00
|
|
|
if (*end != ',')
|
|
|
|
break;
|
|
|
|
p = end+1;
|
|
|
|
}
|
|
|
|
record_dive(dive);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-05-22 06:13:45 +00:00
|
|
|
static int open_by_filename(const char *filename, const char *fmt, struct memblock *mem, char **error)
|
2012-01-27 01:43:33 +00:00
|
|
|
{
|
2013-09-17 18:23:54 +00:00
|
|
|
/* Suunto Dive Manager files: SDE, ZIP; divelogs.de files: DLD */
|
|
|
|
if (!strcasecmp(fmt, "SDE") || !strcasecmp(fmt, "ZIP") || !strcasecmp(fmt, "DLD"))
|
2013-02-20 18:01:26 +00:00
|
|
|
return try_to_open_zip(filename, mem, error);
|
2012-01-27 01:43:33 +00:00
|
|
|
|
2013-09-29 12:44:38 +00:00
|
|
|
/* CSV files */
|
2013-10-17 19:05:29 +00:00
|
|
|
if (!strcasecmp(fmt, "CSV")) {
|
|
|
|
int len = strlen(translate("gettextFromC","Failed to read '%s'. Use import for CSV files.")) + strlen(filename);
|
|
|
|
*error = malloc(len);
|
|
|
|
snprintf(*error, len, translate("gettextFromC","Failed to read '%s'. Use import for CSV files."), filename);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-09-29 12:44:38 +00:00
|
|
|
|
2013-05-12 03:07:28 +00:00
|
|
|
#if ONCE_COCHRAN_IS_SUPPORTED
|
2012-01-27 20:43:40 +00:00
|
|
|
/* Truly nasty intentionally obfuscated Cochran Anal software */
|
|
|
|
if (!strcasecmp(fmt, "CAN"))
|
|
|
|
return try_to_open_cochran(filename, mem, error);
|
2013-05-12 03:07:28 +00:00
|
|
|
#endif
|
2012-01-27 20:43:40 +00:00
|
|
|
|
2012-06-20 03:07:42 +00:00
|
|
|
/* Cochran export comma-separated-value files */
|
|
|
|
if (!strcasecmp(fmt, "DPT"))
|
|
|
|
return try_to_open_csv(filename, mem, CSV_DEPTH);
|
|
|
|
if (!strcasecmp(fmt, "TMP"))
|
|
|
|
return try_to_open_csv(filename, mem, CSV_TEMP);
|
|
|
|
if (!strcasecmp(fmt, "HP1"))
|
|
|
|
return try_to_open_csv(filename, mem, CSV_PRESSURE);
|
|
|
|
|
2012-01-27 01:43:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-22 06:13:45 +00:00
|
|
|
static void parse_file_buffer(const char *filename, struct memblock *mem, char **error)
|
2012-01-27 18:56:36 +00:00
|
|
|
{
|
|
|
|
char *fmt = strrchr(filename, '.');
|
|
|
|
if (fmt && open_by_filename(filename, fmt+1, mem, error))
|
|
|
|
return;
|
|
|
|
|
2013-12-09 06:42:51 +00:00
|
|
|
if (!mem->size || !mem->buffer)
|
|
|
|
return;
|
|
|
|
|
2013-10-16 19:05:19 +00:00
|
|
|
parse_xml_buffer(filename, mem->buffer, mem->size, &dive_table, NULL, error);
|
2012-01-27 18:56:36 +00:00
|
|
|
}
|
|
|
|
|
2013-05-22 06:13:45 +00:00
|
|
|
void parse_file(const char *filename, char **error)
|
2012-01-26 21:00:45 +00:00
|
|
|
{
|
|
|
|
struct memblock mem;
|
2013-03-05 05:10:39 +00:00
|
|
|
char *fmt;
|
2012-01-26 21:00:45 +00:00
|
|
|
|
|
|
|
if (readfile(filename, &mem) < 0) {
|
2012-09-15 11:44:00 +00:00
|
|
|
/* we don't want to display an error if this was the default file */
|
2013-01-12 01:07:22 +00:00
|
|
|
if (prefs.default_filename && ! strcmp(filename, prefs.default_filename))
|
2012-09-15 11:44:00 +00:00
|
|
|
return;
|
|
|
|
|
2012-01-26 21:00:45 +00:00
|
|
|
if (error) {
|
2013-10-10 05:48:35 +00:00
|
|
|
int len = strlen(translate("gettextFromC","Failed to read '%s'")) + strlen(filename);
|
2013-09-29 12:44:38 +00:00
|
|
|
*error = malloc(len);
|
2013-10-10 05:48:35 +00:00
|
|
|
snprintf(*error, len, translate("gettextFromC","Failed to read '%s'"), filename);
|
2012-01-26 21:00:45 +00:00
|
|
|
}
|
2012-11-10 14:32:06 +00:00
|
|
|
|
2012-01-26 21:00:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-05 05:10:39 +00:00
|
|
|
fmt = strrchr(filename, '.');
|
2013-03-07 04:18:42 +00:00
|
|
|
if (fmt && (!strcasecmp(fmt + 1, "DB") || !strcasecmp(fmt + 1, "BAK"))) {
|
2013-03-05 05:10:39 +00:00
|
|
|
if (!try_to_open_db(filename, &mem, error)) {
|
|
|
|
free(mem.buffer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-10 14:32:06 +00:00
|
|
|
parse_file_buffer(filename, &mem, error);
|
2012-01-26 21:00:45 +00:00
|
|
|
free(mem.buffer);
|
|
|
|
}
|
2013-10-16 19:05:19 +00:00
|
|
|
|
|
|
|
#define MAXCOLDIGITS 3
|
|
|
|
#define MAXCOLS 100
|
2013-12-04 23:19:28 +00:00
|
|
|
void parse_csv_file(const char *filename, int timef, int depthf, int tempf, int po2f, int cnsf, int stopdepthf, int sepidx, char **error)
|
2013-10-16 19:05:19 +00:00
|
|
|
{
|
|
|
|
struct memblock mem;
|
2013-11-21 22:48:39 +00:00
|
|
|
int pnr=0;
|
2013-12-04 23:19:28 +00:00
|
|
|
char *params[19];
|
2013-10-16 19:05:19 +00:00
|
|
|
char timebuf[MAXCOLDIGITS];
|
|
|
|
char depthbuf[MAXCOLDIGITS];
|
|
|
|
char tempbuf[MAXCOLDIGITS];
|
2013-11-21 22:48:40 +00:00
|
|
|
char po2buf[MAXCOLDIGITS];
|
2013-11-21 22:48:41 +00:00
|
|
|
char cnsbuf[MAXCOLDIGITS];
|
2013-11-21 22:48:42 +00:00
|
|
|
char stopdepthbuf[MAXCOLDIGITS];
|
2013-12-04 23:19:28 +00:00
|
|
|
char separator_index[MAXCOLDIGITS];
|
2013-10-19 05:17:13 +00:00
|
|
|
time_t now;
|
|
|
|
struct tm *timep;
|
|
|
|
char curdate[9];
|
|
|
|
char curtime[6];
|
2013-10-16 19:05:19 +00:00
|
|
|
|
2013-11-21 22:48:42 +00:00
|
|
|
if (timef >= MAXCOLS || depthf >= MAXCOLS || tempf >= MAXCOLS || po2f >= MAXCOLS || cnsf >= MAXCOLS || stopdepthf >= MAXCOLS ) {
|
2013-10-16 19:05:19 +00:00
|
|
|
int len = strlen(translate("gettextFromC", "Maximum number of supported columns on CSV import is %d")) + MAXCOLDIGITS;
|
|
|
|
*error = malloc(len);
|
|
|
|
snprintf(*error, len, translate("gettextFromC", "Maximum number of supported columns on CSV import is %d"), MAXCOLS);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2013-10-19 05:17:13 +00:00
|
|
|
snprintf(timebuf, MAXCOLDIGITS, "%d", timef);
|
|
|
|
snprintf(depthbuf, MAXCOLDIGITS, "%d", depthf);
|
|
|
|
snprintf(tempbuf, MAXCOLDIGITS, "%d", tempf);
|
2013-11-21 22:48:40 +00:00
|
|
|
snprintf(po2buf, MAXCOLDIGITS, "%d", po2f);
|
2013-11-21 22:48:41 +00:00
|
|
|
snprintf(cnsbuf, MAXCOLDIGITS, "%d", cnsf);
|
2013-11-21 22:48:42 +00:00
|
|
|
snprintf(stopdepthbuf, MAXCOLDIGITS, "%d", stopdepthf);
|
2013-12-04 23:19:28 +00:00
|
|
|
snprintf(separator_index, MAXCOLDIGITS, "%d", sepidx);
|
2013-10-19 05:17:13 +00:00
|
|
|
time(&now);
|
|
|
|
timep = localtime(&now);
|
|
|
|
strftime(curdate, sizeof(curdate), "%Y%m%d", timep);
|
|
|
|
|
|
|
|
/* As the parameter is numeric, we need to ensure that the leading zero
|
|
|
|
* is not discarded during the transform, thus prepend time with 1 */
|
|
|
|
strftime(curtime, sizeof(curtime), "1%H%M", timep);
|
2013-10-16 19:05:19 +00:00
|
|
|
|
2013-11-21 22:48:39 +00:00
|
|
|
params[pnr++] = "timeField";
|
|
|
|
params[pnr++] = timebuf;
|
|
|
|
params[pnr++] = "depthField";
|
|
|
|
params[pnr++] = depthbuf;
|
|
|
|
params[pnr++] = "tempField";
|
|
|
|
params[pnr++] = tempbuf;
|
2013-11-21 22:48:40 +00:00
|
|
|
params[pnr++] = "po2Field";
|
|
|
|
params[pnr++] = po2buf;
|
2013-11-21 22:48:41 +00:00
|
|
|
params[pnr++] = "cnsField";
|
|
|
|
params[pnr++] = cnsbuf;
|
2013-11-21 22:48:42 +00:00
|
|
|
params[pnr++] = "stopdepthField";
|
|
|
|
params[pnr++] = stopdepthbuf;
|
2013-11-21 22:48:39 +00:00
|
|
|
params[pnr++] = "date";
|
|
|
|
params[pnr++] = curdate;
|
|
|
|
params[pnr++] = "time";
|
|
|
|
params[pnr++] = curtime;
|
2013-12-04 23:19:28 +00:00
|
|
|
params[pnr++] = "separatorIndex";
|
|
|
|
params[pnr++] = separator_index;
|
2013-11-21 22:48:39 +00:00
|
|
|
params[pnr++] = NULL;
|
2013-10-16 19:05:19 +00:00
|
|
|
|
|
|
|
if (filename == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (readfile(filename, &mem) < 0) {
|
|
|
|
if (error) {
|
|
|
|
int len = strlen(translate("gettextFromC","Failed to read '%s'")) + strlen(filename);
|
|
|
|
*error = malloc(len);
|
|
|
|
snprintf(*error, len, translate("gettextFromC","Failed to read '%s'"), filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (try_to_xslt_open_csv(filename, &mem, error))
|
|
|
|
return;
|
|
|
|
|
|
|
|
parse_xml_buffer(filename, mem.buffer, mem.size, &dive_table, (const char **)params, error);
|
|
|
|
free(mem.buffer);
|
|
|
|
}
|