root/include/crm/pengine/status_compat.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. pe_rsc_is_clone
  2. pe_rsc_is_unique_clone
  3. pe_rsc_is_anon_clone
  4. pe_rsc_is_bundled

   1 /*
   2  * Copyright 2004-2024 the Pacemaker project contributors
   3  *
   4  * The version control history for this file may have further details.
   5  *
   6  * This source code is licensed under the GNU Lesser General Public License
   7  * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
   8  */
   9 
  10 #ifndef PCMK__CRM_PENGINE_STATUS_COMPAT__H
  11 #define PCMK__CRM_PENGINE_STATUS_COMPAT__H
  12 
  13 #include <stdbool.h>                // bool
  14 #include <crm/common/util.h>        // pcmk_is_set()
  15 #include <crm/common/scheduler.h>   // pcmk_resource_t, pcmk_rsc_unique, etc.
  16 
  17 #ifdef __cplusplus
  18 extern "C" {
  19 #endif
  20 
  21 /**
  22  * \file
  23  * \brief Deprecated Pacemaker scheduler utilities
  24  * \ingroup pengine
  25  * \deprecated Do not include this header directly. The utilities in this
  26  *             header, and the header itself, will be removed in a future
  27  *             release.
  28  */
  29 
  30 // NOTE: sbd (as of at least 1.5.2) uses this
  31 //! \deprecated Use pcmk_find_node() with scheduler object instead
  32 pcmk_node_t *pe_find_node(const GList *node_list, const char *node_name);
  33 
  34 //! \deprecated Compare variant directly instead
  35 static inline bool
  36 pe_rsc_is_clone(const pcmk_resource_t *rsc)
     /* [previous][next][first][last][top][bottom][index][help] */
  37 {
  38     return (rsc != NULL) && (rsc->variant == pcmk_rsc_variant_clone);
  39 }
  40 
  41 //! \deprecated Compare variant and flags directly
  42 static inline bool
  43 pe_rsc_is_unique_clone(const pcmk_resource_t *rsc)
     /* [previous][next][first][last][top][bottom][index][help] */
  44 {
  45     return pe_rsc_is_clone(rsc) && pcmk_is_set(rsc->flags, pcmk_rsc_unique);
  46 }
  47 
  48 //! \deprecated Compare variant and flags directly
  49 static inline bool
  50 pe_rsc_is_anon_clone(const pcmk_resource_t *rsc)
     /* [previous][next][first][last][top][bottom][index][help] */
  51 {
  52     return pe_rsc_is_clone(rsc) && !pcmk_is_set(rsc->flags, pcmk_rsc_unique);
  53 }
  54 
  55 //! \deprecated Compare ancestor variants directly
  56 static inline bool
  57 pe_rsc_is_bundled(const pcmk_resource_t *rsc)
     /* [previous][next][first][last][top][bottom][index][help] */
  58 {
  59     if (rsc == NULL) {
  60         return false;
  61     }
  62     while (rsc->parent != NULL) {
  63         rsc = rsc->parent;
  64     }
  65     return rsc->variant == pcmk_rsc_variant_bundle;
  66 }
  67 
  68 #ifdef __cplusplus
  69 }
  70 #endif
  71 
  72 #endif // PCMK__CRM_PENGINE_STATUS_COMPAT__H

/* [previous][next][first][last][top][bottom][index][help] */