1
1
openmpi/orte/runtime/data_type_support/orte_dt_copy_fns.c

370 lines
9.0 KiB
C

/*
* Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2011 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.
* Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2011-2013 Los Alamos National Security, LLC.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "orte_config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "opal/util/argv.h"
#include "orte/mca/errmgr/errmgr.h"
#include "orte/runtime/data_type_support/orte_dt_support.h"
/* ORTE_STD_CNTR */
int orte_dt_copy_std_cntr(orte_std_cntr_t **dest, orte_std_cntr_t *src, opal_data_type_t type)
{
orte_std_cntr_t *val;
val = (orte_std_cntr_t*)malloc(sizeof(orte_std_cntr_t));
if (NULL == val) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*val = *src;
*dest = val;
return ORTE_SUCCESS;
}
/* PROCESS NAME */
int orte_dt_copy_name(orte_process_name_t **dest, orte_process_name_t *src, opal_data_type_t type)
{
orte_process_name_t *val;
val = (orte_process_name_t*)malloc(sizeof(orte_process_name_t));
if (NULL == val) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
val->jobid = src->jobid;
val->vpid = src->vpid;
*dest = val;
return ORTE_SUCCESS;
}
/*
* JOBID
*/
int orte_dt_copy_jobid(orte_jobid_t **dest, orte_jobid_t *src, opal_data_type_t type)
{
orte_jobid_t *val;
val = (orte_jobid_t*)malloc(sizeof(orte_jobid_t));
if (NULL == val) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*val = *src;
*dest = val;
return ORTE_SUCCESS;
}
/*
* VPID
*/
int orte_dt_copy_vpid(orte_vpid_t **dest, orte_vpid_t *src, opal_data_type_t type)
{
orte_vpid_t *val;
val = (orte_vpid_t*)malloc(sizeof(orte_vpid_t));
if (NULL == val) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*val = *src;
*dest = val;
return ORTE_SUCCESS;
}
/**
* JOB
*/
int orte_dt_copy_job(orte_job_t **dest, orte_job_t *src, opal_data_type_t type)
{
(*dest) = src;
OBJ_RETAIN(src);
return ORTE_SUCCESS;
}
/**
* NODE
*/
int orte_dt_copy_node(orte_node_t **dest, orte_node_t *src, opal_data_type_t type)
{
(*dest) = src;
OBJ_RETAIN(src);
return ORTE_SUCCESS;
}
/**
* PROC
*/
int orte_dt_copy_proc(orte_proc_t **dest, orte_proc_t *src, opal_data_type_t type)
{
(*dest) = src;
OBJ_RETAIN(src);
return ORTE_SUCCESS;
}
/*
* APP CONTEXT
*/
int orte_dt_copy_app_context(orte_app_context_t **dest, orte_app_context_t *src, opal_data_type_t type)
{
/* create the new object */
*dest = OBJ_NEW(orte_app_context_t);
if (NULL == *dest) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
/* copy data into it */
(*dest)->idx = src->idx;
if (NULL != src->app) {
(*dest)->app = strdup(src->app);
}
(*dest)->num_procs = src->num_procs;
(*dest)->argv = opal_argv_copy(src->argv);
(*dest)->env = opal_argv_copy(src->env);
if (NULL != src->cwd) {
(*dest)->cwd = strdup(src->cwd);
}
(*dest)->user_specified_cwd = src->user_specified_cwd;
if (NULL != src->hostfile) {
(*dest)->hostfile = strdup(src->hostfile);
}
if (NULL != src->add_hostfile) {
(*dest)->add_hostfile = strdup(src->add_hostfile);
}
(*dest)->add_host = opal_argv_copy(src->add_host);
(*dest)->dash_host = opal_argv_copy(src->dash_host);
if (NULL != src->prefix_dir) {
(*dest)->prefix_dir = strdup(src->prefix_dir);
}
(*dest)->preload_binary = src->preload_binary;
if( NULL != src->preload_files) {
(*dest)->preload_files = strdup(src->preload_files);
}
(*dest)->recovery_defined = src->recovery_defined;
(*dest)->max_restarts = src->max_restarts;
#if OPAL_ENABLE_FT_CR == 1
if( NULL != src->sstore_load) {
(*dest)->sstore_load = strdup(src->sstore_load);
}
#endif
return ORTE_SUCCESS;
}
int orte_dt_copy_proc_state(orte_proc_state_t **dest, orte_proc_state_t *src, opal_data_type_t type)
{
orte_proc_state_t *ps;
ps = (orte_proc_state_t*)malloc(sizeof(orte_proc_state_t));
if (NULL == ps) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*ps = *src;
*dest = ps;
return ORTE_SUCCESS;
}
int orte_dt_copy_job_state(orte_job_state_t **dest, orte_job_state_t *src, opal_data_type_t type)
{
orte_job_state_t *ps;
ps = (orte_job_state_t*)malloc(sizeof(orte_job_state_t));
if (NULL == ps) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*ps = *src;
*dest = ps;
return ORTE_SUCCESS;
}
int orte_dt_copy_node_state(orte_node_state_t **dest, orte_node_state_t *src, opal_data_type_t type)
{
orte_node_state_t *ps;
ps = (orte_node_state_t*)malloc(sizeof(orte_node_state_t));
if (NULL == ps) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*ps = *src;
*dest = ps;
return ORTE_SUCCESS;
}
int orte_dt_copy_exit_code(orte_exit_code_t **dest, orte_exit_code_t *src, opal_data_type_t type)
{
orte_exit_code_t *ps;
ps = (orte_exit_code_t*)malloc(sizeof(orte_exit_code_t));
if (NULL == ps) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
*ps = *src;
*dest = ps;
return ORTE_SUCCESS;
}
/*
* JOB_MAP
*/
int orte_dt_copy_map(orte_job_map_t **dest, orte_job_map_t *src, opal_data_type_t type)
{
orte_std_cntr_t i;
if (NULL == src) {
*dest = NULL;
return ORTE_SUCCESS;
}
/* create the new object */
*dest = OBJ_NEW(orte_job_map_t);
if (NULL == *dest) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
/* copy data into it */
(*dest)->mapping = src->mapping;
(*dest)->ranking = src->ranking;
#if OPAL_HAVE_HWLOC
(*dest)->binding = src->binding;
#endif
if (NULL != src->ppr) {
(*dest)->ppr = strdup(src->ppr);
}
(*dest)->display_map = src->display_map;
(*dest)->num_new_daemons = src->num_new_daemons;
(*dest)->daemon_vpid_start = src->daemon_vpid_start;
(*dest)->num_nodes = src->num_nodes;
/* copy the pointer array - have to do this manually
* as no dss.copy function is setup for that object
*/
(*dest)->nodes->lowest_free = src->nodes->lowest_free;
(*dest)->nodes->number_free = src->nodes->number_free;
(*dest)->nodes->size = src->nodes->size;
(*dest)->nodes->max_size = src->nodes->max_size;
(*dest)->nodes->block_size = src->nodes->block_size;
for (i=0; i < src->nodes->size; i++) {
(*dest)->nodes->addr[i] = src->nodes->addr[i];
}
return ORTE_SUCCESS;
}
/*
* RML tag
*/
int orte_dt_copy_tag(orte_rml_tag_t **dest, orte_rml_tag_t *src, opal_data_type_t type)
{
orte_rml_tag_t *tag;
if (NULL == src) {
*dest = NULL;
return ORTE_SUCCESS;
}
/* create the new space */
tag = (orte_rml_tag_t*)malloc(sizeof(orte_rml_tag_t));
if (NULL == tag) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
/* copy data into it */
*tag = *src;
*dest = tag;
return ORTE_SUCCESS;
}
int orte_dt_copy_daemon_cmd(orte_daemon_cmd_flag_t **dest, orte_daemon_cmd_flag_t *src, opal_data_type_t type)
{
size_t datasize;
datasize = sizeof(orte_daemon_cmd_flag_t);
*dest = (orte_daemon_cmd_flag_t*)malloc(datasize);
if (NULL == *dest) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
memcpy(*dest, src, datasize);
return ORTE_SUCCESS;
}
int orte_dt_copy_iof_tag(orte_iof_tag_t **dest, orte_iof_tag_t *src, opal_data_type_t type)
{
size_t datasize;
datasize = sizeof(orte_iof_tag_t);
*dest = (orte_iof_tag_t*)malloc(datasize);
if (NULL == *dest) {
ORTE_ERROR_LOG(ORTE_ERR_OUT_OF_RESOURCE);
return ORTE_ERR_OUT_OF_RESOURCE;
}
memcpy(*dest, src, datasize);
return ORTE_SUCCESS;
}