2017-07-14 23:56:23 +00:00
|
|
|
#ifndef MAIN_HPP
|
|
|
|
#define MAIN_HPP
|
|
|
|
|
|
|
|
#include <stddef.h>
|
2018-03-13 22:04:28 +00:00
|
|
|
#include <atomic>
|
2018-11-02 22:21:52 +00:00
|
|
|
#include <string>
|
2017-07-14 23:56:23 +00:00
|
|
|
|
2016-04-27 21:59:20 +00:00
|
|
|
struct index {
|
2017-11-07 23:20:17 +00:00
|
|
|
long long start = 0;
|
|
|
|
long long end = 0;
|
|
|
|
unsigned long long ix = 0;
|
|
|
|
short segment = 0;
|
2016-10-12 00:42:41 +00:00
|
|
|
unsigned short t : 2;
|
2016-10-11 00:15:33 +00:00
|
|
|
unsigned long long seq : (64 - 18); // pack with segment and t to stay in 32 bytes
|
2017-11-07 23:20:17 +00:00
|
|
|
|
|
|
|
index()
|
|
|
|
: t(0),
|
|
|
|
seq(0) {
|
|
|
|
}
|
2016-04-27 21:59:20 +00:00
|
|
|
};
|
|
|
|
|
2018-10-22 23:49:33 +00:00
|
|
|
struct clipbbox {
|
|
|
|
double lon1;
|
|
|
|
double lat1;
|
|
|
|
double lon2;
|
|
|
|
double lat2;
|
|
|
|
|
|
|
|
long long minx;
|
|
|
|
long long miny;
|
|
|
|
long long maxx;
|
|
|
|
long long maxy;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern std::vector<clipbbox> clipbboxes;
|
|
|
|
|
2017-11-07 23:20:17 +00:00
|
|
|
void checkdisk(std::vector<struct reader> *r);
|
2016-04-27 22:09:06 +00:00
|
|
|
|
|
|
|
extern int geometry_scale;
|
|
|
|
extern int quiet;
|
2017-11-17 01:08:03 +00:00
|
|
|
extern int quiet_progress;
|
2018-03-13 21:51:41 +00:00
|
|
|
extern double progress_interval;
|
2018-03-13 22:04:28 +00:00
|
|
|
extern std::atomic<double> last_progress;
|
2016-04-27 22:09:06 +00:00
|
|
|
|
2016-10-15 00:11:57 +00:00
|
|
|
extern size_t CPUS;
|
|
|
|
extern size_t TEMP_FILES;
|
2016-10-24 22:33:14 +00:00
|
|
|
|
|
|
|
extern size_t max_tile_size;
|
2017-12-14 22:30:08 +00:00
|
|
|
extern size_t max_tile_features;
|
2017-12-21 01:31:11 +00:00
|
|
|
extern int cluster_distance;
|
2018-11-02 22:21:52 +00:00
|
|
|
extern std::string attribute_for_id;
|
2016-12-07 18:57:56 +00:00
|
|
|
|
|
|
|
int mkstemp_cloexec(char *name);
|
|
|
|
FILE *fopen_oflag(const char *name, const char *mode, int oflag);
|
2018-03-13 21:51:41 +00:00
|
|
|
bool progress_time();
|
2017-07-07 05:28:35 +00:00
|
|
|
|
2017-05-31 17:41:23 +00:00
|
|
|
#define MAX_ZOOM 24
|
2017-07-14 23:56:23 +00:00
|
|
|
|
|
|
|
#endif
|