ladish/daemon/app_supervisor.h

445 lines
14 KiB
C
Raw Normal View History

2009-11-30 01:22:58 +02:00
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*
* LADI Session Handler (ladish)
*
* Copyright (C) 2009, 2010, 2011 Nedko Arnaudov <nedko@arnaudov.name>
2009-11-30 01:22:58 +02:00
*
**************************************************************************
* This file contains interface to app supervisor object
**************************************************************************
*
* LADI Session Handler 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.
*
* LADI Session Handler 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 LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
* or write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2010-05-08 17:54:24 +03:00
/** @file app_supervisor.h */
2009-11-30 01:22:58 +02:00
#ifndef APP_SUPERVISOR_H__712E6589_DCB1_4CE9_9812_4F250D55E8A2__INCLUDED
#define APP_SUPERVISOR_H__712E6589_DCB1_4CE9_9812_4F250D55E8A2__INCLUDED
#include "common.h"
2010-05-08 20:40:52 +03:00
#define LADISH_APP_STATE_STOPPED 0 /**< @brief app is stopped (not running) */
#define LADISH_APP_STATE_STARTED 1 /**< @brief app is running and not stopping */
#define LADISH_APP_STATE_STOPPING 2 /**< @brief app is stopping */
#define LADISH_APP_STATE_KILL 3 /**< @brief app is being force killed */
#define MAX_LEVEL_CHARCOUNT 10 /* includes terminating nul char */
2010-05-08 17:54:24 +03:00
/**
* App supervisor object handle (pointer to opaque data)
*/
typedef struct ladish_app_supervisor_tag { int unused; /**< fake */ } * ladish_app_supervisor_handle;
/**
* App object handle (pointer to opaque data)
*
* The app objects are owned by the app supervisor objects (there is not refcounting)
*/
typedef struct ladish_app_tag { int unused; /**< fake */ } * ladish_app_handle;
/**
* Type of function that is called when app is renamed
*
* @param[in] context User defined context that was supplied to ladish_app_supervisor_create()
* @param[in] uuid uuid of the app
2010-05-08 17:54:24 +03:00
* @param[in] old_name Old name of the app
* @param[in] new_name New name of the app
*/
typedef void (* ladish_app_supervisor_on_app_renamed_callback)(
void * context,
const uuid_t uuid,
2010-05-08 17:54:24 +03:00
const char * old_name,
const char * new_app_name);
/**
* Type of function that is called during app enumeration
*
* @param[in] context User defined context that was supplied to ladish_app_supervisor_enum()
* @param[in] name Name of the app
* @param[in] running Whether the app is currently running
* @param[in] command Commandline that is used to start the app
* @param[in] terminal Whether the app is started in terminal
* @param[in] level The level that app was started in
2010-08-08 23:51:31 +03:00
* @param[in] pid PID of the app; Zero if app is not started
* @param[in] uuid uuid of the app
2010-05-08 17:54:24 +03:00
*/
typedef bool (* ladish_app_supervisor_enum_callback)(
void * context,
const char * name,
bool running,
const char * command,
bool terminal,
const char * level,
pid_t pid,
const uuid_t uuid);
2009-11-30 01:22:58 +02:00
/**
* Check whether app level string is valid.
*
* @param [in] app level string
* @param [out] len_ptr When not NULL, the pointed variable will receive length of the level string, excluding terminating nul char.
*
* @return whether level string is valid
*/
bool
ladish_check_app_level_validity(
const char * level,
size_t * len_ptr);
2010-05-08 17:54:24 +03:00
/**
* Create app supervisor object
*
* @param[out] supervisor_handle_ptr Pointer to variable that will receive supervisor handle
* @param[in] opath Unique D-Bus object path for supervisor being created
* @param[in] name Name of the supervisor
* @param[in] context User defined context to be supplied when the callback suppiled through the @c on_app_renamed parameter is called
* @param[in] on_app_renamed Callback to call when app is renamed
*
* @return success status
*/
2009-12-26 21:44:09 +02:00
bool
ladish_app_supervisor_create(
ladish_app_supervisor_handle * supervisor_handle_ptr,
const char * opath,
const char * name,
2010-04-04 22:05:25 +03:00
void * context,
2010-05-08 17:54:24 +03:00
ladish_app_supervisor_on_app_renamed_callback on_app_renamed);
2009-12-26 21:44:09 +02:00
2010-05-08 17:54:24 +03:00
/**
* Destroy app supervisor object
*
* @param[in] supervisor_handle supervisor object handle
*/
2009-12-26 21:44:09 +02:00
void
ladish_app_supervisor_destroy(
ladish_app_supervisor_handle supervisor_handle);
2009-11-30 01:22:58 +02:00
2010-08-06 05:00:04 +03:00
/**
* Set the directory where apps will be started. If never called, apps will be started in the root directory ("/")
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] dir directory where apps will be started
2010-08-06 05:00:04 +03:00
*
* @return success status
*/
bool
ladish_app_supervisor_set_directory(
ladish_app_supervisor_handle supervisor_handle,
const char * dir);
/**
* Set/reset the project name
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] project_name project name. NULL means that there is no project name.
*
* @return success status
*/
bool
ladish_app_supervisor_set_project_name(
ladish_app_supervisor_handle supervisor_handle,
const char * project_name);
2010-05-08 17:54:24 +03:00
/**
* Mark that app has quit
*
* This function is called to mark that app has quit. Must not be called from signal handler because app supervisor object is not thread safe.
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] pid of the app whose termination was detected
*/
2009-12-26 21:44:09 +02:00
bool
ladish_app_supervisor_child_exit(
ladish_app_supervisor_handle supervisor_handle,
pid_t pid);
2010-05-08 17:54:24 +03:00
/**
* Iterate apps that are owned by supervisor
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] context User defined context to be supplied when the callback suppiled through the @c callback parameter is called
* @param[in] callback Callback to call for each app
*/
bool
ladish_app_supervisor_enum(
ladish_app_supervisor_handle supervisor_handle,
void * context,
2010-05-08 17:54:24 +03:00
ladish_app_supervisor_enum_callback callback);
2010-05-08 17:54:24 +03:00
/**
* Remove stopped apps; For running apps, initiate stop and
* mark them as zombies thus causing app autoremove
* once it quits.
2010-05-08 17:54:24 +03:00
*
* @param[in] supervisor_handle supervisor object handle
*
* @return Whether there were no running apps
2010-05-08 17:54:24 +03:00
*/
bool
2009-12-26 21:44:09 +02:00
ladish_app_supervisor_clear(
ladish_app_supervisor_handle supervisor_handle);
/**
* Send SIGUSR1 to all currently running L1 apps.
*
* @param[in] supervisor_handle supervisor object handle
*/
void
ladish_app_supervisor_save_L1(
ladish_app_supervisor_handle supervisor_handle);
2010-05-08 17:54:24 +03:00
/**
* Add app. Apps are added in stopped state
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] name Name of the app
* @param[in] uuid Optional uuid of the app. If NULL, new uuid will be generated.
2010-05-08 17:54:24 +03:00
* @param[in] autorun whether to start the app when ladish_app_supervisor_autorun() is called
* @param[in] command Commandline that is used to start the app
* @param[in] terminal Whether the app is started in terminal
* @param[in] level The level that app was started in
*
* @return app handle on success; NULL on failure; the app handle is owned by the app supervisor object
*/
ladish_app_handle
ladish_app_supervisor_add(
ladish_app_supervisor_handle supervisor_handle,
const char * name,
uuid_t uuid,
bool autorun,
const char * command,
bool terminal,
const char * level);
2010-05-08 17:54:24 +03:00
/**
* Initiate stop of all apps owned by this supervisor
*
* @param[in] supervisor_handle supervisor object handle
*/
2009-12-26 21:44:09 +02:00
void
ladish_app_supervisor_stop(
ladish_app_supervisor_handle supervisor_handle);
2010-05-08 17:54:24 +03:00
/**
* Start all apps that were added with autorun enabled
*
* @param[in] supervisor_handle supervisor object handle
*/
2009-12-26 21:44:09 +02:00
void
ladish_app_supervisor_autorun(
ladish_app_supervisor_handle supervisor_handle);
2010-05-08 17:54:24 +03:00
/**
* Get name of the supervisor
*
* TODO: This should be probably removed in favour of ladish_app_supervisor_get_opath(); it is used for debuging purposes only
*
* @param[in] supervisor_handle supervisor object handle
*
* @retval app name; the buffer is owned by the app supervisor object
*/
2010-04-04 00:31:14 +03:00
const char * ladish_app_supervisor_get_name(ladish_app_supervisor_handle supervisor_handle);
2010-05-08 17:54:24 +03:00
/**
* Get number of apps that are currently running
*
* @param[in] supervisor_handle supervisor object handle
*
* @return Number of apps that are currently running
*/
unsigned int ladish_app_supervisor_get_running_app_count(ladish_app_supervisor_handle supervisor_handle);
2010-08-08 23:51:31 +03:00
/**
* Check whether there are apps (running or not)
*
* @param[in] supervisor_handle supervisor object handle
*
* @return whether there are apps
*/
bool ladish_app_supervisor_has_apps(ladish_app_supervisor_handle supervisor_handle);
/**
* Dump to log the contents of the app supervisor
*
* @param[in] supervisor_handle supervisor object handle
*/
void ladish_app_supervisor_dump(ladish_app_supervisor_handle supervisor_handle);
2010-05-08 17:54:24 +03:00
/**
* Find app by name
2010-05-08 17:54:24 +03:00
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] name name of the app to search for
*
* @return app handle on if found; NULL if app is not found; the app handle is owned by the app supervisor object
2010-05-08 17:54:24 +03:00
*/
ladish_app_handle ladish_app_supervisor_find_app_by_name(ladish_app_supervisor_handle supervisor_handle, const char * name);
2010-05-08 17:54:24 +03:00
/**
* Find app by id (as exposed through the D-Bus interface)
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] id id of the app
*
* @return app handle on success; NULL if app is not found; the app handle is owned by the app supervisor object
*/
ladish_app_handle ladish_app_supervisor_find_app_by_id(ladish_app_supervisor_handle supervisor_handle, uint64_t id);
/**
* Search app by process id
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] pid pid of the app to search for
*
* @return app handle on if found; NULL if app is not found; the app handle is owned by the app supervisor object
*/
ladish_app_handle
ladish_app_supervisor_find_app_by_pid(
ladish_app_supervisor_handle supervisor_handle,
pid_t pid);
/**
* Search app by uuid
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] uuid uuid of the app to search for
*
* @return app handle on if found; NULL if app is not found; the app handle is owned by the app supervisor object
*/
ladish_app_handle
ladish_app_supervisor_find_app_by_uuid(
ladish_app_supervisor_handle supervisor_handle,
const uuid_t uuid);
2010-05-08 17:54:24 +03:00
/**
* The the D-Bus object path for the supervisor.
*
* @param[in] supervisor_handle supervisor object handle
*
* @retval supervisor name; the buffer is owned by the app supervisor object
*/
const char * ladish_app_supervisor_get_opath(ladish_app_supervisor_handle supervisor_handle);
2010-05-08 17:54:24 +03:00
/**
* Start an app. The app must be in stopped state.
*
* @param[in] supervisor_handle supervisor object handle
* @param[in] app_handle Handle of app to start
*
* @return success status
*/
bool ladish_app_supervisor_start_app(ladish_app_supervisor_handle supervisor_handle, ladish_app_handle app_handle);
2010-05-08 17:54:24 +03:00
/**
* Remove an app. The app must be in stopped state.
*
* @param[in] supervisor_handle supervisor object handle
2010-05-08 22:34:08 +03:00
* @param[in] app_handle Handle of app to remove
2010-05-08 17:54:24 +03:00
*/
void ladish_app_supervisor_remove_app(ladish_app_supervisor_handle supervisor_handle, ladish_app_handle app_handle);
2010-05-08 17:54:24 +03:00
/**
* Get commandline for an app.
*
* @param[in] app_handle app object handle
*
* @retval app commandline; the buffer is owned by the app supervisor object
*/
const char * ladish_app_get_commandline(ladish_app_handle app_handle);
2010-05-08 20:40:52 +03:00
/**
* Get app state
*
* @param[in] app_handle app object handle
*
* @return app state
* @retval LADISH_APP_STATE_STOPPED app is stopped (not running)
* @retval LADISH_APP_STATE_STARTED app is running and not stopping or being killed
* @retval LADISH_APP_STATE_STOPPING app is stopping
* @retval LADISH_APP_STATE_KILL app is being force killed
*/
unsigned int ladish_app_get_state(ladish_app_handle app_handle);
2010-05-08 17:54:24 +03:00
/**
* Check whether app is currently running
*
* @param[in] app_handle app object handle
*
* @retval true App is running
* @retval false App is not running
*/
bool ladish_app_is_running(ladish_app_handle app_handle);
2010-05-08 17:54:24 +03:00
/**
* Get app name
*
* @param[in] app_handle app object handle
*
* @retval app name; the buffer is owned by the app supervisor
*/
const char * ladish_app_get_name(ladish_app_handle app_handle);
2010-04-04 00:31:14 +03:00
/**
* Get app uuid
*
* @param[in] app_handle app object handle
* @param[out] uuid pointer to uuid_t storage where the app uuid will be store
*
*/
void ladish_app_get_uuid(ladish_app_handle app_handle, uuid_t uuid);
/**
* Stop an app. The app must be in started state.
*
* @param[in] app_handle Handle of app to stop
*/
void ladish_app_stop(ladish_app_handle app_handle);
/**
* Force kill an app. The app must be in started state.
*
* @param[in] app_handle Handle of app to kill
*/
void ladish_app_kill(ladish_app_handle app_handle);
/**
* Send SIGUSR1 signal to app. The app must be in started state.
*
* @param[in] app_handle Handle of app to send signal to
*/
void ladish_app_save_L1(ladish_app_handle app_handle);
/**
* Associate pid with app.
*
* @param[in] app_handle Handle of app
* @param[in] pid PID to associate with the app
*/
void ladish_app_add_pid(ladish_app_handle app_handle, pid_t pid);
/**
* Deassociate pid with app.
*
* @param[in] app_handle Handle of app
* @param[in] pid PID to deassociate with the app
*/
void ladish_app_del_pid(ladish_app_handle app_handle, pid_t pid);
2010-05-08 17:54:24 +03:00
/**
* D-Bus interface descriptor for the app supervisor interface. The call context must be a ::ladish_app_supervisor_handle
*/
2009-12-26 21:44:09 +02:00
extern const struct dbus_interface_descriptor g_iface_app_supervisor;
2009-11-30 01:22:58 +02:00
#endif /* #ifndef APP_SUPERVISOR_H__712E6589_DCB1_4CE9_9812_4F250D55E8A2__INCLUDED */