X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8499055fbaebc9fd0d309ae43a6072c8f5b4a68e..62e3231a0c0ab2726ef027a3e70f3e3dfe1e81db:/src/gras/Msg/rpc.c diff --git a/src/gras/Msg/rpc.c b/src/gras/Msg/rpc.c index a3c09c5ee1..14e774bd55 100644 --- a/src/gras/Msg/rpc.c +++ b/src/gras/Msg/rpc.c @@ -19,8 +19,8 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(gras_rpc,gras_msg,"RPC mecanism"); /** @brief declare a new versionned RPC type of the given name and payloads * * @param name: name as it should be used for logging messages (must be uniq) - * @param version: something like versionning symbol - * @param payload: datadescription of the payload + * @param payload_request: datatype of request + * @param payload_answer: datatype of answer * * Registers a new RPC message to the GRAS mechanism. RPC are constituted of a pair * of messages. @@ -40,7 +40,8 @@ gras_msgtype_declare_rpc(const char *name, * * @param name: name as it should be used for logging messages (must be uniq) * @param version: something like versionning symbol - * @param payload: datadescription of the payload + * @param payload_request: datatype of request + * @param payload_answer: datatype of answer * * Registers a new RPC message to the GRAS mechanism. RPC are constituted of a pair * of messages. @@ -75,37 +76,77 @@ static int msgfilter_rpcID(gras_msg_t msg, void* ctx) { return res; } -/** @brief Conduct a RPC call - * - */ -void gras_msg_rpccall(gras_socket_t server, - double timeOut, - gras_msgtype_t msgtype, - void *request, void *answer) { +/** @brief Launch a RPC call, but do not block for the answer */ +gras_msg_cb_ctx_t +gras_msg_rpc_async_call(gras_socket_t server, + double timeOut, + gras_msgtype_t msgtype, + void *request) { + gras_msg_cb_ctx_t ctx = xbt_new0(s_gras_msg_cb_ctx_t,1); - unsigned long int msg_ID = last_msg_ID++; - s_gras_msg_t received; + ctx->ID = last_msg_ID++; + ctx->expeditor = server; + ctx->msgtype=msgtype; + ctx->timeout=timeOut; + + VERB5("Send to %s:%d a RPC of type '%s' (ID=%lu) (exception%s caught)", + gras_socket_peer_name(server), + gras_socket_peer_port(server), + msgtype->name,ctx->ID, + (__xbt_ex_ctx()->ctx_caught?"":" not")); + + gras_msg_send_ext(server, e_gras_msg_kind_rpccall, ctx->ID, msgtype, request); + + return ctx; +} - DEBUG2("Send a RPC of type '%s' (ID=%lu)",msgtype->name,msg_ID); +/** @brief Wait teh answer of a RPC call previously launched asynchronously */ +void gras_msg_rpc_async_wait(gras_msg_cb_ctx_t ctx, + void *answer) { + s_gras_msg_t received; - gras_msg_send_ext(server, e_gras_msg_kind_rpccall, msg_ID, msgtype, request); - gras_msg_wait_ext(timeOut, - msgtype, NULL, msgfilter_rpcID, &msg_ID, + gras_msg_wait_ext(ctx->timeout, + ctx->msgtype, NULL, msgfilter_rpcID, &ctx->ID, &received); + free(ctx); if (received.kind == e_gras_msg_kind_rpcerror) { - /* Damn. Got an exception. Extract it and revive it */ xbt_ex_t e; - VERB0("Raise a remote exception"); memcpy(&e,received.payl,received.payl_size); free(received.payl); - memcpy((void*)&(__xbt_ex_ctx()->ctx_ex),&e,sizeof(xbt_ex_t)); + VERB3("Raise a remote exception cat:%d comming from %s (%s)", + e.category, e.host, e.msg); + __xbt_ex_ctx()->ctx_ex.msg = e.msg; + __xbt_ex_ctx()->ctx_ex.category = e.category; + __xbt_ex_ctx()->ctx_ex.value = e.value; + __xbt_ex_ctx()->ctx_ex.remote = 1; + __xbt_ex_ctx()->ctx_ex.host = e.host; + __xbt_ex_ctx()->ctx_ex.procname = e.procname; + __xbt_ex_ctx()->ctx_ex.pid = e.pid; + __xbt_ex_ctx()->ctx_ex.file = e.file; + __xbt_ex_ctx()->ctx_ex.line = e.line; + __xbt_ex_ctx()->ctx_ex.func = e.func; + __xbt_ex_ctx()->ctx_ex.used = e.used; + __xbt_ex_ctx()->ctx_ex.bt_strings = e.bt_strings; + memset(&__xbt_ex_ctx()->ctx_ex.bt,0, + sizeof(__xbt_ex_ctx()->ctx_ex.bt)); DO_THROW(__xbt_ex_ctx()->ctx_ex); - } memcpy(answer,received.payl,received.payl_size); free(received.payl); } +/** @brief Conduct a RPC call */ +void gras_msg_rpccall(gras_socket_t server, + double timeout, + gras_msgtype_t msgtype, + void *request, void *answer) { + + gras_msg_cb_ctx_t ctx; + + ctx= gras_msg_rpc_async_call(server, timeout,msgtype,request); + gras_msg_rpc_async_wait(ctx, answer); +} + /** @brief Return the result of a RPC call * @@ -114,6 +155,7 @@ void gras_msg_rpccall(gras_socket_t server, */ void gras_msg_rpcreturn(double timeOut,gras_msg_cb_ctx_t ctx,void *answer) { - gras_msg_send_ext(ctx->expeditor, e_gras_msg_kind_rpcanswer, ctx->ID, ctx->msgtype, answer); + gras_msg_send_ext(ctx->expeditor, e_gras_msg_kind_rpcanswer, + ctx->ID, ctx->msgtype, answer); }