recorder/storage.c

360 lines
8.7 KiB
C
Raw Normal View History

2015-08-21 14:37:33 -07:00
// #define __USE_XOPEN 1
// #define _GNU_SOURCE 1
2015-08-20 10:16:26 -07:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
2015-08-21 14:37:33 -07:00
#include <fnmatch.h>
#include <ctype.h>
2015-08-20 10:16:26 -07:00
#include "utstring.h"
#include "config.h"
#include "storage.h"
#include "geohash.h"
#include "udata.h"
int ghash_readcache(struct udata *ud, char *ghash, UT_string *addr, UT_string *cc);
void get_geo(JsonNode *o, char *ghash)
{
static UT_string *addr = NULL, *cc = NULL;
static struct udata udata;
2015-08-21 12:11:42 -07:00
/* FIXME!!!! */
2015-08-20 10:16:26 -07:00
udata.usefiles = 1;
utstring_renew(addr);
utstring_renew(cc);
if (ghash_readcache(&udata, ghash, addr, cc) == 1) {
json_append_member(o, "addr", json_mkstring(utstring_body(addr)));
json_append_member(o, "cc", json_mkstring(utstring_body(cc)));
}
}
2015-08-21 12:11:42 -07:00
/*
* `s' has a time string in it. Try to convert into time_t
* using a variety of formats from higher to lower precision.
* Return 1 on success, 0 on failure.
*/
static int str_time_to_secs(char *s, time_t *secs)
{
static char **f, *formats[] = {
"%Y-%m-%dT%H:%M:%S",
"%Y-%m-%dT%H:%M",
"%Y-%m-%dT%H",
"%Y-%m-%d",
"%Y-%m",
NULL
};
struct tm tm;
int success = 0;
memset(&tm, 0, sizeof(struct tm));
for (f = formats; f && *f; f++) {
if (strptime(s, *f, &tm) != NULL) {
success = 1;
2015-08-21 23:39:15 -07:00
fprintf(stderr, "str_time_to_secs succeeds with %s\n", *f);
2015-08-21 12:11:42 -07:00
break;
}
}
if (!success)
return (0);
2015-08-22 00:36:33 -07:00
tm.tm_mday = (tm.tm_mday < 1) ? 1 : tm.tm_mday;
tm.tm_isdst = -1; /* A negative value for tm_isdst causes
* the mktime() function to attempt to
* divine whether summer time is in
* effect for the specified time. */
2015-08-21 12:11:42 -07:00
*secs = mktime(&tm);
printf("str_time_to_secs: %s becomes %04d-%02d-%02d %02d:%02d:%02d\n",
s,
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec);
return (1);
}
2015-08-22 00:46:31 -07:00
/*
* For each of the strings, create an epoch time at the s_ pointers. If
* a string is NULL, use a default time (from: HOURS previous, to: now)
* Return 1 if the time conversion was successful and from <= to.
*/
2015-08-21 12:11:42 -07:00
int make_times(char *time_from, time_t *s_lo, char *time_to, time_t *s_hi)
{
time_t now;
2015-08-21 23:39:15 -07:00
setenv("TZ", "UTC", 1); // FIXME: really?
2015-08-21 12:11:42 -07:00
time(&now);
2015-08-21 14:37:33 -07:00
if (!time_from || !*time_from) {
2015-08-22 00:36:33 -07:00
*s_lo = now - (60 * 60 * DEFAULT_HISTORY_HOURS);
2015-08-21 14:37:33 -07:00
} else {
if (str_time_to_secs(time_from, s_lo) == 0)
return (0);
2015-08-21 12:11:42 -07:00
}
2015-08-21 14:37:33 -07:00
if (!time_to || !*time_to) {
*s_hi = now;
} else {
if (str_time_to_secs(time_to, s_hi) == 0)
2015-08-21 12:11:42 -07:00
return (0);
2015-08-21 14:37:33 -07:00
}
2015-08-21 12:11:42 -07:00
return (*s_lo > *s_hi ? 0 : 1);
}
2015-08-20 10:16:26 -07:00
/*
* List the directories in the directory at `path' and put
* the names into a JSON array which is in obj.
*/
static void ls(char *path, JsonNode *obj)
{
DIR *dirp;
struct dirent *dp;
JsonNode *jarr = json_mkarray();
printf("opendir %s\n", path);
if ((dirp = opendir(path)) == NULL) {
json_append_member(obj, "error", json_mkstring("Cannot open requested directory"));
return;
}
while ((dp = readdir(dirp)) != NULL) {
if ((*dp->d_name != '.') && (dp->d_type == DT_DIR)) {
// char *s = strdup(dp->d_name);
json_append_element(jarr, json_mkstring(dp->d_name));
}
}
json_append_member(obj, "results", jarr);
closedir(dirp);
}
/*
2015-08-22 00:46:31 -07:00
* List the files in the directory at `pathpat' and
2015-08-21 14:37:33 -07:00
* put the names into a new JSON array in obj. Filenames (2015-08.rec)
2015-08-22 00:46:31 -07:00
* are checked whether they fall (time-wise) into the times between
2015-08-21 14:37:33 -07:00
* s_lo and s_hi.
2015-08-20 10:16:26 -07:00
*/
2015-08-21 14:37:33 -07:00
static time_t t_lo, t_hi; /* must be global so that filter() can access them */
static int filter_filename(const struct dirent *d)
{
2015-08-21 23:39:15 -07:00
struct tm tmfile, *tm;
2015-08-22 00:24:43 -07:00
int lo_months, hi_months, file_months;
2015-08-21 14:37:33 -07:00
/* if the filename doesn't look like YYYY-MM.rec we can safely ignore it.
* Needs modifying after the year 2999 ;-) */
if (fnmatch("2[0-9][0-9][0-9]-[0-3][0-9].rec", d->d_name, 0) != 0)
return (0);
2015-08-22 00:46:31 -07:00
/* Convert filename (YYYY-MM) to a tm; see if months falls between
* from months and to months. */
2015-08-21 23:39:15 -07:00
memset(&tmfile, 0, sizeof(struct tm));
if (strptime(d->d_name, "%Y-%m", &tmfile) == NULL) {
fprintf(stderr, "filter: convert err");
2015-08-21 14:37:33 -07:00
return (0);
}
2015-08-22 00:24:43 -07:00
file_months = (tmfile.tm_year + 1900) * 12 + tmfile.tm_mon;
2015-08-21 14:37:33 -07:00
2015-08-21 23:39:15 -07:00
tm = gmtime(&t_lo);
2015-08-22 00:24:43 -07:00
lo_months = (tm->tm_year + 1900) * 12 + tm->tm_mon;
2015-08-21 14:37:33 -07:00
2015-08-21 23:39:15 -07:00
tm = gmtime(&t_hi);
2015-08-22 00:24:43 -07:00
hi_months = (tm->tm_year + 1900) * 12 + tm->tm_mon;
2015-08-21 14:37:33 -07:00
2015-08-21 23:39:15 -07:00
/*
2015-08-21 14:37:33 -07:00
printf("filter: file %s has %04d-%02d-%02d %02d:%02d:%02d\n",
d->d_name,
2015-08-21 23:39:15 -07:00
tmfile.tm_year + 1900, tmfile.tm_mon + 1, tmfile.tm_mday,
tmfile.tm_hour, tmfile.tm_min, tmfile.tm_sec);
*/
2015-08-22 00:24:43 -07:00
if (file_months >= lo_months && file_months <= hi_months) {
2015-08-21 23:39:15 -07:00
// fprintf(stderr, "filter: returns: %s\n", d->d_name);
2015-08-21 14:37:33 -07:00
return (1);
}
return (0);
}
static int cmp( const struct dirent **a, const struct dirent **b)
{
return strcmp((*a)->d_name, (*b)->d_name);
}
static void lsscan(char *pathpat, time_t s_lo, time_t s_hi, JsonNode *obj)
{
struct dirent **namelist;
int i, n;
2015-08-20 10:16:26 -07:00
JsonNode *jarr = json_mkarray();
2015-08-21 23:39:15 -07:00
static UT_string *path = NULL;
utstring_renew(path);
2015-08-20 10:16:26 -07:00
2015-08-21 14:37:33 -07:00
/* Set global t_ values */
t_lo = s_lo; //month_part(s_lo);
t_hi = s_hi; //month_part(s_hi);
if ((n = scandir(pathpat, &namelist, filter_filename, cmp)) < 0) {
json_append_member(obj, "error", json_mkstring("Cannot lsscan requested directory"));
2015-08-20 10:16:26 -07:00
return;
}
2015-08-21 14:37:33 -07:00
for (i = 0; i < n; i++) {
2015-08-21 23:39:15 -07:00
utstring_clear(path);
utstring_printf(path, "%s/%s", pathpat, namelist[i]->d_name);
json_append_element(jarr, json_mkstring(utstring_body(path)));
2015-08-21 14:37:33 -07:00
free(namelist[i]);
}
free(namelist);
2015-08-20 10:16:26 -07:00
json_append_member(obj, "results", jarr);
}
/*
* If `user' and `device' are both NULL, return list of users.
* If `user` is specified, and device is NULL, return user's devices
* If both user and device are specified, return list of .rec files;
2015-08-21 12:11:42 -07:00
* in that case, limit with `s_lo` and `s_hi`
2015-08-20 10:16:26 -07:00
*/
2015-08-21 12:11:42 -07:00
JsonNode *lister(char *user, char *device, time_t s_lo, time_t s_hi)
2015-08-20 10:16:26 -07:00
{
JsonNode *json = json_mkobject();
UT_string *path = NULL;
2015-08-21 14:37:33 -07:00
char *bp;
2015-08-20 10:16:26 -07:00
utstring_renew(path);
2015-08-21 14:37:33 -07:00
for (bp = user; bp && *bp; bp++) {
if (isupper(*bp))
*bp = tolower(*bp);
}
for (bp = device; bp && *bp; bp++) {
if (isupper(*bp))
*bp = tolower(*bp);
}
2015-08-20 10:16:26 -07:00
if (!user && !device) {
utstring_printf(path, "%s/rec", STORAGEDIR);
ls(utstring_body(path), json);
} else if (!device) {
utstring_printf(path, "%s/rec/%s", STORAGEDIR, user);
ls(utstring_body(path), json);
} else {
2015-08-21 14:37:33 -07:00
utstring_printf(path, "%s/rec/%s/%s",
STORAGEDIR, user, device);
lsscan(utstring_body(path), s_lo, s_hi, json);
2015-08-20 10:16:26 -07:00
}
return (json);
}
/*
* Read the file at `filename' (- is stdin) and store location
* objects at the JSON array `arr`. `obj' is a JSON object which
* contains `arr'.
*/
void locations(char *filename, JsonNode *obj, JsonNode *arr)
{
JsonNode *o, *json, *j;
FILE *fp;
int doclose;
char buf[BUFSIZ], **element;
long counter = 0L;
static char *numbers[] = { "lat", "lon", "batt", "vel", "cog", "tst", "alt", "dist", "trip", NULL };
static char *strings[] = { "tid", "t", NULL };
2015-08-20 11:36:46 -07:00
extern int errno;
2015-08-20 10:16:26 -07:00
if (!strcmp(filename, "-")) {
fp = stdin;
doclose = 0;
} else {
if ((fp = fopen(filename, "r")) == NULL) {
2015-08-20 11:36:46 -07:00
fprintf(stderr, "Cannot open %s: %s\n", filename, strerror(errno));
2015-08-20 10:16:26 -07:00
return;
}
doclose = 1;
}
/* Initialize our counter to what the JSON obj currently has */
if ((j = json_find_member(obj, "count")) != NULL) {
counter = j->number_;
json_delete(j);
}
while (fgets(buf, sizeof(buf)-1, fp) != NULL) {
char *bp, *ghash;
double lat, lon;
if ((bp = strstr(buf, "Z\t* ")) != NULL) {
if ((bp = strrchr(bp, '\t')) == NULL) {
continue;
}
++counter;
json = json_decode(bp + 1);
if (json == NULL) {
puts("Cannot decode JSON");
continue;
}
o = json_mkobject();
/* Start adding stuff to the object, then copy over the elements
* from the decoded original locations. */
for (element = numbers; element && *element; element++) {
if ((j = json_find_member(json, *element)) != NULL) {
if (j->tag == JSON_NUMBER) {
json_append_member(o, *element, json_mknumber(j->number_));
} else {
double d = atof(j->string_);
json_append_member(o, *element, json_mknumber(d));
}
}
}
for (element = strings; element && *element; element++) {
if ((j = json_find_member(json, *element)) != NULL) {
json_append_member(o, *element, json_mkstring(j->string_));
}
}
lat = lon = 0.0;
if ((j = json_find_member(o, "lat")) != NULL) {
lat = j->number_;
}
if ((j = json_find_member(o, "lon")) != NULL) {
lon = j->number_;
}
ghash = geohash_encode(lat, lon, GEOHASH_PREC);
json_append_member(o, "ghash", json_mkstring(ghash));
get_geo(o, ghash);
json_append_element(arr, o);
}
}
/* Add the counter back into `obj' */
json_append_member(obj, "count", json_mknumber(counter));
if (doclose)
fclose(fp);
}