/* * Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. * Copyright (c) 2015 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2016-2020 Intel, Inc. All rights reserved. * Copyright (c) 2021-2022 Nanook Consulting. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #ifndef PMIX_PDL_BASE_H #define PMIX_PDL_BASE_H #include "src/include/pmix_config.h" #include "src/mca/pdl/pdl.h" #include "src/util/pmix_environ.h" #include "src/mca/base/pmix_base.h" BEGIN_C_DECLS /** * Globals */ PMIX_EXPORT extern pmix_mca_base_framework_t pmix_pdl_base_framework; extern pmix_pdl_base_component_t *pmix_pdl_base_selected_component; extern pmix_pdl_base_module_t *pmix_pdl; /** * Initialize the PDL MCA framework * * @retval PMIX_SUCCESS Upon success * @retval PMIX_ERROR Upon failures * * This function is invoked during pmix_init(); */ int pmix_pdl_base_open(pmix_mca_base_open_flag_t flags); /** * Select an available component. * * @retval PMIX_SUCCESS Upon Success * @retval PMIX_NOT_FOUND If no component can be selected * @retval PMIX_ERROR Upon other failure * */ int pmix_pdl_base_select(void); /** * Finalize the PDL MCA framework * * @retval PMIX_SUCCESS Upon success * @retval PMIX_ERROR Upon failures * * This function is invoked during pmix_finalize(); */ int pmix_pdl_base_close(void); /** * Open a DSO * * (see pmix_pdl_base_module_open_ft_t in pmix/mca/pdl/pdl.h for * documentation of this function) */ int pmix_pdl_open(const char *fname, bool use_ext, bool private_namespace, pmix_pdl_handle_t **handle, char **err_msg); /** * Lookup a symbol in a DSO * * (see pmix_pdl_base_module_lookup_ft_t in pmix/mca/pdl/pdl.h for * documentation of this function) */ int pmix_pdl_lookup(pmix_pdl_handle_t *handle, const char *symbol, void **ptr, char **err_msg); /** * Close a DSO * * (see pmix_pdl_base_module_close_ft_t in pmix/mca/pdl/pdl.h for * documentation of this function) */ int pmix_pdl_close(pmix_pdl_handle_t *handle); /** * Iterate over files in a path * * (see pmix_pdl_base_module_foreachfile_ft_t in pmix/mca/pdl/pdl.h for * documentation of this function) */ int pmix_pdl_foreachfile(const char *search_path, int (*cb_func)(const char *filename, void *context), void *context); END_C_DECLS #endif /* PMIX_PDL_BASE_H */