mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-03 07:49:53 +00:00
57 lines
1.0 KiB
C
57 lines
1.0 KiB
C
#ifndef DAEMON_H
|
|
#define DAEMON_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef HAVE_DAEMON
|
|
int daemon(int nochdir, int noclose);
|
|
#endif
|
|
|
|
#include <limits.h> /* for PATH_MAX */
|
|
#include "gen_tile.h"
|
|
#include "protocol.h"
|
|
|
|
#define INILINE_MAX 256
|
|
#define MAX_SLAVES 5
|
|
|
|
typedef struct {
|
|
char *socketname;
|
|
char *iphostname;
|
|
int ipport;
|
|
int num_threads;
|
|
char *tile_dir;
|
|
char *mapnik_plugins_dir;
|
|
char *mapnik_font_dir;
|
|
int mapnik_font_dir_recurse;
|
|
char * stats_filename;
|
|
} renderd_config;
|
|
|
|
typedef struct {
|
|
char xmlname[XMLCONFIG_MAX];
|
|
char xmlfile[PATH_MAX];
|
|
char xmluri[PATH_MAX];
|
|
char host[PATH_MAX];
|
|
char htcpip[PATH_MAX];
|
|
char tile_dir[PATH_MAX];
|
|
char parameterization[PATH_MAX];
|
|
int tile_px_size;
|
|
int min_zoom;
|
|
int max_zoom;
|
|
int num_threads;
|
|
} xmlconfigitem;
|
|
|
|
|
|
|
|
struct request_queue * render_request_queue;
|
|
|
|
void statsRenderFinish(int z, long time);
|
|
void request_exit(void);
|
|
void send_response(struct item *item, enum protoCmd rsp, int render_time);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|