2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-23 07:32:36 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file:
|
|
|
|
*
|
|
|
|
* Populates global structure with system-specific information.
|
|
|
|
*
|
|
|
|
* Notes: add limits.h, compute size of integer and other types via sizeof(type)*CHAR_BIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-08-23 07:32:36 +04:00
|
|
|
#ifndef _ORTE_UNIV_INFO_H_
|
|
|
|
#define _ORTE_UNIV_INFO_H_
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "orte_config.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_UTSNAME_H
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
2006-06-29 01:03:31 +04:00
|
|
|
#include "opal/class/opal_object.h"
|
|
|
|
#include "opal/class/opal_list.h"
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2005-09-03 01:07:21 +04:00
|
|
|
|
2006-08-23 07:32:36 +04:00
|
|
|
/* Some states for the orte_universe_t.state field */
|
|
|
|
enum orte_universe_state_t {
|
|
|
|
ORTE_UNIVERSE_STATE_PRE_INIT, /* Before initialization */
|
|
|
|
ORTE_UNIVERSE_STATE_INIT, /* In initalization */
|
|
|
|
ORTE_UNIVERSE_STATE_RUNNING, /* After initalization */
|
|
|
|
ORTE_UNIVERSE_STATE_FINALIZE /* In Finalization */
|
|
|
|
};
|
|
|
|
typedef enum orte_universe_state_t orte_universe_state_t;
|
|
|
|
|
|
|
|
/* Define the info structure underlying the Open MPI universe system
|
|
|
|
* instanced in ompi_rte_init.c */
|
2006-06-29 01:03:31 +04:00
|
|
|
|
2006-08-23 07:32:36 +04:00
|
|
|
struct orte_universe_t {
|
|
|
|
/** This is an object, so it must have a super */
|
|
|
|
opal_list_item_t super;
|
|
|
|
orte_universe_state_t state; /**< Indicates state of the universe */
|
|
|
|
char *name;
|
2006-11-06 18:28:38 +03:00
|
|
|
bool default_name; /**< Indicates that universe name was not provided */
|
2006-08-23 07:32:36 +04:00
|
|
|
char *host;
|
|
|
|
char *uid;
|
|
|
|
bool persistence;
|
|
|
|
char *scope;
|
|
|
|
bool console;
|
|
|
|
char *seed_uri; /**< OOB contact info for universe seed */
|
|
|
|
bool console_connected; /**< Indicates if console is connected */
|
|
|
|
char *scriptfile; /**< Name of file containing commands to be executed */
|
|
|
|
};
|
|
|
|
typedef struct orte_universe_t orte_universe_t;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2006-08-23 07:32:36 +04:00
|
|
|
ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_universe_t);
|
2006-06-29 01:03:31 +04:00
|
|
|
|
2006-08-20 19:54:04 +04:00
|
|
|
ORTE_DECLSPEC extern orte_universe_t orte_universe_info;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \internal
|
|
|
|
*
|
|
|
|
* Discover the universe info from the environment
|
|
|
|
*
|
|
|
|
* Called from \c orte_init.
|
|
|
|
*
|
|
|
|
* @retval ORTE_SUCCESS If values are successfully determined.
|
|
|
|
* @retval ORTE_ERROR If the system does not provide the requested information.
|
|
|
|
*/
|
2006-08-20 19:54:04 +04:00
|
|
|
ORTE_DECLSPEC int orte_univ_info(void);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2006-08-20 19:54:04 +04:00
|
|
|
ORTE_DECLSPEC int orte_univ_info_finalize(void);
|
2005-03-19 02:40:08 +03:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|