| /* |
| * Copyright (C) 2010 - 2011, Red Hat, Inc. |
| * |
| * This program is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser 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 Lesser 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 SERVICES_PRIVATE__H |
| # define SERVICES_PRIVATE__H |
| |
| # include <glib.h> |
| # include "crm/services.h" |
| |
| #if SUPPORT_DBUS |
| # include <dbus/dbus.h> |
| #endif |
| |
| #define MAX_ARGC 255 |
| struct svc_action_private_s { |
| char *exec; |
| char *args[MAX_ARGC]; |
| |
| uid_t uid; |
| gid_t gid; |
| |
| guint repeat_timer; |
| void (*callback) (svc_action_t * op); |
| void (*fork_callback) (svc_action_t * op); |
| |
| int stderr_fd; |
| mainloop_io_t *stderr_gsource; |
| |
| int stdout_fd; |
| mainloop_io_t *stdout_gsource; |
| |
| int stdin_fd; |
| #if SUPPORT_DBUS |
| DBusPendingCall* pending; |
| unsigned timerid; |
| #endif |
| }; |
| |
| G_GNUC_INTERNAL |
| GList *services_os_get_directory_list(const char *root, gboolean files, gboolean executable); |
| |
| G_GNUC_INTERNAL |
| gboolean services_os_action_execute(svc_action_t * op); |
| |
| G_GNUC_INTERNAL |
| GList *resources_os_list_lsb_agents(void); |
| |
| G_GNUC_INTERNAL |
| GList *resources_os_list_ocf_providers(void); |
| |
| G_GNUC_INTERNAL |
| GList *resources_os_list_ocf_agents(const char *provider); |
| |
| G_GNUC_INTERNAL |
| GList *resources_os_list_nagios_agents(void); |
| |
| G_GNUC_INTERNAL |
| gboolean cancel_recurring_action(svc_action_t * op); |
| |
| G_GNUC_INTERNAL |
| gboolean recurring_action_timer(gpointer data); |
| |
| G_GNUC_INTERNAL |
| gboolean operation_finalize(svc_action_t * op); |
| |
| G_GNUC_INTERNAL |
| void services_add_inflight_op(svc_action_t *op); |
| |
| G_GNUC_INTERNAL |
| void services_untrack_op(svc_action_t *op); |
| |
| G_GNUC_INTERNAL |
| gboolean is_op_blocked(const char *rsc); |
| |
| #if SUPPORT_DBUS |
| G_GNUC_INTERNAL |
| void services_set_op_pending(svc_action_t *op, DBusPendingCall *pending); |
| #endif |
| |
| #endif /* SERVICES_PRIVATE__H */ |