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
|
/*
* Copyright 2024 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU Lesser General Public License
* version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
*/
#include <crm_internal.h>
#include <stdio.h> // NULL
#include <stdbool.h> // bool, false
#include <crm/common/scheduler.h>
#include <crm/common/scheduler_internal.h>
/*!
* \internal
* \brief Free a resource object
*
* \param[in,out] user_data Resource object to free
*/
void
pcmk__free_resource(gpointer user_data)
{
pcmk_resource_t *rsc = user_data;
if (rsc != NULL) {
rsc->priv->fns->free(rsc);
}
}
/*!
* \internal
* \brief Get a resource's ID
*
* \param[in] rsc Resource to check
*
* \return ID of \p rsc (or NULL if \p rsc is NULL)
*/
const char *
pcmk_resource_id(const pcmk_resource_t *rsc)
{
return (rsc == NULL)? NULL : rsc->id;
}
/*!
* \internal
* \brief Check whether a resource is managed by the cluster
*
* \param[in] rsc Resource to check
*
* \return true if \p rsc is managed, otherwise false
*/
bool
pcmk_resource_is_managed(const pcmk_resource_t *rsc)
{
return (rsc == NULL)? false : pcmk_is_set(rsc->flags, pcmk__rsc_managed);
}
/*!
* \brief Get readable description of a multiply-active recovery type
*
* \param[in] rsc Resource with recovery type to check
*
* \return Static string describing recovery type of \p rsc
*/
const char *
pcmk__multiply_active_text(const pcmk_resource_t *rsc)
{
switch (rsc->priv->multiply_active_policy) {
case pcmk__multiply_active_stop:
return "shutting it down";
case pcmk__multiply_active_restart:
return "attempting recovery";
case pcmk__multiply_active_block:
return "waiting for an administrator";
case pcmk__multiply_active_unexpected:
return "stopping unexpected instances";
}
return "Unknown";
}
|