X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/226d3997c4e356a1935b7d51b310034b4833afb9..5faf49cdf3f8ad8751317b857a6d3134fe07eda3:/testsuite/surf/surf_usage.c diff --git a/testsuite/surf/surf_usage.c b/testsuite/surf/surf_usage.c index e95bd142d2..a57a3996f8 100644 --- a/testsuite/surf/surf_usage.c +++ b/testsuite/surf/surf_usage.c @@ -11,6 +11,7 @@ #endif #include +#include "simgrid/sg_config.h" #include "surf/surf.h" #include "surf/surf_resource.h" #include "surf/surfxml_parse.h" // for reset callback @@ -52,8 +53,8 @@ void test(char *platform) e_surf_action_state_t stateActionB; e_surf_action_state_t stateActionC; double now = -1.0; - xbt_cfg_set_parse(_surf_cfg_set, "cpu/model:Cas01"); - xbt_cfg_set_parse(_surf_cfg_set, "network/model:CM02"); + xbt_cfg_set_parse(_sg_cfg_set, "cpu/model:Cas01"); + xbt_cfg_set_parse(_sg_cfg_set, "network/model:CM02"); parse_platform_file(platform); /*********************** CPU ***********************************/ @@ -66,14 +67,14 @@ void test(char *platform) XBT_DEBUG("%s : %p", surf_resource_name(cpuB), cpuB); /* Let's do something on it */ - actionA = surf_cpu_model->extension.cpu.execute(cpuA, 1000.0); - actionB = surf_cpu_model->extension.cpu.execute(cpuB, 1000.0); - actionC = surf_cpu_model->extension.cpu.sleep(cpuB, 7.32); + actionA = surf_cpu_execute(cpuA, 1000.0); + actionB = surf_cpu_execute(cpuB, 1000.0); + actionC = surf_cpu_sleep(cpuB, 7.32); /* Use whatever calling style you want... */ - stateActionA = surf_cpu_model->action_state_get(actionA); /* When you know actionA model type */ - stateActionB = actionB->model_type->action_state_get(actionB); /* If you're unsure about it's model type */ - stateActionC = surf_cpu_model->action_state_get(actionC); /* When you know actionA model type */ + stateActionA = surf_action_get_state(actionA); /* When you know actionA model type */ + stateActionB = surf_action_get_state(actionB); /* If you're unsure about it's model type */ + stateActionC = surf_action_get_state(actionC); /* When you know actionA model type */ /* And just look at the state of these tasks */ XBT_DEBUG("actionA : %p (%s)", actionA, string_action(stateActionA)); @@ -90,8 +91,7 @@ void test(char *platform) XBT_DEBUG("%s : %p", surf_resource_name(cardB), cardB); /* Let's do something on it */ - surf_network_model->extension.network.communicate(cardA, cardB, - 150.0, -1.0); + surf_network_model_communicate(surf_network_model, cardA, cardB, 150.0, -1.0); surf_solve(-1.0); /* Takes traces into account. Returns 0.0 */ do { @@ -100,31 +100,29 @@ void test(char *platform) XBT_DEBUG("Next Event : %g", now); XBT_DEBUG("\t CPU actions"); while ((action = - xbt_swag_extract(surf_cpu_model->states.failed_action_set))) { + xbt_swag_extract(surf_model_failed_action_set((surf_model_t)surf_cpu_model)))) { XBT_DEBUG("\t * Failed : %p", action); - action->model_type->action_unref(action); + surf_action_unref(action); } while ((action = - xbt_swag_extract(surf_cpu_model->states.done_action_set))) { + xbt_swag_extract(surf_model_done_action_set((surf_model_t)surf_cpu_model)))) { XBT_DEBUG("\t * Done : %p", action); - action->model_type->action_unref(action); + surf_action_unref(action); } XBT_DEBUG("\t Network actions"); while ((action = - xbt_swag_extract(surf_network_model->states. - failed_action_set))) { + xbt_swag_extract(surf_model_failed_action_set((surf_model_t)surf_network_model)))) { XBT_DEBUG("\t * Failed : %p", action); - action->model_type->action_unref(action); + surf_action_unref(action); } while ((action = - xbt_swag_extract(surf_network_model->states. - done_action_set))) { + xbt_swag_extract(surf_model_done_action_set((surf_model_t)surf_network_model)))) { XBT_DEBUG("\t * Done : %p", action); - action->model_type->action_unref(action); + surf_action_unref(action); } - } while ((xbt_swag_size(surf_network_model->states.running_action_set) || - xbt_swag_size(surf_cpu_model->states.running_action_set)) && + } while ((xbt_swag_size(surf_model_running_action_set((surf_model_t)surf_network_model)) || + xbt_swag_size(surf_model_running_action_set((surf_model_t)surf_cpu_model))) && surf_solve(-1.0) >= 0.0); XBT_DEBUG("Simulation Terminated");