File: unpack.h

package info (click to toggle)
pacemaker 1.0.9.1%2Bhg15626-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 34,668 kB
  • ctags: 5,645
  • sloc: xml: 87,444; ansic: 57,853; python: 11,479; sh: 5,255; makefile: 663; perl: 387; sed: 262
file content (94 lines) | stat: -rw-r--r-- 3,268 bytes parent folder | download
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
85
86
87
88
89
90
91
92
93
94
/* 
 * Copyright (C) 2004 Andrew Beekhof <andrew@beekhof.net>
 * 
 * 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.1 of the License, or (at your option) any later version.
 * 
 * This software 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 library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#ifndef PENGINE_UNPACK__H
#define PENGINE_UNPACK__H

extern gboolean unpack_resources(
	xmlNode *xml_resources, pe_working_set_t *data_set);

extern gboolean unpack_config(xmlNode *config, pe_working_set_t *data_set);

extern gboolean unpack_nodes(xmlNode *xml_nodes, pe_working_set_t *data_set);

extern gboolean unpack_status(xmlNode *status, pe_working_set_t *data_set);

extern gint sort_op_by_callid(gconstpointer a, gconstpointer b);

extern gboolean unpack_lrm_resources(
	node_t *node, xmlNode * lrm_state, pe_working_set_t *data_set);

extern gboolean add_node_attrs(
    xmlNode * attrs, node_t *node, gboolean overwrite, pe_working_set_t *data_set);

extern gboolean determine_online_status(
	xmlNode * node_state, node_t *this_node, pe_working_set_t *data_set);

extern const char *param_value(
	GHashTable *hash, xmlNode * parent, const char *name);

extern char *clone_zero(const char *last_rsc_id);
extern char *increment_clone(char *last_rsc_id);

/*
 * The man pages for both curses and ncurses suggest inclusion of "curses.h".
 * We believe the following to be acceptable and portable.
 */

#if defined(HAVE_LIBNCURSES) || defined(HAVE_LIBCURSES)
#  if defined(HAVE_NCURSES_H) && !defined(HAVE_INCOMPATIBLE_PRINTW)
#    include <ncurses.h>
#    define CURSES_ENABLED 1
#  elif defined(HAVE_NCURSES_NCURSES_H) && !defined(HAVE_INCOMPATIBLE_PRINTW)
#    include <ncurses/ncurses.h>
#    define CURSES_ENABLED 1
#  elif defined(HAVE_CURSES_H) && !defined(HAVE_INCOMPATIBLE_PRINTW)
#    include <curses.h>
#    define CURSES_ENABLED 1
#  elif defined(HAVE_CURSES_CURSES_H) && !defined(HAVE_INCOMPATIBLE_PRINTW)
#    include <curses/curses.h>
#    define CURSES_ENABLED 1
#  else
#    define CURSES_ENABLED 0
#  endif
#else
#  define CURSES_ENABLED 0
#endif

#if CURSES_ENABLED
#  define status_printw(fmt, args...) printw(fmt, ##args)
#else
#  define status_printw(fmt, args...) \
	crm_err("printw support requires ncurses to be available during configure"); \
	do_crm_log(LOG_WARNING, fmt, ##args);
#endif

#define status_print(fmt, args...)			\
	if(options & pe_print_html) {			\
		FILE *stream = print_data;		\
		fprintf(stream, fmt, ##args);		\
	} else if(options & pe_print_ncurses) {		\
		status_printw(fmt, ##args);		\
	} else if(options & pe_print_printf) {		\
		FILE *stream = print_data;		\
		fprintf(stream, fmt, ##args);		\
	} else if(options & pe_print_log) {		\
		int log_level = *(int*)print_data;	\
		do_crm_log(log_level, fmt, ##args);	\
	}

#endif