File: pmix-internal.h

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (741 lines) | stat: -rw-r--r-- 38,919 bytes parent folder | download | duplicates (4)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
 * Copyright (c) 2014-2020 Intel, Inc.  All rights reserved.
 * Copyright (c) 2015      Los Alamos National Security, LLC. All rights
 *                         reserved.
 * Copyright (c) 2019      Research Organization for Information Science
 *                         and Technology (RIST).  All rights reserved.
 * Copyright (c) 2020-2021 Triad National Security, LLC. All rights
 *                         reserved.
 * Copyright (c) 2020      Amazon.com, Inc. or its affiliates.
 *                         All Rights reserved.
 * Copyright (c) 2021      Nanook Consulting.  All rights reserved.
 * Copyright (c) 2021      Argonne National Laboratory.  All rights
 *                         reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 *
 * In days of old, pmix was packaged as multiple MCA components, and
 * grew an extensive set of base code to support Open MPI's use of
 * pmix.  When internal builds of libevent, hwloc, and pmix were moved
 * out of components into base code so that they could be shared
 * between Open MPI and PRRTE without incurring linking hell, we left
 * the base code active.  This MCA framework is essentially defunct;
 * its only purpose is to allow continued use of the base code.
 */

#ifndef OPAL_PMIX_H
#define OPAL_PMIX_H

#include "opal_config.h"
#include "opal/types.h"

#ifdef HAVE_SYS_UN_H
#    include <sys/un.h>
#endif

#include "opal/hash_string.h"
#include "opal/mca/mca.h"
#include "opal/class/opal_list.h"
#include "opal/mca/threads/threads.h"
#include "opal/util/error.h"
#include "opal/util/event.h"

#include <pmix.h>

BEGIN_C_DECLS

typedef uint32_t opal_jobid_t;
typedef pmix_rank_t opal_vpid_t;
typedef struct {
    opal_jobid_t jobid;
    opal_vpid_t vpid;
} opal_process_name_t;

#define OPAL_SIZEOF_PROCESS_NAME_T 8
#define OPAL_EQUAL                 0
#define OPAL_VALUE1_GREATER        1
#define OPAL_VALUE2_GREATER        -1

/* provide access to the framework verbose output without
 * exposing the entire base */
OPAL_DECLSPEC extern bool opal_pmix_collect_all_data;
OPAL_DECLSPEC extern bool opal_pmix_base_async_modex;
OPAL_DECLSPEC extern int opal_pmix_verbose_output;

/* define a caddy for pointing to pmix_info_t that
 * are to be included in an answer */
typedef struct {
    opal_list_item_t super;
    pmix_proc_t source;
    pmix_info_t *info;
    pmix_persistence_t persistence;
} opal_ds_info_t;
OBJ_CLASS_DECLARATION(opal_ds_info_t);

/* define another caddy for putting statically defined
 * pmix_info_t objects on a list */
typedef struct {
    opal_list_item_t super;
    pmix_info_t info;
} opal_info_item_t;
OBJ_CLASS_DECLARATION(opal_info_item_t);

/* define the equivalent to opal_namelist_t for pmix_proc_t */
typedef struct {
    opal_list_item_t super;
    pmix_proc_t procid;
} opal_proclist_t;
OBJ_CLASS_DECLARATION(opal_proclist_t);

typedef opal_cond_t opal_pmix_condition_t;

typedef struct {
    opal_mutex_t mutex;
    opal_pmix_condition_t cond;
    volatile bool active;
    int status;
    size_t errhandler_ref;
    char *msg;
} opal_pmix_lock_t;

#define opal_pmix_condition_wait(a, b)   opal_cond_wait(a, b)
#define opal_pmix_condition_broadcast(a) opal_cond_broadcast(a)

