Page Menu
Home
ClusterLabs Projects
Search
Configure Global Search
Log In
Files
F5519311
complex.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
complex.h
View Options
/*
* 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 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PENGINE_COMPLEX__H
# define PENGINE_COMPLEX__H
# define n_object_classes 3
/*#define PE_OBJ_F_ ""*/
# define PE_OBJ_T_NATIVE "native"
# define PE_OBJ_T_GROUP "group"
# define PE_OBJ_T_INCARNATION "clone"
# define PE_OBJ_T_MASTER "master"
enum pe_obj_types {
pe_unknown = -1,
pe_native = 0,
pe_group = 1,
pe_clone = 2,
pe_master = 3
};
enum pe_obj_types get_resource_type(const char *name);
const char *get_resource_typename(enum pe_obj_types type);
typedef struct resource_object_functions_s {
gboolean(*unpack) (resource_t *, pe_working_set_t *);
resource_t *(*find_rsc) (resource_t * parent, const char *search, node_t * node, int flags);
/* parameter result must be free'd */
char *(*parameter) (resource_t *, node_t *, gboolean, const char *, pe_working_set_t *);
void (*print) (resource_t *, const char *, long, void *);
gboolean(*active) (resource_t *, gboolean);
enum rsc_role_e (*state) (const resource_t *, gboolean);
node_t *(*location) (resource_t *, GListPtr *, gboolean);
void (*free) (resource_t *);
} resource_object_functions_t;
extern resource_object_functions_t resource_class_functions[];
void get_meta_attributes(GHashTable * meta_hash, resource_t * rsc, node_t * node,
pe_working_set_t * data_set);
void get_rsc_attributes(GHashTable * meta_hash, resource_t * rsc, node_t * node,
pe_working_set_t * data_set);
typedef struct resource_alloc_functions_s resource_alloc_functions_t;
resource_t *uber_parent(resource_t * rsc);
#endif
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Sep 5, 9:22 AM (7 h, 10 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2308643
Default Alt Text
complex.h (2 KB)
Attached To
Mode
rP Pacemaker
Attached
Detach File
Event Timeline
Log In to Comment