1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
* 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 {
const char *iphostname;
const char *mapnik_font_dir;
const char *mapnik_plugins_dir;
const char *name;
const char *pid_filename;
const char *socketname;
const char *stats_filename;
const char *tile_dir;
int ipport;
int mapnik_font_dir_recurse;
int num_threads;
} renderd_config;
typedef struct {
const char *attribution;
const char *cors;
const char *description;
const char *file_extension;
const char *host;
const char *htcpip;
const char *mime_type;
const char *output_format;
const char *parameterization;
const char *server_alias;
const char *tile_dir;
const char *xmlfile;
const char *xmlname;
const 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
|