/*****************************************************************************
*
* STATUSMAP.C - Nagios Network Status Map CGI
*
* Copyright (c) 1999-2006 Ethan Galstad (nagios@nagios.org)
* Last Modified: 03-21-2006
*
* Description:
*
* This CGI will create a map of all hosts that are being monitored on your
* network.
*
* License:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****************************************************************************/
#include "../include/config.h"
#include "../include/common.h"
#include "../include/objects.h"
#include "../include/statusdata.h"
#include "../include/cgiutils.h"
#include "../include/getcgi.h"
#include "../include/cgiauth.h"
#include <gd.h> /* Boutell's GD library function */
#include <gdfonts.h> /* GD library small font definition */
extern int refresh_rate;
/*#define DEBUG*/
#define UNKNOWN_GD2_ICON "unknown.gd2"
#define UNKNOWN_ICON_IMAGE "unknown.gif"
#define NAGIOS_GD2_ICON "nagios.gd2"
extern char main_config_file[MAX_FILENAME_LENGTH];
extern char physical_images_path[MAX_FILENAME_LENGTH];
extern char url_images_path[MAX_FILENAME_LENGTH];
extern char url_logo_images_path[MAX_FILENAME_LENGTH];
extern char url_stylesheets_path[MAX_FILENAME_LENGTH];
extern host *host_list;
extern hostgroup *hostgroup_list;
extern service *service_list;
extern hoststatus *hoststatus_list;
extern servicestatus *servicestatus_list;
extern char *statusmap_background_image;
extern int default_statusmap_layout_method;
#define DEFAULT_NODE_WIDTH 40
#define DEFAULT_NODE_HEIGHT 65
#define DEFAULT_NODE_VSPACING 15
#define DEFAULT_NODE_HSPACING 45
#define DEFAULT_PROXIMITY_WIDTH 1000
#define DEFAULT_PROXIMITY_HEIGHT 800
#define MINIMUM_PROXIMITY_WIDTH 250
#define MINIMUM_PROXIMITY_HEIGHT 200
#define COORDS_WARNING_WIDTH 650
#define COORDS_WARNING_HEIGHT 60
#define CIRCULAR_DRAWING_RADIUS 100
#define CREATE_HTML 0
#define CREATE_IMAGE 1
#define LAYOUT_USER_SUPPLIED 0
#define LAYOUT_SUBLAYERS 1
#define LAYOUT_COLLAPSED_TREE 2
#define LAYOUT_BALANCED_TREE 3
#define LAYOUT_CIRCULAR 4
#define LAYOUT_CIRCULAR_MARKUP 5
#define LAYOUT_CIRCULAR_BALLOON 6
typedef struct layer_struct{
char *layer_name;
struct layer_struct *next;
}layer;
=1= |