#define OPAL_PMIX_CONSTRUCT_LOCK(l)               \
    do {                                          \
        OBJ_CONSTRUCT(&(l)->mutex, opal_mutex_t); \
        opal_cond_init(&(l)->cond);               \
        (l)->active = true;                       \
        (l)->status = 0;                          \
        (l)->msg = NULL;                          \
        OPAL_POST_OBJECT((l));                    \
    } while (0)

#define OPAL_PMIX_DESTRUCT_LOCK(l)     \
    do {                               \
        OPAL_ACQUIRE_OBJECT((l));      \
        OBJ_DESTRUCT(&(l)->mutex);     \
        opal_cond_destroy(&(l)->cond); \
        if (NULL != (l)->msg) {        \
            free((l)->msg);            \
        }                              \
    } while (0)

#if OPAL_ENABLE_DEBUG
#    define OPAL_PMIX_ACQUIRE_THREAD(lck)                                       \
        do {                                                                    \
            opal_mutex_lock(&(lck)->mutex);                                     \
            if (opal_debug_threads) {                                           \
                opal_output(0, "Waiting for thread %s:%d", __FILE__, __LINE__); \
            }                                                                   \
            while ((lck)->active) {                                             \
                opal_pmix_condition_wait(&(lck)->cond, &(lck)->mutex);          \
            }                                                                   \
            if (opal_debug_threads) {                                           \
                opal_output(0, "Thread obtained %s:%d", __FILE__, __LINE__);    \
            }                                                                   \
            (lck)->active = true;                                               \
        } while (0)
#else
#    define OPAL_PMIX_ACQUIRE_THREAD(lck)                              \
        do {                                                           \
            opal_mutex_lock(&(lck)->mutex);                            \
            while ((lck)->active) {                                    \
                opal_pmix_condition_wait(&(lck)->cond, &(lck)->mutex); \
            }                                                          \
            (lck)->active = true;                                      \
        } while (0)
#endif

#if OPAL_ENABLE_DEBUG
#    define OPAL_PMIX_WAIT_THREAD(lck)                                          \
        do {                                                                    \
            opal_mutex_lock(&(lck)->mutex);                                     \
            if (opal_debug_threads) {                                           \
                opal_output(0, "Waiting for thread %s:%d", __FILE__, __LINE__); \
            }                                                                   \
            while ((lck)->active) {                                             \
                opal_pmix_condition_wait(&(lck)->cond, &(lck)->mutex);          \
            }                                                                   \
            if (opal_debug_threads) {                                           \
                opal_output(0, "Thread obtained %s:%d", __FILE__, __LINE__);    \
            }                                                                   \
            OPAL_ACQUIRE_OBJECT(&lck);                                          \
            opal_mutex_unlock(&(lck)->mutex);                                   \
        } while (0)
#else
#    define OPAL_PMIX_WAIT_THREAD(lck)                                 \
        do {                                                           \
            opal_mutex_lock(&(lck)->mutex);                            \
            while ((lck)->active) {                                    \
                opal_pmix_condition_wait(&(lck)->cond, &(lck)->mutex); \
            }                                                          \
            OPAL_ACQUIRE_OBJECT(lck);                                  \
            opal_mutex_unlock(&(lck)->mutex);                          \
        } while (0)
#endif

#if OPAL_ENABLE_DEBUG
#    define OPAL_PMIX_RELEASE_THREAD(lck)                                     \
        do {                                                                  \
            if (opal_debug_threads) {                                         \
                opal_output(0, "Releasing thread %s:%d", __FILE__, __LINE__); \
            }                                                                 \
            (lck)->active = false;                                            \
            opal_pmix_condition_broadcast(&(lck)->cond);                      \
            opal_mutex_unlock(&(lck)->mutex);                                 \
        } while (0)
#else
#    define OPAL_PMIX_RELEASE_THREAD(lck)                   \
        do {                                                \
            assert(0 != opal_mutex_trylock(&(lck)->mutex)); \
            (lck)->active = false;                          \
            opal_pmix_condition_broadcast(&(lck)->cond);    \
            opal_mutex_unlock(&(lck)->mutex);               \
        } while (0)
