1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2015-2020 Intel, Inc. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2015-2018 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) 2021 Nanook Consulting. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef CLI_STAGES_H
#define CLI_STAGES_H
#include "src/include/pmix_config.h"
#include "pmix_server.h"
#include "src/class/pmix_list.h"
#include "src/include/pmix_globals.h"
#include "src/mca/ptl/base/base.h"
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/un.h>
#include <sys/wait.h>
#include <time.h>
#include "test_common.h"
// In correct scenario each client has to sequentially pass all of this stages
typedef enum {
CLI_UNINIT,
CLI_FORKED,
CLI_CONNECTED,
CLI_FIN,
CLI_DISCONN,
CLI_TERM,
CLI_UNDEF
} cli_state_t;
typedef struct {
pmix_list_t modex;
pid_t pid;
int sd;
pmix_event_t *ev;
cli_state_t state;
cli_state_t next_state[CLI_TERM + 1];
pmix_rank_t rank;
char *ns;
int exit_code;
bool alive;
} cli_info_t;
extern cli_info_t *cli_info;
extern int cli_info_cnt;
extern bool test_abort;
extern bool test_complete;
int cli_rank(cli_info_t *cli);
void cli_init(int nprocs);
void cli_connect(cli_info_t *cli, int sd, struct event_base *ebase, event_callback_fn callback);
void cli_finalize(cli_info_t *cli);
void cli_disconnect(cli_info_t *cli);
void cli_terminate(cli_info_t *cli);
void cli_cleanup(cli_info_t *cli);
void cli_kill_all(void);
bool test_terminated(void);
void errhandler(size_t evhdlr_registration_id, pmix_status_t status, const pmix_proc_t *source,
pmix_info_t info[], size_t ninfo, pmix_info_t results[], size_t nresults,
pmix_event_notification_cbfunc_fn_t cbfunc, void *cbdata);
void op_callbk(pmix_status_t status, void *cbdata);
void errhandler_reg_callbk(pmix_status_t status, size_t errhandler_ref, void *cbdata);
#endif // CLI_STAGES_H
|