Files
openstreetmap-mod_tile-pyth…/includes/daemon.h
Hummeltech 42e4f0d283 Added PID file path configurability (#282)
* Added PID file path configurability
2022-05-26 20:36:54 +00:00

76 lines
1.8 KiB
C

/*
* Copyright (c) 2007 - 2020 by mod_tile contributors (see AUTHORS file)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; If not, see http://www.gnu.org/licenses/.
*/
#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;
const char * pid_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;
double scale_factor;
int min_zoom;
int max_zoom;
int num_threads;
} xmlconfigitem;
extern 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