-
Notifications
You must be signed in to change notification settings - Fork 8
/
margo-test-server.c
179 lines (153 loc) · 5.2 KB
/
margo-test-server.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
/*
* (C) 2015 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include <stdio.h>
#include <assert.h>
#include <unistd.h>
#include <stdlib.h>
#include <mercury.h>
#include <abt.h>
#include <margo.h>
#include "my-rpc.h"
/* example server program. Starts margo, registers the example RPC type,
* and then executes indefinitely.
*/
struct options {
int single_pool_mode;
char* hostfile;
char* listen_addr;
char* pool_kind;
};
static void parse_args(int argc, char** argv, struct options* opts);
int main(int argc, char** argv)
{
hg_return_t hret;
margo_instance_id mid;
struct options opts;
char json[256] = {0};
struct margo_init_info minfo = {0};
minfo.json_config = json;
parse_args(argc, argv, &opts);
/* If single pool mode, use the calling xstream to drive progress and
* execute handlers. If not, use a dedicated progress xstream for
* progress and handlers
*/
if (opts.single_pool_mode)
sprintf(json,
"{\"argobots\":{\"pools\":[{\"name\":\"__primary__\", "
"\"kind\":\"%s\"}]}}",
opts.pool_kind);
else
sprintf(json,
"{\"argobots\":{\"pools\":[{ \"name\":\"__primary__\", "
"\"kind\":\"%s\" }, { \"name\":\"__progress__\", "
"\"kind\":\"%s\" }]}}",
opts.pool_kind, opts.pool_kind);
/* actually start margo -- this step encapsulates the Mercury and
* Argobots initialization and must precede their use */
mid = margo_init_ext(opts.listen_addr, MARGO_SERVER_MODE, &minfo);
if (mid == MARGO_INSTANCE_NULL) {
fprintf(stderr, "Error: margo_init_ext()\n");
return (-1);
}
margo_set_log_level(mid, MARGO_LOG_TRACE);
if (opts.hostfile) {
FILE* fp;
hg_addr_t addr_self;
char addr_self_string[128];
hg_size_t addr_self_string_sz = 128;
/* figure out what address this server is listening on */
hret = margo_addr_self(mid, &addr_self);
if (hret != HG_SUCCESS) {
fprintf(stderr, "Error: margo_addr_self()\n");
margo_finalize(mid);
return (-1);
}
hret = margo_addr_to_string(mid, addr_self_string, &addr_self_string_sz,
addr_self);
if (hret != HG_SUCCESS) {
fprintf(stderr, "Error: margo_addr_to_string()\n");
margo_addr_free(mid, addr_self);
margo_finalize(mid);
return (-1);
}
margo_addr_free(mid, addr_self);
fp = fopen(opts.hostfile, "w");
if (!fp) {
perror("fopen");
margo_finalize(mid);
return (-1);
}
fprintf(fp, "%s", addr_self_string);
fclose(fp);
}
/* register RPC */
MARGO_REGISTER(mid, "my_rpc", my_rpc_in_t, my_rpc_out_t, my_rpc_ult);
MARGO_REGISTER(mid, "my_rpc_hang", my_rpc_hang_in_t, my_rpc_hang_out_t,
my_rpc_hang_ult);
margo_enable_remote_shutdown(mid);
/* NOTE: at this point this server ULT has two options. It can wait on
* whatever mechanism it wants to (however long the daemon should run and
* then call margo_finalize(). Otherwise, it can call
* margo_wait_for_finalize() on the assumption that it should block until
* some other entity calls margo_finalize().
*
* This example does the latter. Margo will be finalized by a special
* RPC from the client.
*
* This approach will allow the server to idle gracefully even when
* executed in "single" mode, in which the main thread of the server
* daemon and the progress thread for Mercury are executing in the same
* ABT pool.
*/
margo_wait_for_finalize(mid);
free(opts.hostfile);
free(opts.listen_addr);
free(opts.pool_kind);
return (0);
}
static void usage(int argc, char** argv)
{
(void)argc;
fprintf(stderr, "Usage: %s -a listen_address [-s] [-f filename]\n", argv[0]);
fprintf(
stderr,
" listen_address is the address or protocol for the server to use\n");
fprintf(stderr, " [-a address] address to pass to margo_init\n");
fprintf(stderr, " [-s] for single pool mode\n");
fprintf(stderr, " [-f filename] to write the server address to a file\n");
fprintf(stderr, " [-p pool kind] to specify kind of ABT pools to use\n");
return;
}
static void parse_args(int argc, char** argv, struct options* opts)
{
int opt;
memset(opts, 0, sizeof(*opts));
while ((opt = getopt(argc, argv, "a:f:sp:")) != -1) {
switch (opt) {
case 'a':
opts->listen_addr = strdup(optarg);
break;
case 's':
opts->single_pool_mode = 1;
break;
case 'f':
opts->hostfile = strdup(optarg);
break;
case 'p':
opts->pool_kind = strdup(optarg);
break;
default:
usage(argc, argv);
exit(EXIT_FAILURE);
}
}
if (optind > argc) {
usage(argc, argv);
exit(EXIT_FAILURE);
}
if (!opts->pool_kind) opts->pool_kind = strdup("fifo_wait");
return;
}