Files
mod_tile/includes/renderd.h
Hummeltech 1c9f8b6fb5 Move renderd.conf processing code into new file (#391)
So that it can be easily re-used by other targets.
2024-02-18 11:07:19 -07:00

82 lines
1.8 KiB
C

/*
* Copyright (c) 2007 - 2023 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 RENDERD_H
#define RENDERD_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef HAVE_DAEMON
int daemon(int nochdir, int noclose);
#endif
#include "gen_tile.h"
#include "protocol.h"
#include <limits.h>
#define INILINE_MAX 256
#define MAX_SLAVES 5
typedef struct {
char *iphostname;
char *mapnik_font_dir;
char *mapnik_plugins_dir;
char *pid_filename;
char *socketname;
char *stats_filename;
char *tile_dir;
int ipport;
int mapnik_font_dir_recurse;
int num_threads;
} renderd_config;
typedef struct {
char *attribution;
char *cors;
char *description;
char *host;
char *htcpip;
char *output_format;
char *parameterization;
char *server_alias;
char *tile_dir;
char *xmlfile;
char *xmlname;
char *xmluri;
double scale_factor;
int aspect_x;
int aspect_y;
int max_zoom;
int min_zoom;
int num_threads;
int tile_px_size;
} 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);
enum protoCmd rx_request(struct protocol *req, int fd);
#ifdef __cplusplus
}
#endif
#endif