forked from mxgiuliani00/hbv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
moeaframework.c
executable file
·428 lines (341 loc) · 11 KB
/
moeaframework.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
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
/* Copyright 2009-2015 David Hadka
*
* This file is part of the MOEA Framework.
*
* The MOEA Framework is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* The MOEA Framework is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the MOEA Framework. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#include <errno.h>
#include "moeaframework.h"
#ifdef MOEA_SOCKETS
# include <unistd.h>
# include <sys/types.h>
# include <sys/socket.h>
# include <netdb.h>
#endif
#define MOEA_WHITESPACE " \t"
#define MOEA_INITIAL_BUFFER_SIZE 1024
#define MOEA_DEFAULT_PORT "16801"
FILE* MOEA_Stream_input = NULL;
FILE* MOEA_Stream_output = NULL;
FILE* MOEA_Stream_error = NULL;
int MOEA_Number_objectives;
int MOEA_Number_constraints;
char* MOEA_Line_buffer = NULL;
size_t MOEA_Line_position = 0;
size_t MOEA_Line_limit = 0;
void MOEA_Error_callback_default(const MOEA_Status status) {
MOEA_Debug("%s\n", MOEA_Status_message(status));
MOEA_Terminate();
exit(EXIT_FAILURE);
}
void (*MOEA_Error_callback)(const MOEA_Status) = MOEA_Error_callback_default;
const char* MOEA_Status_message(const MOEA_Status status) {
switch (status) {
case MOEA_SUCCESS:
return "Success";
case MOEA_EOF:
return "Finished";
case MOEA_PARSE_NO_SOLUTION:
return "No solution read, missing call to MOEA_Next_solution()";
case MOEA_PARSE_EOL:
return "Attempted to parse variable but at end-of-line";
case MOEA_PARSE_DOUBLE_ERROR:
return "Unable to parse double variable";
case MOEA_PARSE_BINARY_ERROR:
return "Unable to parse binary variable";
case MOEA_PARSE_PERMUTATION_ERROR:
return "Unable to parse permutation variable";
case MOEA_MALLOC_ERROR:
return "Error while allocating memory";
case MOEA_NULL_POINTER_ERROR:
return "Attempted to dereference NULL pointer";
case MOEA_SOCKET_ERROR:
return "Unable to establish socket connection";
default:
return "Unknown error";
}
}
MOEA_Status MOEA_Error(const MOEA_Status status) {
if ((status == MOEA_SUCCESS) || (status == MOEA_EOF)) {
return status;
} else if (MOEA_Error_callback == NULL) {
return status;
} else {
MOEA_Error_callback(status);
return status;
}
}
MOEA_Status MOEA_Init(const int objectives, const int constraints) {
MOEA_Stream_input = stdin;
MOEA_Stream_output = stdout;
MOEA_Stream_error = stderr;
MOEA_Number_objectives = objectives;
MOEA_Number_constraints = constraints;
return MOEA_SUCCESS;
}
#ifdef MOEA_SOCKETS
MOEA_Status MOEA_Init_socket(const int objectives, const int constraints,
const char* service) {
int gai_errno;
int listenfd;
int readfd;
int writefd;
int yes = 1;
struct addrinfo hints;
struct addrinfo *servinfo = NULL;
struct addrinfo *sp = NULL;
struct sockaddr_storage their_addr;
socklen_t addr_size = sizeof(their_addr);
MOEA_Init(objectives, constraints);
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_PASSIVE;
if (service == NULL) {
service = MOEA_DEFAULT_PORT;
}
if ((gai_errno = getaddrinfo(NULL, service, &hints, &servinfo)) != 0) {
MOEA_Debug("getaddrinfo: %s\n", gai_strerror(gai_errno));
return MOEA_Error(MOEA_SOCKET_ERROR);
}
for (sp = servinfo; sp != NULL; sp = sp->ai_next) {
if ((listenfd = socket(servinfo->ai_family, servinfo->ai_socktype, servinfo->ai_protocol)) == -1) {
MOEA_Debug("socket: %s\n", strerror(errno));
continue;
}
/* enable socket reuse to avoid socket already in use errors */
if (setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int)) == -1) {
MOEA_Debug("setsockopt: %s\n", strerror(errno));
}
if (bind(listenfd, servinfo->ai_addr, servinfo->ai_addrlen) == -1) {
MOEA_Debug("bind: %s\n", strerror(errno));
close(listenfd);
continue;
}
break;
}
freeaddrinfo(servinfo);
if (sp == NULL) {
return MOEA_Error(MOEA_SOCKET_ERROR);
}
if (listen(listenfd, 1) == -1) {
MOEA_Debug("listen: %s\n", strerror(errno));
close(listenfd);
return MOEA_Error(MOEA_SOCKET_ERROR);
}
if ((readfd = accept(listenfd, (struct sockaddr*)&their_addr, &addr_size)) == -1) {
MOEA_Debug("accept: %s\n", strerror(errno));
close(listenfd);
return MOEA_Error(MOEA_SOCKET_ERROR);
}
close(listenfd);
if ((writefd = dup(readfd)) == -1) {
MOEA_Debug("dup: %s\n", strerror(errno));
close(readfd);
return MOEA_Error(MOEA_SOCKET_ERROR);
}
if ((MOEA_Stream_input = fdopen(readfd, "r")) == NULL) {
MOEA_Debug("fdopen: %s\n", strerror(errno));
close(readfd);
close(writefd);
return MOEA_Error(MOEA_SOCKET_ERROR);
}
if ((MOEA_Stream_output = fdopen(writefd, "w")) == NULL) {
MOEA_Debug("fdopen: %s\n", strerror(errno));
fclose(MOEA_Stream_input);
close(readfd);
close(writefd);
return MOEA_Error(MOEA_SOCKET_ERROR);
}
return MOEA_SUCCESS;
}
#endif
MOEA_Status MOEA_Debug(const char* format, ...) {
va_list arguments;
va_start(arguments, format);
vfprintf(MOEA_Stream_error, format, arguments);
fflush(MOEA_Stream_error);
va_end(arguments);
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Next_solution() {
size_t position = 0;
int character;
if (feof(MOEA_Stream_input)) {
return MOEA_EOF;
}
while (!feof(MOEA_Stream_input)) {
/* increase line buffer if needed */
if ((MOEA_Line_limit == 0) || (position >= MOEA_Line_limit-1)) {
MOEA_Line_limit += MOEA_INITIAL_BUFFER_SIZE;
MOEA_Line_buffer = (char*)realloc(MOEA_Line_buffer,
MOEA_Line_limit*sizeof(char));
if (MOEA_Line_buffer == NULL) {
return MOEA_Error(MOEA_MALLOC_ERROR);
}
}
/* process next character */
character = fgetc(MOEA_Stream_input);
if ((character == EOF) || (character == '\r') || (character == '\n')) {
MOEA_Line_buffer[position++] = '\0';
/* if character is '\r', read the next character if it is '\n' */
if (character == '\r') {
character = fgetc(MOEA_Stream_input);
if (character != '\n') {
ungetc(character, MOEA_Stream_input);
}
}
break;
} else {
MOEA_Line_buffer[position++] = character;
}
}
MOEA_Line_position = 0;
if (position == 1) {
return MOEA_EOF;
} else {
return MOEA_SUCCESS;
}
}
MOEA_Status MOEA_Read_token(char** token) {
if (MOEA_Line_buffer == NULL) {
return MOEA_Error(MOEA_PARSE_NO_SOLUTION);
}
/* find start of next token (skipping any leading whitespace) */
MOEA_Line_position += strspn(MOEA_Line_buffer+MOEA_Line_position,
MOEA_WHITESPACE);
/* if this is the end of the line, signal an error */
if (MOEA_Line_buffer[MOEA_Line_position] == '\0') {
return MOEA_Error(MOEA_PARSE_EOL);
}
/* find end of token */
size_t end = strcspn(MOEA_Line_buffer+MOEA_Line_position, MOEA_WHITESPACE);
/* create token */
MOEA_Line_buffer[MOEA_Line_position+end] = '\0';
*token = MOEA_Line_buffer+MOEA_Line_position;
MOEA_Line_position += end + 1;
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Read_binary(const int size, int* values) {
int i = 0;
char* token = NULL;
MOEA_Status status = MOEA_Read_token(&token);
if (status != MOEA_SUCCESS) {
return MOEA_Error(status);
}
while (1) {
if ((i < size) && (token[i] != '\0')) {
if (token[i] == '0') {
values[i] = 0;
} else if (token[i] == '1') {
values[i] = 1;
} else {
return MOEA_Error(MOEA_PARSE_BINARY_ERROR);
}
} else if ((i != size) || (token[i] != '\0')) {
return MOEA_Error(MOEA_PARSE_BINARY_ERROR);
} else {
break;
}
i++;
}
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Read_permutation(const int size, int* values) {
int i;
char* token = NULL;
char* endptr = NULL;
MOEA_Status status = MOEA_Read_token(&token);
if (status != MOEA_SUCCESS) {
return MOEA_Error(status);
}
values[0] = strtol(token, &endptr, 10);
for (i=1; i<size; i++) {
if ((*endptr != ',') || (*(endptr+1) == '\0')) {
return MOEA_Error(MOEA_PARSE_PERMUTATION_ERROR);
}
token = endptr+1;
values[i] = strtol(token, &endptr, 10);
}
if (*endptr != '\0') {
return MOEA_Error(MOEA_PARSE_PERMUTATION_ERROR);
}
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Read_double(double* value) {
char* token = NULL;
char* endptr = NULL;
MOEA_Status status = MOEA_Read_token(&token);
if (status != MOEA_SUCCESS) {
return MOEA_Error(status);
}
*value = strtod(token, &endptr);
if (*endptr != '\0') {
return MOEA_Error(MOEA_PARSE_DOUBLE_ERROR);
}
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Read_doubles(const int size, double* values) {
int i;
for (i=0; i<size; i++) {
MOEA_Status status = MOEA_Read_double(&values[i]);
if (status != MOEA_SUCCESS) {
return MOEA_Error(status);
}
}
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Write(const double* objectives, const double* constraints) {
int i;
/* validate inputs before writing results */
if (((objectives == NULL) && (MOEA_Number_objectives > 0)) ||
((constraints == NULL) && (MOEA_Number_constraints > 0))) {
return MOEA_Error(MOEA_NULL_POINTER_ERROR);
}
/* write objectives to output */
for (i=0; i<MOEA_Number_objectives; i++) {
if (i > 0) {
fprintf(MOEA_Stream_output, " ");
}
fprintf(MOEA_Stream_output, "%.17g", objectives[i]);
}
/* write constraints to output */
for (i=0; i<MOEA_Number_constraints; i++) {
if ((MOEA_Number_objectives > 0) || (i > 0)) {
fprintf(MOEA_Stream_output, " ");
}
fprintf(MOEA_Stream_output, "%.17g", constraints[i]);
}
/* end line and flush to push data out immediately */
fprintf(MOEA_Stream_output, "\n");
fflush(MOEA_Stream_output);
return MOEA_SUCCESS;
}
MOEA_Status MOEA_Terminate() {
if (MOEA_Stream_input != stdin) {
fclose(MOEA_Stream_input);
}
if (MOEA_Stream_output != stdout) {
fclose(MOEA_Stream_output);
}
if (MOEA_Stream_error != stderr) {
fclose(MOEA_Stream_error);
}
return MOEA_SUCCESS;
}