-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathshow_help.c
300 lines (253 loc) · 9.29 KB
/
show_help.c
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
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2006 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) 2008-2018 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
* Copyright (c) 2018 Triad National Security, LLC. All rights
* reserved.
* Copyright (c) 2025 Jeffrey M. Squyres. All Rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include <errno.h>
#include <locale.h>
#include <stdio.h>
#include <string.h>
#include "opal/constants.h"
#include "opal/mca/installdirs/installdirs.h"
#include "opal/runtime/opal.h"
#include "opal/util/argv.h"
#include "opal/util/os_path.h"
#include "opal/util/output.h"
#include "opal/util/printf.h"
#include "opal/util/show_help.h"
/*
* Private variables
*/
static const char *dash_line
= "--------------------------------------------------------------------------\n";
static int output_stream = -1;
static char **search_dirs = NULL;
static bool opal_help_want_aggregate = true;
/*
* Local functions
*/
static void opal_show_help_finalize(void);
typedef struct {
pmix_info_t *info;
pmix_info_t *dirs;
char *msg;
} opal_log_info_t;
int opal_show_help_init(void)
{
opal_output_stream_t lds;
opal_help_want_aggregate = true;
mca_base_var_register("opal", NULL, "base", "help_aggregate",
"If opal_base_help_aggregate is true, duplicate help messages will be aggregated rather "
"than displayed individually. This can be helpful for parallel jobs that experience "
"multiple identical failures; rather than print out the same help/failure message N times, "
"display it once with a count of how many processes sent the same message. Default: true.",
MCA_BASE_VAR_TYPE_BOOL, NULL, 0, 0, OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_LOCAL, &opal_help_want_aggregate);
OBJ_CONSTRUCT(&lds, opal_output_stream_t);
lds.lds_want_stderr = true;
output_stream = opal_output_open(&lds);
opal_argv_append_nosize(&search_dirs, opal_install_dirs.opaldatadir);
opal_finalize_register_cleanup(opal_show_help_finalize);
return OPAL_SUCCESS;
}
static void opal_show_help_finalize(void)
{
opal_output_close(output_stream);
output_stream = -1;
/* destruct the search list */
if (NULL != search_dirs) {
opal_argv_free(search_dirs);
search_dirs = NULL;
}
/* free the rendered help strings */
opal_show_help_content_free();
}
static void opal_show_help_output(const char *msg) {
if(-1 < output_stream) {
opal_output(output_stream, "%s", msg);
}
else {
// opal_show_help() was not initialized yet, but we should still be
// able to print to stderr.
fprintf(stderr, "%s", msg);
}
}
static void opal_show_help_cbfunc(pmix_status_t status, void *cbdata)
{
opal_log_info_t *info = (opal_log_info_t *) cbdata;
if(PMIX_SUCCESS != status && PMIX_OPERATION_SUCCEEDED != status) {
// Aggregation/de-duplication functionality is *probably* lost,
// but let's print the error anyway since duplicate error messages
// is better than hiding it.
opal_show_help_output(info->msg);
}
PMIX_INFO_DESTRUCT(info->info);
if(info->dirs) {
PMIX_INFO_DESTRUCT(info->dirs);
}
free(info->msg);
free(info);
}
static void local_delivery(const char *file, const char *topic, char *msg) {
pmix_info_t *info, *dirs = NULL;
int ninfo = 0, ndirs = 0;
PMIX_INFO_CREATE(info, 1);
PMIX_INFO_LOAD(&info[ninfo++], PMIX_LOG_STDERR, msg, PMIX_STRING);
opal_log_info_t *cbdata = calloc(1, sizeof(opal_log_info_t));
if(opal_help_want_aggregate) {
// Not available in PMIx releases of v4.1.2 and earlier.
// This should be available in future v4.1 and v4.2 releases,
// as well as future major releases.
// Disabling the aggregate behavior here, but still log it, as
// seeing duplicate messages is better than not seeing anything at all.
#ifdef PMIX_LOG_AGG
PMIX_INFO_CREATE(dirs, 3);
PMIX_INFO_LOAD(&dirs[ndirs++], PMIX_LOG_AGG, &opal_help_want_aggregate, PMIX_BOOL);
PMIX_INFO_LOAD(&dirs[ndirs++], PMIX_LOG_KEY, file, PMIX_STRING);
PMIX_INFO_LOAD(&dirs[ndirs++], PMIX_LOG_VAL, topic, PMIX_STRING);
cbdata->dirs = dirs;
#endif
}
cbdata->info = info;
cbdata->msg = msg;
// PMIx and the runtime will aggregate, de-duplicate, and print this
// message to stderr.
pmix_status_t rc = PMIx_Log_nb(info, ninfo, dirs, ndirs, opal_show_help_cbfunc, cbdata);
if(PMIX_SUCCESS != rc) {
// Aggregation/de-duplication functionality is *definitely* lost,
// but let's print the error anyway since duplicate error messages
// is better than hiding it.
opal_show_help_output(msg);
PMIX_INFO_DESTRUCT(info);
if(opal_help_want_aggregate) {
PMIX_INFO_DESTRUCT(dirs);
}
free(msg);
free(cbdata);
}
}
static void opal_show_help_error(const char *file, const char *topic) {
char *msg;
opal_asprintf(&msg,
"%sSorry! You were supposed to get help about:\n %s\nfrom topic:\n "
" %s\nBut I couldn't find that help topic. Sorry!\n%s",
dash_line, topic ? topic : "(Not specified)", file ? file : "(Not specified)", dash_line);
local_delivery(topic, file, msg);
}
/*
* Make one big string with all the lines. This isn't the most
* efficient method in the world, but we're going for clarity here --
* not optimization. :-)
*/
static int array2string(char **outstring, int want_error_header, char **lines)
{
int i, count;
size_t len;
/* See how much space we need */
len = want_error_header ? 2 * strlen(dash_line) : 0;
count = opal_argv_count(lines);
for (i = 0; i < count; ++i) {
if (NULL == lines[i]) {
break;
}
len += strlen(lines[i]) + 1;
}
/* Malloc it out */
(*outstring) = (char *) malloc(len + 1);
if (NULL == *outstring) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* Fill the big string */
*(*outstring) = '\0';
if (want_error_header) {
strcat(*outstring, dash_line);
}
for (i = 0; i < count; ++i) {
if (NULL == lines[i]) {
break;
}
strcat(*outstring, lines[i]);
strcat(*outstring, "\n");
}
if (want_error_header) {
strcat(*outstring, dash_line);
}
return OPAL_SUCCESS;
}
char *opal_show_help_vstring(const char *filename, const char *topic, int want_error_header,
va_list arglist)
{
const char *content = opal_show_help_get_content(filename, topic);
if (NULL == content) {
opal_show_help_error(filename, topic);
return NULL;
}
int rc;
char *single_string, *output;
char *array[] = { (char*) content, NULL };
/* Convert it to a single raw string */
rc = array2string(&single_string, want_error_header, array);
if (OPAL_SUCCESS == rc) {
/* Apply the formatting to make the final output string */
opal_vasprintf(&output, single_string, arglist);
free(single_string);
}
return (OPAL_SUCCESS == rc) ? output : NULL;
}
char *opal_show_help_string(const char *filename, const char *topic, int want_error_handler, ...)
{
char *output;
va_list arglist;
va_start(arglist, want_error_handler);
output = opal_show_help_vstring(filename, topic, want_error_handler, arglist);
va_end(arglist);
return output;
}
int opal_show_vhelp(const char *filename, const char *topic, int want_error_header,
va_list arglist)
{
char *output;
/* Convert it to a single string */
output = opal_show_help_vstring(filename, topic, want_error_header, arglist);
/* If we got a single string, output it with formatting */
if (NULL != output) {
local_delivery(filename, topic, output);
}
return (NULL == output) ? OPAL_ERROR : OPAL_SUCCESS;
}
int opal_show_help(const char *filename, const char *topic, int want_error_header, ...)
{
va_list arglist;
int rc;
/* Convert it to a single string */
va_start(arglist, want_error_header);
rc = opal_show_vhelp(filename, topic, want_error_header, arglist);
va_end(arglist);
return rc;
}
int opal_show_help_add_dir(const char *directory)
{
opal_argv_append_nosize(&search_dirs, directory);
return OPAL_SUCCESS;
}