X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/12538c6ab1bc03405ac74e6b2995ba1b4ee29bfa..d51e11eeca324570cf038a3bf6a5d05109903633:/examples/gras/mmrpc/mmrpc_client.c diff --git a/examples/gras/mmrpc/mmrpc_client.c b/examples/gras/mmrpc/mmrpc_client.c index edab230f20..6472af0cfe 100644 --- a/examples/gras/mmrpc/mmrpc_client.c +++ b/examples/gras/mmrpc/mmrpc_client.c @@ -1,97 +1,107 @@ -/* $Id$ */ - /* GridRPC - Fake Grid RPC thingy doing matrix multiplications (as expected)*/ -/* Copyright (c) 2005 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2006, 2007, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#define GRAS_DEFINE_TYPE_EXTERN +#define XBT_DEFINE_TYPE_EXTERN +#include "xbt/matrix.h" #include "mmrpc.h" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(MatMult); -int client(int argc,char *argv[]) { - xbt_ex_t e; - gras_socket_t toserver=NULL; /* peer */ +static xbt_socket_t try_gras_socket_client(const char *host, int port) +{ + volatile xbt_socket_t sock = NULL; + xbt_ex_t e; + TRY { + sock = gras_socket_client(host, port); + } + CATCH(e) { + if (e.category != system_error) + RETHROWF("Unable to connect to the server: %s"); + xbt_ex_free(e); + } + return sock; +} + +int client(int argc, char *argv[]) +{ + xbt_socket_t toserver = NULL; /* peer */ - gras_socket_t from; - matrix_t request[2], answer; + xbt_socket_t from; + xbt_matrix_t request[2], answer; - int i,j; + int i; + _XBT_GNUC_UNUSED int j; const char *host = "127.0.0.1"; - int port = 4000; + int port = 4000; /* 1. Init the GRAS's infrastructure */ gras_init(&argc, argv); - + /* 2. Get the server's address. The command line override defaults when specified */ if (argc == 3) { - host=argv[1]; - port=atoi(argv[2]); - } - - INFO2("Launch client (server on %s:%d)",host,port); - - /* 3. Wait for the server startup */ - gras_os_sleep(1); - - /* 4. Create a socket to speak to the server */ - TRY { - toserver=gras_socket_client(host,port); - } CATCH(e) { - RETHROW0("Unable to connect to the server: %s"); + host = argv[1]; + port = atoi(argv[2]); } - INFO2("Connected to %s:%d.",host,port); + XBT_INFO("Launch client (server on %s:%d)", host, port); - /* 5. Register the messages (before use) */ + /* 3. Register the messages (before use) */ mmrpc_register_messages(); - /* 6. Keep the user informed of what's going on */ - INFO2(">>>>>>>> Connected to server which is on %s:%d <<<<<<<<", - gras_socket_peer_name(toserver),gras_socket_peer_port(toserver)); + /* 4. Create a socket to speak to the server */ + while (!(toserver = try_gras_socket_client(host, port))) + gras_os_sleep(0.05); + XBT_INFO("Connected to %s:%d.", host, port); - /* 7. Prepare and send the request to the server */ + /* 5. Keep the user informed of what's going on */ + XBT_INFO(">>>>>>>> Connected to server which is on %s:%d <<<<<<<<", + xbt_socket_peer_name(toserver), xbt_socket_peer_port(toserver)); - request[0].rows=request[0].cols=request[1].rows=request[1].cols=MATSIZE; + /* 6. Prepare and send the request to the server */ - request[0].ctn=xbt_malloc0(sizeof(double)*MATSIZE*MATSIZE); - request[1].ctn=xbt_malloc0(sizeof(double)*MATSIZE*MATSIZE); + request[0] = xbt_matrix_double_new_id(MATSIZE, MATSIZE); + request[1] = xbt_matrix_double_new_rand(MATSIZE, MATSIZE); - for (i=0; i>>>>>>> Request sent to %s:%d <<<<<<<<", - gras_socket_peer_name(toserver),gras_socket_peer_port(toserver)); + XBT_INFO(">>>>>>>> Request sent to %s:%d <<<<<<<<", + xbt_socket_peer_name(toserver), xbt_socket_peer_port(toserver)); - /* 8. Wait for the answer from the server, and deal with issues */ - gras_msg_wait(6000,gras_msgtype_by_name("answer"),&from,&answer); + /* 7. Wait for the answer from the server, and deal with issues */ + gras_msg_wait(6000, "answer", &from, &answer); - /* mat_dump(&answer,"C:answer");*/ - for (i=0; i>>>>>>> Got answer from %s:%d <<<<<<<<", - gras_socket_peer_name(from),gras_socket_peer_port(from)); + /* 8. Keep the user informed of what's going on, again */ + XBT_INFO(">>>>>>>> Got answer from %s:%d (values are right) <<<<<<<<", + xbt_socket_peer_name(from), xbt_socket_peer_port(from)); - /* 10. Free the allocated resources, and shut GRAS down */ - free(answer.ctn); + /* 9. Free the allocated resources, and shut GRAS down */ + xbt_matrix_free(request[1]); + xbt_matrix_free(answer); gras_socket_close(toserver); gras_exit(); - INFO0("Done."); return 0; -} /* end_of_client */ +} /* end_of_client */