2005-03-31 15:47:37 +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$
|
|
|
|
*/
|
2005-05-01 00:54:12 +00:00
|
|
|
#include "orte_config.h"
|
2005-03-31 15:47:37 +00:00
|
|
|
#include <errno.h>
|
2005-04-11 18:43:57 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2005-03-31 15:47:37 +00:00
|
|
|
#include <unistd.h>
|
2005-04-11 05:07:57 +00:00
|
|
|
#endif
|
2005-03-31 15:47:37 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "include/constants.h"
|
2005-05-01 00:54:12 +00:00
|
|
|
#include "dps/dps.h"
|
2005-03-31 15:47:37 +00:00
|
|
|
#include "mca/rmgr/base/base.h"
|
|
|
|
#include "mca/errmgr/errmgr.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int orte_rmgr_base_pack_cmd(orte_buffer_t* buffer, orte_rmgr_cmd_t cmd, orte_jobid_t jobid)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
rc = orte_dps.pack(buffer, &cmd, 1, ORTE_RMGR_CMD);
|
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = orte_dps.pack(buffer, &jobid, 1, ORTE_JOBID);
|
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int orte_rmgr_base_pack_create_cmd(
|
|
|
|
orte_buffer_t* buffer,
|
|
|
|
orte_app_context_t** context,
|
|
|
|
size_t num_context)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
orte_rmgr_cmd_t cmd = ORTE_RMGR_CMD_CREATE;
|
|
|
|
|
|
|
|
rc = orte_dps.pack(buffer, &cmd, 1, ORTE_RMGR_CMD);
|
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-05-19 16:16:50 +00:00
|
|
|
rc = orte_dps.pack(buffer, &num_context, 1, ORTE_SIZE);
|
2005-03-31 15:47:37 +00:00
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
rc = orte_dps.pack(buffer, context, num_context, ORTE_APP_CONTEXT);
|
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int orte_rmgr_base_pack_terminate_proc_cmd(
|
|
|
|
orte_buffer_t* buffer,
|
|
|
|
const orte_process_name_t* name)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
orte_rmgr_cmd_t cmd = ORTE_RMGR_CMD_CREATE;
|
|
|
|
|
|
|
|
rc = orte_dps.pack(buffer, &cmd, 1, ORTE_RMGR_CMD);
|
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = orte_dps.pack(buffer, (void*)name, 1, ORTE_NAME);
|
|
|
|
if(ORTE_SUCCESS != rc) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int orte_rmgr_base_unpack_rsp(
|
|
|
|
orte_buffer_t* buffer)
|
|
|
|
{
|
|
|
|
int32_t rc;
|
|
|
|
size_t cnt = 1;
|
2005-04-07 20:01:46 +00:00
|
|
|
if(ORTE_SUCCESS != (rc = orte_dps.unpack(buffer,&rc,&cnt,ORTE_INT32))) {
|
2005-03-31 15:47:37 +00:00
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int orte_rmgr_base_unpack_create_rsp(
|
|
|
|
orte_buffer_t* buffer,
|
|
|
|
orte_jobid_t* jobid)
|
|
|
|
{
|
|
|
|
int32_t rc;
|
|
|
|
size_t cnt;
|
|
|
|
|
|
|
|
cnt = 1;
|
|
|
|
if(ORTE_SUCCESS != (rc = orte_dps.unpack(buffer,jobid,&cnt,ORTE_JOBID))) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
cnt = 1;
|
|
|
|
if(ORTE_SUCCESS != (rc = orte_dps.unpack(buffer,&rc,&cnt,ORTE_INT32))) {
|
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|