2004-12-21 22:16:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mca/mca.h"
|
|
|
|
#include "mca/base/base.h"
|
|
|
|
#include "mca/base/mca_base_param.h"
|
|
|
|
#include "mca/iof/iof.h"
|
|
|
|
#include "mca/iof/base/base.h"
|
2005-01-12 20:51:34 +00:00
|
|
|
#include "mca/iof/base/iof_base_header.h"
|
|
|
|
#include "mca/iof/base/iof_base_fragment.h"
|
2004-12-21 22:16:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following file was created by configure. It contains extern
|
|
|
|
* statements and the definition of an array of pointers to each
|
2005-03-14 20:57:21 +00:00
|
|
|
* component's public orte_base_component_t struct.
|
2004-12-21 22:16:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mca/iof/base/static-components.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
2005-01-12 20:51:34 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
orte_iof_base_t orte_iof_base;
|
2004-12-21 22:16:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function for finding and opening either all MCA components, or the one
|
|
|
|
* that was specifically requested via a MCA parameter.
|
|
|
|
*/
|
2005-03-14 20:57:21 +00:00
|
|
|
int orte_iof_base_open(void)
|
2004-12-21 22:16:09 +00:00
|
|
|
{
|
2005-01-12 20:51:34 +00:00
|
|
|
int id;
|
|
|
|
int int_value;
|
|
|
|
char* str_value;
|
|
|
|
|
|
|
|
/* Initialize globals */
|
2005-03-14 20:57:21 +00:00
|
|
|
OBJ_CONSTRUCT(&orte_iof_base.iof_components_opened, ompi_list_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_iof_base.iof_endpoints, ompi_list_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_iof_base.iof_lock, ompi_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_iof_base.iof_condition, ompi_condition_t);
|
|
|
|
OBJ_CONSTRUCT(&orte_iof_base.iof_fragments, ompi_free_list_t);
|
|
|
|
orte_iof_base.iof_waiting = 0;
|
2005-03-18 03:43:59 +00:00
|
|
|
orte_iof_base.iof_component_selected = false;
|
2005-01-12 20:51:34 +00:00
|
|
|
|
|
|
|
/* lookup common parameters */
|
2005-03-14 20:57:21 +00:00
|
|
|
id = mca_base_param_register_int("iof","base","window_size",NULL,ORTE_IOF_BASE_MSG_MAX << 1);
|
2005-01-12 20:51:34 +00:00
|
|
|
mca_base_param_lookup_int(id,&int_value);
|
2005-03-14 20:57:21 +00:00
|
|
|
orte_iof_base.iof_window_size = int_value;
|
2005-01-12 20:51:34 +00:00
|
|
|
|
|
|
|
id = mca_base_param_register_string("iof","base","service",NULL,"0.0.0");
|
2005-01-13 15:27:28 +00:00
|
|
|
mca_base_param_lookup_string(id,&str_value);
|
2005-03-14 20:57:21 +00:00
|
|
|
orte_ns.convert_string_to_process_name(&orte_iof_base.iof_service, str_value);
|
2005-01-12 20:51:34 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
/* Debugging / verbose output */
|
|
|
|
|
|
|
|
id = mca_base_param_register_int("iof", "base", "verbose", NULL, 0);
|
|
|
|
mca_base_param_lookup_int(id, &int_value);
|
|
|
|
if (int_value != 0) {
|
|
|
|
orte_iof_base.iof_output = ompi_output_open(NULL);
|
|
|
|
} else {
|
|
|
|
orte_iof_base.iof_output = -1;
|
|
|
|
}
|
|
|
|
|
2005-01-12 20:51:34 +00:00
|
|
|
/* initialize free list */
|
|
|
|
ompi_free_list_init(
|
2005-03-14 20:57:21 +00:00
|
|
|
&orte_iof_base.iof_fragments,
|
|
|
|
sizeof(orte_iof_base_frag_t),
|
|
|
|
OBJ_CLASS(orte_iof_base_frag_t),
|
2005-01-12 20:51:34 +00:00
|
|
|
0, /* number to initially allocate */
|
|
|
|
-1, /* maximum elements to allocate */
|
|
|
|
32, /* number per allocation */
|
|
|
|
NULL); /* optional memory pool */
|
2004-12-21 22:16:09 +00:00
|
|
|
|
|
|
|
|
2005-01-12 20:51:34 +00:00
|
|
|
/* Open up all available components */
|
|
|
|
if (OMPI_SUCCESS !=
|
|
|
|
mca_base_components_open("iof", 0, mca_iof_base_static_components,
|
2005-03-14 20:57:21 +00:00
|
|
|
&orte_iof_base.iof_components_opened)) {
|
2005-01-12 20:51:34 +00:00
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
return OMPI_SUCCESS;
|
2004-12-21 22:16:09 +00:00
|
|
|
}
|
|
|
|
|