2014-07-03 22:56:46 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
#include "opal/constants.h"
|
|
|
|
|
|
|
|
#include "opal/class/opal_list.h"
|
|
|
|
#include "opal/mca/event/event.h"
|
|
|
|
#include "opal/threads/threads.h"
|
|
|
|
#include "opal/util/error.h"
|
|
|
|
#include "opal/util/fd.h"
|
|
|
|
|
|
|
|
#include "opal/runtime/opal_progress_threads.h"
|
|
|
|
|
|
|
|
/* create a tracking object for progress threads */
|
|
|
|
typedef struct {
|
|
|
|
opal_list_item_t super;
|
|
|
|
char *name;
|
|
|
|
opal_event_base_t *ev_base;
|
|
|
|
bool block_active;
|
|
|
|
opal_event_t block;
|
|
|
|
bool engine_defined;
|
|
|
|
opal_thread_t engine;
|
|
|
|
int pipe[2];
|
|
|
|
} opal_progress_tracker_t;
|
|
|
|
static void trkcon(opal_progress_tracker_t *p)
|
|
|
|
{
|
|
|
|
p->name = NULL;
|
|
|
|
p->ev_base = NULL;
|
|
|
|
p->block_active = false;
|
|
|
|
p->engine_defined = false;
|
|
|
|
p->pipe[0] = -1;
|
|
|
|
p->pipe[1] = -1;
|
|
|
|
}
|
|
|
|
static void trkdes(opal_progress_tracker_t *p)
|
|
|
|
{
|
|
|
|
if (NULL != p->name) {
|
|
|
|
free(p->name);
|
|
|
|
}
|
|
|
|
if (p->block_active) {
|
|
|
|
opal_event_del(&p->block);
|
|
|
|
}
|
|
|
|
if (NULL != p->ev_base) {
|
|
|
|
opal_event_base_free(p->ev_base);
|
|
|
|
}
|
|
|
|
if (0 <= p->pipe[0]) {
|
|
|
|
close(p->pipe[0]);
|
|
|
|
}
|
|
|
|
if (0 <= p->pipe[1]) {
|
|
|
|
close(p->pipe[1]);
|
|
|
|
}
|
|
|
|
if (p->engine_defined) {
|
|
|
|
OBJ_DESTRUCT(&p->engine);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static OBJ_CLASS_INSTANCE(opal_progress_tracker_t,
|
|
|
|
opal_list_item_t,
|
|
|
|
trkcon, trkdes);
|
|
|
|
|
|
|
|
static opal_list_t tracking;
|
|
|
|
static bool inited = false;
|
|
|
|
static void wakeup(int fd, short args, void *cbdata)
|
|
|
|
{
|
2014-07-04 18:55:51 +04:00
|
|
|
opal_progress_tracker_t *trk = (opal_progress_tracker_t*)cbdata;
|
|
|
|
|
|
|
|
/* if this event fired, then the blocker event will
|
|
|
|
* be deleted from the event base by libevent, so flag
|
|
|
|
* it so we don't try to delete it again */
|
|
|
|
trk->block_active = false;
|
2014-07-03 22:56:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
opal_event_base_t *opal_start_progress_thread(char *name,
|
|
|
|
opal_thread_fn_t func,
|
|
|
|
bool create_block)
|
|
|
|
{
|
|
|
|
opal_progress_tracker_t *trk;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
trk = OBJ_NEW(opal_progress_tracker_t);
|
|
|
|
trk->name = strdup(name);
|
|
|
|
if (NULL == (trk->ev_base = opal_event_base_create())) {
|
|
|
|
OPAL_ERROR_LOG(OPAL_ERR_OUT_OF_RESOURCE);
|
|
|
|
OBJ_RELEASE(trk);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (create_block) {
|
|
|
|
/* add an event it can block on */
|
|
|
|
if (0 > pipe(trk->pipe)) {
|
|
|
|
OPAL_ERROR_LOG(OPAL_ERR_IN_ERRNO);
|
|
|
|
OBJ_RELEASE(trk);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* Make sure the pipe FDs are set to close-on-exec so that
|
|
|
|
they don't leak into children */
|
|
|
|
if (opal_fd_set_cloexec(trk->pipe[0]) != OPAL_SUCCESS ||
|
|
|
|
opal_fd_set_cloexec(trk->pipe[1]) != OPAL_SUCCESS) {
|
|
|
|
OPAL_ERROR_LOG(OPAL_ERR_IN_ERRNO);
|
|
|
|
OBJ_RELEASE(trk);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-07-04 18:55:51 +04:00
|
|
|
opal_event_set(trk->ev_base, &trk->block, trk->pipe[0], OPAL_EV_READ, wakeup, trk);
|
2014-07-03 22:56:46 +04:00
|
|
|
opal_event_add(&trk->block, 0);
|
|
|
|
trk->block_active = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* construct the thread object */
|
|
|
|
OBJ_CONSTRUCT(&trk->engine, opal_thread_t);
|
|
|
|
trk->engine_defined = true;
|
|
|
|
/* fork off a thread to progress it */
|
|
|
|
trk->engine.t_run = func;
|
|
|
|
if (OPAL_SUCCESS != (rc = opal_thread_start(&trk->engine))) {
|
|
|
|
OPAL_ERROR_LOG(rc);
|
|
|
|
OBJ_RELEASE(trk);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!inited) {
|
|
|
|
OBJ_CONSTRUCT(&tracking, opal_list_t);
|
|
|
|
inited = true;
|
|
|
|
}
|
|
|
|
opal_list_append(&tracking, &trk->super);
|
|
|
|
return trk->ev_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opal_stop_progress_thread(char *name, bool cleanup)
|
|
|
|
{
|
|
|
|
opal_progress_tracker_t *trk;
|
2014-07-04 18:55:51 +04:00
|
|
|
int i;
|
2014-07-03 22:56:46 +04:00
|
|
|
|
|
|
|
if (!inited) {
|
|
|
|
/* nothing we can do */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find the specified engine */
|
|
|
|
OPAL_LIST_FOREACH(trk, &tracking, opal_progress_tracker_t) {
|
|
|
|
if (0 == strcmp(name, trk->name)) {
|
2014-07-04 18:55:51 +04:00
|
|
|
/* if present, use the block to break it loose just in
|
|
|
|
* case the thread is blocking in a call to select for
|
|
|
|
* a long time */
|
|
|
|
if (trk->block_active) {
|
|
|
|
i=1;
|
|
|
|
write(trk->pipe[1], &i, sizeof(int));
|
|
|
|
}
|
2014-07-03 22:56:46 +04:00
|
|
|
/* break the event loop */
|
|
|
|
opal_event_base_loopbreak(trk->ev_base);
|
|
|
|
/* wait for thread to exit */
|
|
|
|
opal_thread_join(&trk->engine, NULL);
|
|
|
|
/* cleanup, if they indicated they are done with this event base */
|
|
|
|
if (cleanup) {
|
|
|
|
opal_list_remove_item(&tracking, &trk->super);
|
|
|
|
OBJ_RELEASE(trk);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int opal_restart_progress_thread(char *name)
|
|
|
|
{
|
|
|
|
opal_progress_tracker_t *trk;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (!inited) {
|
|
|
|
/* nothing we can do */
|
|
|
|
return OPAL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find the specified engine */
|
|
|
|
OPAL_LIST_FOREACH(trk, &tracking, opal_progress_tracker_t) {
|
|
|
|
if (0 == strcmp(name, trk->name)) {
|
|
|
|
if (!trk->engine_defined) {
|
|
|
|
OPAL_ERROR_LOG(OPAL_ERR_NOT_SUPPORTED);
|
|
|
|
return OPAL_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
2014-07-04 18:55:51 +04:00
|
|
|
/* ensure the block is set, if requested */
|
|
|
|
if (0 <= trk->pipe[0] && !trk->block_active) {
|
|
|
|
opal_event_add(&trk->block, 0);
|
|
|
|
trk->block_active = true;
|
|
|
|
}
|
|
|
|
/* start the thread again */
|
2014-07-03 22:56:46 +04:00
|
|
|
if (OPAL_SUCCESS != (rc = opal_thread_start(&trk->engine))) {
|
|
|
|
OPAL_ERROR_LOG(rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return OPAL_ERR_NOT_FOUND;
|
|
|
|
}
|