2012-07-17 11:14:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010-2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* lxc_monitor.h: client for LXC controller monitor
|
|
|
|
*
|
|
|
|
* This library 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 library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-17 11:14:35 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LXC_MONITOR_H__
|
|
|
|
# define __LXC_MONITOR_H__
|
|
|
|
|
2012-09-21 14:09:42 +00:00
|
|
|
# include "virobject.h"
|
2012-07-17 11:14:35 +00:00
|
|
|
# include "domain_conf.h"
|
2012-12-21 13:19:54 +00:00
|
|
|
# include "lxc_monitor_protocol.h"
|
2012-07-17 11:14:35 +00:00
|
|
|
|
|
|
|
typedef struct _virLXCMonitor virLXCMonitor;
|
|
|
|
typedef virLXCMonitor *virLXCMonitorPtr;
|
|
|
|
|
|
|
|
typedef struct _virLXCMonitorCallbacks virLXCMonitorCallbacks;
|
|
|
|
typedef virLXCMonitorCallbacks *virLXCMonitorCallbacksPtr;
|
|
|
|
|
|
|
|
typedef void (*virLXCMonitorCallbackDestroy)(virLXCMonitorPtr mon,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
typedef void (*virLXCMonitorCallbackEOFNotify)(virLXCMonitorPtr mon,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2012-07-17 14:54:08 +00:00
|
|
|
typedef void (*virLXCMonitorCallbackExitNotify)(virLXCMonitorPtr mon,
|
2013-03-13 19:19:22 +00:00
|
|
|
virLXCMonitorExitStatus status,
|
2012-07-17 14:54:08 +00:00
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2012-11-20 17:49:25 +00:00
|
|
|
typedef void (*virLXCMonitorCallbackInitNotify)(virLXCMonitorPtr mon,
|
|
|
|
pid_t pid,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2012-07-17 11:14:35 +00:00
|
|
|
struct _virLXCMonitorCallbacks {
|
|
|
|
virLXCMonitorCallbackDestroy destroy;
|
|
|
|
virLXCMonitorCallbackEOFNotify eofNotify;
|
2012-07-17 14:54:08 +00:00
|
|
|
virLXCMonitorCallbackExitNotify exitNotify;
|
2012-11-20 17:49:25 +00:00
|
|
|
virLXCMonitorCallbackInitNotify initNotify;
|
2012-07-17 11:14:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
virLXCMonitorPtr virLXCMonitorNew(virDomainObjPtr vm,
|
|
|
|
const char *socketdir,
|
|
|
|
virLXCMonitorCallbacksPtr cb);
|
|
|
|
|
|
|
|
void virLXCMonitorClose(virLXCMonitorPtr mon);
|
|
|
|
|
|
|
|
void virLXCMonitorLock(virLXCMonitorPtr mon);
|
|
|
|
void virLXCMonitorUnlock(virLXCMonitorPtr mon);
|
|
|
|
|
|
|
|
#endif /* __LXC_MONITOR_H__ */
|