#endif

#define OPAL_PMIX_WAKEUP_THREAD(lck)                 \
    do {                                             \
        opal_mutex_lock(&(lck)->mutex);              \
        (lck)->active = false;                       \
        OPAL_POST_OBJECT(lck);                       \
        opal_pmix_condition_broadcast(&(lck)->cond); \
        opal_mutex_unlock(&(lck)->mutex);            \
    } while (0)

/*
 * Count the fash for the the external RM
 */
#define OPAL_HASH_JOBID(str, hash) \
    {                              \
        OPAL_HASH_STR(str, hash);  \
        hash &= ~(0x8000);         \
    }

/**
 * Provide a simplified macro for sending data via modex
 * to other processes. The macro requires four arguments:
 *
 * r - the integer return status from the modex op
 * sc - the PMIX scope of the data
 * s - the key to tag the data being posted
 * d - pointer to the data object being posted
 * t - the type of the data
 */
#define OPAL_MODEX_SEND_VALUE(r, sc, s, d, t) \
    do {                                      \
        pmix_value_t _kv;                     \
        PMIX_VALUE_LOAD(&_kv, (d), (t));      \
        (r) = PMIx_Put((sc), (s), &(_kv));    \
    } while (0);

/**
 * Provide a simplified macro for sending data via modex
 * to other processes. The macro requires four arguments:
 *
 * r - the integer return status from the modex op
 * sc - the PMIX scope of the data
 * s - the key to tag the data being posted
 * d - the data object being posted
 * sz - the number of bytes in the data object
 */
#define OPAL_MODEX_SEND_STRING(r, sc, s, d, sz) \
    do {                                        \
        pmix_value_t _kv;                       \
        _kv.type = PMIX_BYTE_OBJECT;            \
        _kv.data.bo.bytes = (char *) (d);       \
        _kv.data.bo.size = (sz);                \
        (r) = PMIx_Put(sc, (s), &(_kv));        \
    } while (0);

/**
 * Provide a simplified macro for sending data via modex
 * to other processes. The macro requires four arguments:
 *
 * r - the integer return status from the modex op
 * sc - the PMIX scope of the data
 * s - the MCA component that is posting the data
 * d - the data object being posted
 * sz - the number of bytes in the data object
 */
