X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/93dbc62ec5070b3ec0116331aeaec3e9a40f61d0..da6da59e6a2770e25be5d88661e8f8e32810e0ff:/examples/msg/dht-pastry/dht-pastry.c diff --git a/examples/msg/dht-pastry/dht-pastry.c b/examples/msg/dht-pastry/dht-pastry.c index d782365790..270cb94aed 100644 --- a/examples/msg/dht-pastry/dht-pastry.c +++ b/examples/msg/dht-pastry/dht-pastry.c @@ -7,7 +7,7 @@ #include #include "simgrid/msg.h" - XBT_LOG_NEW_DEFAULT_CATEGORY(msg_pastry, "Messages specific for this msg example"); +XBT_LOG_NEW_DEFAULT_CATEGORY(msg_pastry, "Messages specific for this msg example"); /* TODO: * * - handle node departure * @@ -85,11 +85,11 @@ static void get_mailbox(int node_id, char* mailbox) } /** Get the specific level of a node id */ -int domain_mask = 0; +unsigned int domain_mask = 0; static int domain(int a, int level) { if (domain_mask == 0) domain_mask = pow(2, DOMAIN_SIZE) - 1; - int shift = (LEVELS_COUNT-level-1)*DOMAIN_SIZE; + unsigned int shift = (LEVELS_COUNT-level-1)*DOMAIN_SIZE; return (a >> shift) & domain_mask; } @@ -101,20 +101,30 @@ static int shl(int a, int b) { return l; } +/* Frees the memory used by a task and destroy it */ +static void task_free(void* task) +{ + // TODO add a parameter data_free_function to MSG_task_create? + if(task != NULL){ + s_task_data_t* data = (s_task_data_t*)MSG_task_get_data(task); + xbt_free(data->state); + xbt_free(data); + MSG_task_destroy(task); + } +} + /* Get the closest id to the dest in the node namespace_set */ static int closest_in_namespace_set(node_t node, int dest) { - int best_dist; int res = -1; - if ((node->namespace_set[NAMESPACE_SIZE-1] <= dest) & (dest <= node->namespace_set[0])) { - best_dist = abs(node->id - dest); + if ((node->namespace_set[NAMESPACE_SIZE-1] <= dest) && (dest <= node->namespace_set[0])) { + int best_dist = abs(node->id - dest); res = node->id; - int i, dist; - for (i=0; inamespace_set[i]!=-1) { - dist = abs(node->namespace_set[i] - dest); + int dist = abs(node->namespace_set[i] - dest); if (distnamespace_set[i]; + res = node->namespace_set[i]; } } } @@ -136,9 +146,9 @@ static int routing_next(node_t node, int dest) { //rare case int dist = abs(node->id - dest); - int i,j; + int i; for (i=l; irouting_table[i][j]; if (res!=-1 && abs(res - dest)id = node->id; for (i=0; ineighborhood_set[i] = node->neighborhood_set[i]; for (i=0; irouting_table[i][j] = node->routing_table[i][j]; for (i=0; isender_id = node->id; task_data->steps++; task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, task_data); - MSG_task_send_with_timeout(task_sent, mailbox, timeout); + if (MSG_task_send_with_timeout(task_sent, mailbox, timeout)== MSG_TIMEOUT) { + XBT_DEBUG("Timeout expired when forwarding join to next %d", next); + task_free(task_sent); + } type = TASK_JOIN_REPLY; } @@ -257,7 +274,10 @@ static void handle_task(node_t node, msg_task_t task) { get_mailbox(node->id, req_data->answer_to); req_data->state = node_get_state(node); task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); - MSG_task_send_with_timeout(task_sent, task_data->answer_to, timeout); + if (MSG_task_send_with_timeout(task_sent, task_data->answer_to, timeout)== MSG_TIMEOUT) { + XBT_DEBUG("Timeout expired when sending back the current node state to the joining node to %d", node->id); + task_free(task_sent); + } break; } /* Join reply from all the node touched by the join */ @@ -271,6 +291,7 @@ static void handle_task(node_t node, msg_task_t task) { } node->namespace_set[NAMESPACE_SIZE/2+j] = task_data->sender_id; node->ready += task_data->steps + 1; + /* no break */ case TASK_JOIN_REPLY: XBT_DEBUG("Joining Reply"); @@ -313,7 +334,10 @@ static void handle_task(node_t node, msg_task_t task) { get_mailbox(node->id, req_data->answer_to); req_data->state = node_get_state(node); task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); - MSG_task_send_with_timeout(task_sent, mailbox, timeout); + if (MSG_task_send_with_timeout(task_sent, mailbox, timeout)== MSG_TIMEOUT) { + XBT_DEBUG("Timeout expired when sending update to %d", j); + task_free(task_sent); + } } } } @@ -347,8 +371,10 @@ static void handle_task(node_t node, msg_task_t task) { max = -1; for (i=0; i<=NAMESPACE_SIZE; i++) { j = task_namespace_set[i]; - if (j != -1 && j < node->id) min = i; - if (j != -1 && max == -1 && j > node->id) max = i; + if (j != -1 && j < node->id) + min = i; + if (j != -1 && max == -1 && j > node->id) + max = i; } // add lower elements @@ -359,7 +385,8 @@ static void handle_task(node_t node, msg_task_t task) { j--; } else if (curr_namespace_set[j] == task_namespace_set[min]) { node->namespace_set[i] = curr_namespace_set[j]; - j--; min--; + j--; + min--; } else if (curr_namespace_set[j] > task_namespace_set[min]) { node->namespace_set[i] = curr_namespace_set[j]; j--; @@ -380,7 +407,8 @@ static void handle_task(node_t node, msg_task_t task) { max++; } else if (curr_namespace_set[j] == task_namespace_set[max]) { node->namespace_set[i] = curr_namespace_set[j]; - j++; max++; + j++; + max++; } else if (curr_namespace_set[j] < task_namespace_set[max]) { node->namespace_set[i] = curr_namespace_set[j]; j++; @@ -397,7 +425,11 @@ static void handle_task(node_t node, msg_task_t task) { node->routing_table[i][j] = task_data->state->routing_table[i][j]; } } + break; + default: + THROW_IMPOSSIBLE; } + task_free(task); } /** \brief Initializes the current node as the first one of the system. @@ -422,7 +454,10 @@ static int join(node_t node){ msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); XBT_DEBUG("Trying to join Pastry ring... (with node %s)", mailbox); - MSG_task_send_with_timeout(task_sent, mailbox, timeout); + if (MSG_task_send_with_timeout(task_sent, mailbox, timeout)== MSG_TIMEOUT) { + XBT_DEBUG("Timeout expired when joining ring with node %d", node->known_id); + task_free(task_sent); + } return 1; } @@ -450,10 +485,10 @@ static int node(int argc, char *argv[]) get_mailbox(node.id, node.mailbox); XBT_DEBUG("New node with id %s (%08x)", node.mailbox, node.id); - int i,j,d; + int i; for (i=0; i