X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/14a7f0b86565fffa82281d21f562b57de5d61975..06f0d1d110338b3eb607633583183a076f7d2722:/testsuite/surf/surf_usage.c diff --git a/testsuite/surf/surf_usage.c b/testsuite/surf/surf_usage.c index e07e7750a3..d7a2749852 100644 --- a/testsuite/surf/surf_usage.c +++ b/testsuite/surf/surf_usage.c @@ -1,13 +1,18 @@ +/* $Id$ */ + /* A few basic tests for the surf library */ -/* Authors: Arnaud Legrand */ +/* Copyright (c) 2004 Arnaud Legrand. 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. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #include #include "surf/surf.h" +#include "xbt/log.h" +XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test,"Messages specific for surf example"); + const char *string_action(e_surf_action_state_t state); const char *string_action(e_surf_action_state_t state) { @@ -28,63 +33,115 @@ const char *string_action(e_surf_action_state_t state) } -void test(void); -void test(void) +void test(char *platform); +void test(char *platform) { void *cpuA = NULL; void *cpuB = NULL; + void *cardA = NULL; + void *cardB = NULL; surf_action_t actionA = NULL; surf_action_t actionB = NULL; + surf_action_t actionC = NULL; + surf_action_t commAB = NULL; e_surf_action_state_t stateActionA; e_surf_action_state_t stateActionB; - xbt_maxmin_float_t now = -1.0; + e_surf_action_state_t stateActionC; + double now = -1.0; - surf_init(); /* Initialize some common structures */ - surf_cpu_resource_init("platform.txt"); /* Now it is possible to use CPUs */ + surf_cpu_resource_init_Cas01(platform); /* Now it is possible to use CPUs */ + surf_network_resource_init_CM02(platform); /* Now it is possible to use eth0 */ - printf("%p \n", surf_cpu_resource); + /*********************** CPU ***********************************/ + DEBUG1("%p \n", surf_cpu_resource); cpuA = surf_cpu_resource->common_public->name_service("Cpu A"); cpuB = surf_cpu_resource->common_public->name_service("Cpu B"); /* Let's check that those two processors exist */ - printf("%s : %p\n", surf_cpu_resource->common_public->get_resource_name(cpuA), cpuA); - printf("%s : %p\n", surf_cpu_resource->common_public->get_resource_name(cpuB), cpuB); + DEBUG2("%s : %p\n", + surf_cpu_resource->common_public->get_resource_name(cpuA), cpuA); + DEBUG2("%s : %p\n", + surf_cpu_resource->common_public->get_resource_name(cpuB), cpuB); /* Let's do something on it */ actionA = surf_cpu_resource->extension_public->execute(cpuA, 1000.0); actionB = surf_cpu_resource->extension_public->execute(cpuB, 1000.0); + actionC = surf_cpu_resource->extension_public->sleep(cpuB, 7.32); /* Use whatever calling style you want... */ stateActionA = surf_cpu_resource->common_public->action_get_state(actionA); /* When you know actionA resource type */ stateActionB = actionB->resource_type->common_public->action_get_state(actionB); /* If you're unsure about it's resource type */ + stateActionC = surf_cpu_resource->common_public->action_get_state(actionC); /* When you know actionA resource type */ + + /* And just look at the state of these tasks */ + DEBUG2("actionA : %p (%s)\n", actionA, string_action(stateActionA)); + DEBUG2("actionB : %p (%s)\n", actionB, string_action(stateActionB)); + DEBUG2("actionC : %p (%s)\n", actionB, string_action(stateActionC)); + + /*********************** Network *******************************/ + DEBUG1("%p \n", surf_network_resource); + cardA = surf_network_resource->common_public->name_service("Cpu A"); + cardB = surf_network_resource->common_public->name_service("Cpu B"); - /* And just look at the stat of these tasks */ - printf("actionA : %p (%s)\n", actionA, string_action(stateActionA)); - printf("actionB : %p (%s)\n", actionB, string_action(stateActionB)); + /* Let's check that those two processors exist */ + DEBUG2("%s : %p\n", + surf_network_resource->common_public->get_resource_name(cardA), + cardA); + DEBUG2("%s : %p\n", + surf_network_resource->common_public->get_resource_name(cardB), + cardB); + + /* Let's do something on it */ + commAB = + surf_network_resource->extension_public->communicate(cardA, cardB, + 150.0,-1.0); - surf_solve(); /* Takes traces into account. Returns 0.0 */ + surf_solve(); /* Takes traces into account. Returns 0.0 */ do { - surf_action_t action = NULL; + surf_action_t action = NULL; now = surf_get_clock(); - printf("Next Event : " XBT_HEAP_FLOAT_T "\n", now); - while(action=xbt_swag_extract(surf_cpu_resource->common_public->states.failed_action_set)) { - printf("\tFailed : %p\n", action); + DEBUG1("Next Event : " "%lg" "\n", now); + DEBUG0("\t CPU actions\n"); + while ((action = + xbt_swag_extract(surf_cpu_resource->common_public->states. + failed_action_set))) { + DEBUG1("\t * Failed : %p\n", action); action->resource_type->common_public->action_free(action); } - while(action=xbt_swag_extract(surf_cpu_resource->common_public->states.done_action_set)) { - printf("\tDone : %p\n", action); + while ((action = + xbt_swag_extract(surf_cpu_resource->common_public->states. + done_action_set))) { + DEBUG1("\t * Done : %p\n", action); + action->resource_type->common_public->action_free(action); + } + DEBUG0("\t Network actions\n"); + while ((action = + xbt_swag_extract(surf_network_resource->common_public->states. + failed_action_set))) { + DEBUG1("\t * Failed : %p\n", action); + action->resource_type->common_public->action_free(action); + } + while ((action = + xbt_swag_extract(surf_network_resource->common_public->states. + done_action_set))) { + DEBUG1("\t * Done : %p\n", action); action->resource_type->common_public->action_free(action); } - } while(surf_solve()); - printf("Simulation Terminated\n"); + } while (surf_solve()>=0.0); + + DEBUG0("Simulation Terminated\n"); surf_finalize(); } - int main(int argc, char **argv) { - test(); + surf_init(&argc, argv); /* Initialize some common structures */ + if(argc==1) { + fprintf(stderr,"Usage : %s platform.txt\n",argv[0]); + return 1; + } + test(argv[1]); return 0; }