Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Define one struct per MC message type
[simgrid.git] / src / mc / mc_client.c
1 /* Copyright (c) 2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdlib.h>
8 #include <errno.h>
9 #include <error.h>
10
11 #include <sys/types.h>
12 #include <sys/socket.h>
13
14 #include <xbt/log.h>
15 #include <xbt/sysdep.h>
16
17 #include "mc_protocol.h"
18 #include "mc_client.h"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_client, mc, "MC client logic");
21
22 s_mc_client_t mc_client;
23
24 void MC_client_init(void)
25 {
26   mc_client.fd = -1;
27   mc_client.active = 1;
28   char* fd_env = getenv(MC_ENV_SOCKET_FD);
29   if (!fd_env)
30     xbt_die("MC socket not found");
31
32   int fd = atoi(fd_env);
33   XBT_DEBUG("Model-checked application found socket FD %i", fd);
34
35   int type;
36   socklen_t socklen = sizeof(type);
37   if (getsockopt(fd, SOL_SOCKET, SO_TYPE, &type, &socklen) != 0)
38     xbt_die("Could not check socket type: %s", strerror(errno));
39   if (type != SOCK_DGRAM)
40     xbt_die("Unexpected socket type %i", type);
41   XBT_DEBUG("Model-checked application found expected socket type");
42
43   mc_client.fd = fd;
44 }
45
46 void MC_client_hello(void)
47 {
48   XBT_DEBUG("Greeting the MC server");
49   if (MC_protocol_hello(mc_client.fd) != 0)
50     xbt_die("Could not say hello the MC server");
51   XBT_DEBUG("Greeted the MC server");
52 }
53
54 void MC_client_handle_messages(void)
55 {
56   while (1) {
57     XBT_DEBUG("Waiting messages from model-checker");
58
59     char message_buffer[MC_MESSAGE_LENGTH];
60     size_t s;
61     if ((s = recv(mc_client.fd, &message_buffer, sizeof(message_buffer), 0)) == -1)
62       xbt_die("Could not receive commands from the model-checker: %s",
63         strerror(errno));
64
65     XBT_DEBUG("Receive message from model-checker");
66     s_mc_message_t message;
67     if (s < sizeof(message))
68       xbt_die("Message is too short");
69     memcpy(&message, message_buffer, sizeof(message));
70     switch (message.type) {
71     case MC_MESSAGE_CONTINUE:
72       return;
73     default:
74       xbt_die("Unexpected message from model-checker %i", message.type);
75     }
76   }
77 }