2013-09-27 01:56:20 +04:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2008-02-28 04:57:57 +03:00
|
|
|
/*
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
2008-02-28 04:57:57 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2015-03-06 06:50:44 +03:00
|
|
|
* Copyright (c) 2013-2015 Los Alamos National Security, LLC. All rights
|
2013-09-27 01:56:20 +04:00
|
|
|
* reserved.
|
2008-02-28 04:57:57 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* Dynamic Process Management Interface
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OMPI_MCA_PUBSUB_H
|
|
|
|
#define OMPI_MCA_PUBSUB_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
2015-03-06 06:50:44 +03:00
|
|
|
#include "ompi/mca/mca.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "ompi/info/info.h"
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize a module
|
|
|
|
*/
|
|
|
|
typedef int (*ompi_pubsub_base_module_init_fn_t)(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Publish a data item
|
|
|
|
*/
|
2013-09-27 01:56:20 +04:00
|
|
|
typedef int (*ompi_pubsub_base_module_publish_fn_t)(const char *service, ompi_info_t *info, const char *port);
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpublish a data item
|
|
|
|
*/
|
2013-09-27 01:56:20 +04:00
|
|
|
typedef int (*ompi_pubsub_base_module_unpublish_fn_t)(const char *service, ompi_info_t *info);
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup a data item
|
|
|
|
*/
|
2013-09-27 01:56:20 +04:00
|
|
|
typedef char* (*ompi_pubsub_base_module_lookup_fn_t)(const char *service, ompi_info_t *info);
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Finalize a module
|
|
|
|
*/
|
|
|
|
typedef int (*ompi_pubsub_base_module_finalize_fn_t)(void);
|
|
|
|
|
|
|
|
/**
|
2008-07-29 02:40:57 +04:00
|
|
|
* Structure for PUBSUB modules
|
2008-02-28 04:57:57 +03:00
|
|
|
*/
|
|
|
|
struct ompi_pubsub_base_module_1_0_0_t {
|
|
|
|
/** Initialization Function */
|
|
|
|
ompi_pubsub_base_module_init_fn_t init;
|
|
|
|
/* Publish */
|
|
|
|
ompi_pubsub_base_module_publish_fn_t publish;
|
|
|
|
/* Unpublish */
|
|
|
|
ompi_pubsub_base_module_unpublish_fn_t unpublish;
|
|
|
|
/* Lookup */
|
|
|
|
ompi_pubsub_base_module_lookup_fn_t lookup;
|
|
|
|
/* finalize */
|
|
|
|
ompi_pubsub_base_module_finalize_fn_t finalize;
|
|
|
|
};
|
|
|
|
typedef struct ompi_pubsub_base_module_1_0_0_t ompi_pubsub_base_module_1_0_0_t;
|
|
|
|
typedef struct ompi_pubsub_base_module_1_0_0_t ompi_pubsub_base_module_t;
|
|
|
|
|
|
|
|
OMPI_DECLSPEC extern ompi_pubsub_base_module_t ompi_pubsub;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-29 02:40:57 +04:00
|
|
|
* Structure for PUBSUB components.
|
2008-02-28 04:57:57 +03:00
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
struct ompi_pubsub_base_component_2_0_0_t {
|
2008-02-28 04:57:57 +03:00
|
|
|
/** MCA base component */
|
2008-05-06 22:08:45 +04:00
|
|
|
mca_base_component_t base_version;
|
2008-02-28 04:57:57 +03:00
|
|
|
/** MCA base data */
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_base_component_data_t base_data;
|
2008-02-28 04:57:57 +03:00
|
|
|
};
|
2008-07-29 02:40:57 +04:00
|
|
|
typedef struct ompi_pubsub_base_component_2_0_0_t ompi_pubsub_base_component_2_0_0_t;
|
|
|
|
typedef struct ompi_pubsub_base_component_2_0_0_t ompi_pubsub_base_component_t;
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
/**
|
2008-07-29 02:40:57 +04:00
|
|
|
* Macro for use in components that are of type PUBSUB
|
2008-02-28 04:57:57 +03:00
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
#define OMPI_PUBSUB_BASE_VERSION_2_0_0 \
|
2015-03-06 06:50:44 +03:00
|
|
|
OMPI_MCA_BASE_VERSION_2_1_0("pubsub", 2, 0, 0)
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
|
|
|
#endif /* OMPI_MCA_PUBSUB_H */
|