recorder/storage.h

22 lines
545 B
C
Raw Normal View History

2015-08-20 10:16:26 -07:00
#ifndef _STORAGE_H_INCL_
# define _STORAGE_H_INCL_
2015-08-21 12:11:42 -07:00
#include <time.h>
2015-08-20 10:16:26 -07:00
#include "json.h"
typedef enum {
GEOJSON = 0,
CSV,
JSON,
RAW,
} output_type;
2015-08-20 10:16:26 -07:00
2015-08-21 12:11:42 -07:00
JsonNode *lister(char *username, char *device, time_t s_lo, time_t s_hi);
void locations(char *filename, JsonNode *obj, JsonNode *arr, time_t s_lo, time_t s_hi, output_type otype, int limit);
2015-08-21 12:11:42 -07:00
int make_times(char *time_from, time_t *s_lo, char *time_to, time_t *s_to);
JsonNode *geo_json(JsonNode *json);
JsonNode *kill_datastore(char *username, char *device);
2015-08-25 09:01:50 -07:00
JsonNode *last_users();
2015-08-20 10:16:26 -07:00
#endif