#define OPAL_MODEX_SEND(r, sc, s, d, sz)                    \
    do {                                                    \
        char *_key;                                         \
        _key = mca_base_component_to_string((s));           \
        OPAL_MODEX_SEND_STRING((r), (sc), _key, (d), (sz)); \
        free(_key);                                         \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process when we don't want the PMIx module
 * to request it from the server if not found:
 *
 * r - the integer return status from the modex op (int)
 * s - string key (char*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     is to be returned
 * t - the expected data type
 */
#define OPAL_MODEX_RECV_VALUE_OPTIONAL(r, s, p, d, t)                                  \
    do {                                                                               \
        pmix_proc_t _proc;                                                             \
        pmix_value_t *_kv = NULL;                                                      \
        pmix_info_t _info;                                                             \
        size_t _sz;                                                                    \
        OPAL_OUTPUT_VERBOSE((1, opal_pmix_verbose_output,                              \
                             "%s[%s:%d] MODEX RECV VALUE OPTIONAL FOR PROC %s KEY %s", \
                             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__,   \
                             OPAL_NAME_PRINT(*(p)), (s)));                             \
        OPAL_PMIX_CONVERT_NAME(&_proc, (p));                                           \
        PMIX_INFO_LOAD(&_info, PMIX_OPTIONAL, NULL, PMIX_BOOL);                        \
        (r) = PMIx_Get(&(_proc), (s), &(_info), 1, &(_kv));                            \
        PMIX_INFO_DESTRUCT(&_info);                                                    \
        if (NULL == _kv) {                                                             \
            (r) = PMIX_ERR_NOT_FOUND;                                                  \
        } else if (_kv->type != (t)) {                                                 \
            (r) = PMIX_ERR_TYPE_MISMATCH;                                              \
        } else if (PMIX_SUCCESS == (r) && NULL != (d)) {                               \
            PMIX_VALUE_UNLOAD((r), _kv, (void **) (d), &_sz);                          \
        }                                                                              \
        if (NULL != _kv) {                                                             \
            PMIX_VALUE_RELEASE(_kv);                                                   \
        }                                                                              \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process when we want the PMIx module
 * to request it from the server if not found, but do not
 * want the server to go find it if the server doesn't
 * already have it:
 *
 * r - the integer return status from the modex op (int)
 * s - string key (char*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     is to be returned
 * t - the expected data type
 */
#define OPAL_MODEX_RECV_VALUE_IMMEDIATE(r, s, p, d, t)                                  \
    do {                                                                                \
        pmix_proc_t _proc;                                                              \
        pmix_value_t *_kv = NULL;                                                       \
        pmix_info_t _info;                                                              \
        size_t _sz;                                                                     \
        OPAL_OUTPUT_VERBOSE((1, opal_pmix_verbose_output,                               \
                             "%s[%s:%d] MODEX RECV VALUE IMMEDIATE FOR PROC %s KEY %s", \
                             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__,    \
                             OPAL_NAME_PRINT(*(p)), (s)));                              \
        OPAL_PMIX_CONVERT_NAME(&_proc, (p));                                            \
        PMIX_INFO_LOAD(&_info, PMIX_IMMEDIATE, NULL, PMIX_BOOL);                        \
        (r) = PMIx_Get(&(_proc), (s), &(_info), 1, &(_kv));                             \
        PMIX_INFO_DESTRUCT(&_info);                                                     \
        if (NULL == _kv) {                                                              \
            (r) = PMIX_ERR_NOT_FOUND;                                                   \
        } else if (_kv->type != (t)) {                                                  \
            (r) = PMIX_ERR_TYPE_MISMATCH;                                               \
        } else if (PMIX_SUCCESS == (r)) {                                               \
            PMIX_VALUE_UNLOAD((r), _kv, (void **) (d), &_sz);                           \
        }                                                                               \
        if (NULL != _kv) {                                                              \
            PMIX_VALUE_RELEASE(_kv);                                                    \
        }                                                                               \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - string key (char*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     is to be returned
 * t - the expected data type
 */
#define OPAL_MODEX_RECV_VALUE(r, s, p, d, t)                                                       \
    do {                                                                                           \
        pmix_proc_t _proc;                                                                         \
        pmix_value_t *_kv = NULL;                                                                  \
        size_t _sz;                                                                                \
        OPAL_OUTPUT_VERBOSE(                                                                       \
            (1, opal_pmix_verbose_output, "%s[%s:%d] MODEX RECV VALUE FOR PROC %s KEY %s",         \
             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__, OPAL_NAME_PRINT(*(p)), (s))); \
        OPAL_PMIX_CONVERT_NAME(&_proc, (p));                                                       \
        (r) = PMIx_Get(&(_proc), (s), NULL, 0, &(_kv));                                            \
        if (NULL == _kv) {                                                                         \
            (r) = PMIX_ERR_NOT_FOUND;                                                              \
        } else if (_kv->type != (t)) {                                                             \
            (r) = PMIX_ERR_TYPE_MISMATCH;                                                          \
        } else if (PMIX_SUCCESS == (r)) {                                                          \
            PMIX_VALUE_UNLOAD((r), _kv, (void **) (d), &_sz);                                      \
        }                                                                                          \
        if (NULL != _kv) {                                                                         \
            PMIX_VALUE_RELEASE(_kv);                                                               \
        }                                                                                          \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - string key (char*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     it to be returned (char**)
 * sz - pointer to a location wherein the number of bytes
 *     in the data object can be returned (size_t)
 */
#define OPAL_MODEX_RECV_STRING_OPTIONAL(r, s, p, d, sz)                                 \
    do {                                                                                \
        pmix_proc_t _proc;                                                              \
        pmix_value_t *_kv = NULL;                                                       \
        pmix_info_t _info;                                                              \
        OPAL_OUTPUT_VERBOSE((1, opal_pmix_verbose_output,                               \
                             "%s[%s:%d] MODEX RECV STRING OPTIONAL FOR PROC %s KEY %s", \
                             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__,    \
                             OPAL_NAME_PRINT(*(p)), (s)));                              \
        *(d) = NULL;                                                                    \
        *(sz) = 0;                                                                      \
        OPAL_PMIX_CONVERT_NAME(&_proc, (p));                                            \
        PMIX_INFO_LOAD(&_info, PMIX_OPTIONAL, NULL, PMIX_BOOL);                         \
        (r) = PMIx_Get(&(_proc), (s), &(_info), 1, &(_kv));                             \
        if (NULL == _kv) {                                                              \
            (r) = PMIX_ERR_NOT_FOUND;                                                   \
        } else if (PMIX_SUCCESS == (r)) {                                               \
            *(d) = (uint8_t *) _kv->data.bo.bytes;                                      \
            *(sz) = _kv->data.bo.size;                                                  \
            _kv->data.bo.bytes = NULL; /* protect the data */                           \
        }                                                                               \
        if (NULL != _kv) {                                                              \
            PMIX_VALUE_RELEASE(_kv);                                                    \
        }                                                                               \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - string key (char*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     it to be returned (char**)
 * sz - pointer to a location wherein the number of bytes
 *     in the data object can be returned (size_t)
 */
#define OPAL_MODEX_RECV_STRING_IMMEDIATE(r, s, p, d, sz)                                           \
    do {                                                                                           \
        pmix_proc_t _proc;                                                                         \
        pmix_value_t *_kv = NULL;                                                                  \
        pmix_info_t _info;                                                                         \
        OPAL_OUTPUT_VERBOSE(                                                                       \
            (1, opal_pmix_verbose_output, "%s[%s:%d] MODEX RECV STRING FOR PROC %s KEY %s",        \
             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__, OPAL_NAME_PRINT(*(p)), (s))); \
        *(d) = NULL;                                                                               \
        *(sz) = 0;                                                                                 \
        OPAL_PMIX_CONVERT_NAME(&_proc, (p));                                                       \
        PMIX_INFO_LOAD(&_info, PMIX_IMMEDIATE, NULL, PMIX_BOOL);                                   \
        (r) = PMIx_Get(&(_proc), (s), &_info, 1, &(_kv));                                          \
        PMIX_INFO_DESTRUCT(&_info);                                                                \
        if (NULL == _kv) {                                                                         \
            (r) = PMIX_ERR_NOT_FOUND;                                                              \
        } else if (PMIX_SUCCESS == (r)) {                                                          \
            *(d) = (uint8_t *) _kv->data.bo.bytes;                                                 \
            *(sz) = _kv->data.bo.size;                                                             \
            _kv->data.bo.bytes = NULL; /* protect the data */                                      \
        }                                                                                          \
        if (NULL != _kv) {                                                                         \
            PMIX_VALUE_RELEASE(_kv);                                                               \
        }                                                                                          \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - string key (char*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     it to be returned (char**)
 * sz - pointer to a location wherein the number of bytes
 *     in the data object can be returned (size_t)
 */
#define OPAL_MODEX_RECV_STRING(r, s, p, d, sz)                                                     \
    do {                                                                                           \
        pmix_proc_t _proc;                                                                         \
        pmix_value_t *_kv = NULL;                                                                  \
        OPAL_OUTPUT_VERBOSE(                                                                       \
            (1, opal_pmix_verbose_output, "%s[%s:%d] MODEX RECV STRING FOR PROC %s KEY %s",        \
             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__, OPAL_NAME_PRINT(*(p)), (s))); \
        *(d) = NULL;                                                                               \
        *(sz) = 0;                                                                                 \
        OPAL_PMIX_CONVERT_NAME(&_proc, (p));                                                       \
        (r) = PMIx_Get(&(_proc), (s), NULL, 0, &(_kv));                                            \
        if (NULL == _kv) {                                                                         \
            (r) = PMIX_ERR_NOT_FOUND;                                                              \
        } else if (PMIX_SUCCESS == (r)) {                                                          \
            *(d) = (uint8_t *) _kv->data.bo.bytes;                                                 \
            *(sz) = _kv->data.bo.size;                                                             \
            _kv->data.bo.bytes = NULL; /* protect the data */                                      \
        }                                                                                          \
        if (NULL != _kv) {                                                                         \
            PMIX_VALUE_RELEASE(_kv);                                                               \
        }                                                                                          \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - the MCA component that posted the data (mca_base_component_t*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     it to be returned (char**)
 * sz - pointer to a location wherein the number of bytes
 *     in the data object can be returned (size_t)
 */
#define OPAL_MODEX_RECV_OPTIONAL(r, s, p, d, sz)                                     \
    do {                                                                             \
        char *_key;                                                                  \
        _key = mca_base_component_to_string((s));                                    \
        OPAL_OUTPUT_VERBOSE((1, opal_pmix_verbose_output,                            \
                             "%s[%s:%d] MODEX RECV FOR PROC %s KEY %s",              \
                             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__, \
                             OPAL_NAME_PRINT(*(p)), _key));                          \
        if (NULL == _key) {                                                          \
            OPAL_ERROR_LOG(OPAL_ERR_OUT_OF_RESOURCE);                                \
            (r) = OPAL_ERR_OUT_OF_RESOURCE;                                          \
        } else {                                                                     \
            OPAL_MODEX_RECV_STRING_OPTIONAL((r), _key, (p), (d), (sz));              \
            free(_key);                                                              \
        }                                                                            \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - the MCA component that posted the data (mca_base_component_t*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     it to be returned (char**)
 * sz - pointer to a location wherein the number of bytes
 *     in the data object can be returned (size_t)
 */
#define OPAL_MODEX_RECV_IMMEDIATE(r, s, p, d, sz)                                    \
    do {                                                                             \
        char *_key;                                                                  \
        _key = mca_base_component_to_string((s));                                    \
        OPAL_OUTPUT_VERBOSE((1, opal_pmix_verbose_output,                            \
                             "%s[%s:%d] MODEX RECV FOR PROC %s KEY %s",              \
                             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__, \
                             OPAL_NAME_PRINT(*(p)), _key));                          \
        if (NULL == _key) {                                                          \
            OPAL_ERROR_LOG(OPAL_ERR_OUT_OF_RESOURCE);                                \
            (r) = OPAL_ERR_OUT_OF_RESOURCE;                                          \
        } else {                                                                     \
            OPAL_MODEX_RECV_STRING_IMMEDIATE((r), _key, (p), (d), (sz));             \
            free(_key);                                                              \
        }                                                                            \
    } while (0);

/**
 * Provide a simplified macro for retrieving modex data
 * from another process:
 *
 * r - the integer return status from the modex op (int)
 * s - the MCA component that posted the data (mca_base_component_t*)
 * p - pointer to the opal_process_name_t of the proc that posted
 *     the data (opal_process_name_t*)
 * d - pointer to a location wherein the data object
 *     it to be returned (char**)
 * sz - pointer to a location wherein the number of bytes
 *     in the data object can be returned (size_t)
 */
#define OPAL_MODEX_RECV(r, s, p, d, sz)                                              \
    do {                                                                             \
        char *_key;                                                                  \
        _key = mca_base_component_to_string((s));                                    \
        OPAL_OUTPUT_VERBOSE((1, opal_pmix_verbose_output,                            \
                             "%s[%s:%d] MODEX RECV FOR PROC %s KEY %s",              \
                             OPAL_NAME_PRINT(OPAL_PROC_MY_NAME), __FILE__, __LINE__, \
                             OPAL_NAME_PRINT(*(p)), _key));                          \
        if (NULL == _key) {                                                          \
            OPAL_ERROR_LOG(OPAL_ERR_OUT_OF_RESOURCE);                                \
            (r) = OPAL_ERR_OUT_OF_RESOURCE;                                          \
        } else {                                                                     \
            OPAL_MODEX_RECV_STRING((r), _key, (p), (d), (sz));                       \
            free(_key);                                                              \
        }                                                                            \
    } while (0);

#define PMIX_ERROR_LOG(r) \
    opal_output(0, "[%s:%d] PMIx Error: %s", __FILE__, __LINE__, PMIx_Error_string((r)))

#define OPAL_PMIX_SHOW_HELP "opal.show.help"

/* some helper functions */
OPAL_DECLSPEC pmix_proc_state_t opal_pmix_convert_state(int state);
OPAL_DECLSPEC int opal_pmix_convert_pstate(pmix_proc_state_t);
OPAL_DECLSPEC pmix_status_t opal_pmix_convert_rc(int rc);
OPAL_DECLSPEC int opal_pmix_convert_status(pmix_status_t status);
OPAL_DECLSPEC int opal_pmix_convert_jobid(pmix_nspace_t nspace, opal_jobid_t jobid);
OPAL_DECLSPEC int opal_pmix_convert_nspace(opal_jobid_t *jobid, pmix_nspace_t nspace);
OPAL_DECLSPEC void opal_pmix_setup_nspace_tracker(void);
OPAL_DECLSPEC void opal_pmix_finalize_nspace_tracker(void);

#define OPAL_SCHEMA_DELIMITER_CHAR  '.'
#define OPAL_SCHEMA_WILDCARD_CHAR   '*'
#define OPAL_SCHEMA_WILDCARD_STRING "*"
#define OPAL_SCHEMA_INVALID_CHAR    '$'
#define OPAL_SCHEMA_INVALID_STRING  "$"

/* convert jobid to nspace */
#define OPAL_PMIX_CONVERT_JOBID(n, j) opal_pmix_convert_jobid((n), (j))

/* convert vpid to rank */
#define OPAL_PMIX_CONVERT_VPID(r, v)           \
    do {                                       \
        if (OPAL_VPID_WILDCARD == (v)) {       \
            (r) = PMIX_RANK_WILDCARD;          \
        } else if (OPAL_VPID_INVALID == (v)) { \
            (r) = PMIX_RANK_INVALID;           \
        } else {                               \
            (r) = (v);                         \
        }                                      \
    } while (0)

/* convert opal_process_name_t to pmix_proc_t */
#define OPAL_PMIX_CONVERT_NAME(p, n)                      \
    do {                                                  \
        OPAL_PMIX_CONVERT_JOBID((p)->nspace, (n)->jobid); \
        OPAL_PMIX_CONVERT_VPID((p)->rank, (n)->vpid);     \
    } while (0)

/* convert nspace to jobid */
#define OPAL_PMIX_CONVERT_NSPACE(r, j, n) (r) = opal_pmix_convert_nspace((j), (n))

/* convert pmix rank to opal vpid */
#define OPAL_PMIX_CONVERT_RANK(v, r)           \
    do {                                       \
        if (PMIX_RANK_WILDCARD == (r)) {       \
            (v) = OPAL_VPID_WILDCARD;          \
        } else if (PMIX_RANK_INVALID == (r)) { \
            (v) = OPAL_VPID_INVALID;           \
        } else {                               \
            (v) = (r);                         \
        }                                      \
    } while (0)

/* convert pmix_proc_t to opal_process_name_t */
#define OPAL_PMIX_CONVERT_PROCT(r, n, p)                         \
    do {                                                         \
        OPAL_PMIX_CONVERT_NSPACE((r), &(n)->jobid, (p)->nspace); \
        if (OPAL_SUCCESS == (r)) {                               \
            OPAL_PMIX_CONVERT_RANK((n)->vpid, (p)->rank);        \
        }                                                        \
    } while (0)

#define OPAL_PMIX_CONVERT_PROCT_TO_STRING(s, p)                         \
    do {                                                                \
        if (PMIX_RANK_WILDCARD == (p)->rank) {                          \
            (void) opal_asprintf((s), "%s.*", (p)->nspace);             \
        } else if (PMIX_RANK_INVALID == (p)->rank) {                    \
            (void) opal_asprintf((s), "%s.$", (p)->nspace);             \
        } else {                                                        \
            (void) opal_asprintf((s), "%s.%u", (p)->nspace, (p)->rank); \
        }                                                               \
    } while (0)

#define OPAL_PMIX_CONVERT_STRING_TO_PROCT(p, s)  \
    do {                                         \
        char *_ptr;                              \
        _ptr = strrchr((s), '.');                \
        *_ptr = '\0';                            \
        _ptr++;                                  \
        PMIX_LOAD_NSPACE((p)->nspace, (s));      \
        if ('*' == *_ptr) {                      \
            (p)->rank = PMIX_RANK_WILDCARD;      \
        } else if ('$' == *_ptr) {               \
            (p)->rank = PMIX_RANK_INVALID;       \
        } else {                                 \
            (p)->rank = strtoul(_ptr, NULL, 10); \
        }                                        \
    } while (0)

OPAL_DECLSPEC int opal_pmix_register_cleanup(char *path, bool directory, bool ignore,
                                             bool jobscope);

/* protect against early versions of PMIx */
#if PMIX_VERSION_MAJOR == 3
#    if PMIX_VERSION_MINOR == 0
#        if PMIX_VERSION_RELEASE == 0
#            define PMIX_NUMERIC_VERSION     0x00030000
#            define PMIX_OPERATION_SUCCEEDED (PMIX_ERR_OP_BASE - 27)
#        elif PMIX_VERSION_RELEASE == 2
#            undef PMIX_NUMERIC_VERSION
#            define PMIX_NUMERIC_VERSION 0x00030002
#        endif
#        define PMIX_LOAD_KEY(a, b)                      \
            do {                                         \
                memset((a), 0, PMIX_MAX_KEYLEN + 1);     \
                pmix_strncpy((a), (b), PMIX_MAX_KEYLEN); \
            } while (0)
#        if PMIX_VERSION_RELEASE < 2
#            define PMIX_CHECK_KEY(a, b) (0 == strncmp((a)->key, (b), PMIX_MAX_KEYLEN))
#        endif
#    elif PMIX_VERSION_MINOR == 1
#        if PMIX_VERSION_RELEASE == 1
#            undef PMIX_NUMERIC_VERSION
#            define PMIX_NUMERIC_VERSION 0x00030101
#        elif PMIX_VERSION_RELEASE == 2
#            undef PMIX_NUMERIC_VERSION
#            define PMIX_NUMERIC_VERSION 0x00030102
#        endif
#    endif
#endif

/**
 * Structure for pmix components.
 */
struct opal_pmix_base_component_2_0_0_t {
    /** MCA base component */
    mca_base_component_t base_version;
    /** MCA base data */
    mca_base_component_data_t base_data;
};

/**
 * Convenience typedef
 */
typedef struct opal_pmix_base_component_2_0_0_t opal_pmix_base_component_2_0_0_t;
typedef struct opal_pmix_base_component_2_0_0_t opal_pmix_component_t;

/**
 * Macro for use in components that are of type hwloc
 */
#define OPAL_PMIX_BASE_VERSION_2_0_0 OPAL_MCA_BASE_VERSION_2_1_0("pmix", 2, 0, 0)

END_C_DECLS

#endif