Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Split simgrid_lua.c in one source file per module
[simgrid.git] / src / bindings / lua / lua_console.c
diff --git a/src/bindings/lua/lua_console.c b/src/bindings/lua/lua_console.c
deleted file mode 100644 (file)
index 50f48e4..0000000
+++ /dev/null
@@ -1,370 +0,0 @@
-/* SimGrid Lua Console                                                    */
-
-/* Copyright (c) 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. */
-
-#include "simgrid_lua.h"
-#include "simgrid/platf.h"
-#include <string.h>
-#include <ctype.h>
-
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(lua_console, bindings, "Lua Bindings");
-
-int console_open(lua_State *L) {
-  sg_platf_init();
-  sg_platf_begin();
-  surf_parse_init_callbacks();
-  return 0;
-}
-
-int console_close(lua_State *L) {
-  sg_platf_end();
-  sg_platf_exit();
-  return 0;
-}
-
-int console_add_host(lua_State *L) {
-  s_sg_platf_host_cbarg_t host;
-  memset(&host,0,sizeof(host));
-  int state;
-
-  // we get values from the table passed as argument
-  if (!lua_istable(L, -1)) {
-    XBT_ERROR
-        ("Bad Arguments to create host, Should be a table with named arguments");
-    return -1;
-  }
-
-  // get Id Value
-  lua_pushstring(L, "id");
-  lua_gettable(L, -2);
-  host.id = lua_tostring(L, -1);
-  lua_pop(L, 1);
-
-  // get power value
-  lua_pushstring(L, "power");
-  lua_gettable(L, -2);
-  host.power_peak = lua_tonumber(L, -1);
-  lua_pop(L, 1);
-
-  //get power_scale
-  lua_pushstring(L, "power_scale");
-  lua_gettable(L, -2);
-  host.power_scale = lua_tonumber(L, -1);
-  lua_pop(L, 1);
-
-  //get power_trace
-  lua_pushstring(L, "power_trace");
-  lua_gettable(L, -2);
-  host.power_trace = tmgr_trace_new(lua_tostring(L, -1));
-  lua_pop(L, 1);
-
-  lua_pushstring(L, "core");
-  lua_gettable(L, -2);
-  host.core_amount = lua_tonumber(L, -1);
-  if (host.core_amount == 0)
-    host.core_amount = 1;
-  lua_pop(L, 1);
-
-  //get state initial
-  lua_pushstring(L, "state_initial");
-  lua_gettable(L, -2);
-  state = lua_tonumber(L, -1);
-  lua_pop(L, 1);
-  if (state)
-    host.initial_state = SURF_RESOURCE_ON;
-  else
-    host.initial_state = SURF_RESOURCE_OFF;
-
-  //get trace state
-  lua_pushstring(L, "state_trace");
-  lua_gettable(L, -2);
-  host.state_trace = tmgr_trace_new(lua_tostring(L, -1));
-  lua_pop(L, 1);
-
-  sg_platf_new_host(&host);
-
-  return 0;
-}
-
-int  console_add_link(lua_State *L) {
-  s_sg_platf_link_cbarg_t link;
-  memset(&link,0,sizeof(link));
-
-  const char* policy;
-
-  if (! lua_istable(L, -1)) {
-    XBT_ERROR("Bad Arguments to create link, Should be a table with named arguments");
-    return -1;
-  }
-
-  // get Id Value
-  lua_pushstring(L, "id");
-  lua_gettable(L, -2);
-  link.id = lua_tostring(L, -1);
-  lua_pop(L, 1);
-
-  // get bandwidth value
-  lua_pushstring(L, "bandwidth");
-  lua_gettable(L, -2);
-  link.bandwidth = lua_tonumber(L, -1);
-  lua_pop(L, 1);
-
-  //get latency value
-  lua_pushstring(L, "latency");
-  lua_gettable(L, -2);
-  link.latency = lua_tonumber(L, -1);
-  lua_pop(L, 1);
-
-  /*Optional Arguments  */
-
-  //get bandwidth_trace value
-  lua_pushstring(L, "bandwidth_trace");
-  lua_gettable(L, -2);
-  link.bandwidth_trace = tmgr_trace_new(lua_tostring(L, -1));
-  lua_pop(L, 1);
-
-  //get latency_trace value
-  lua_pushstring(L, "latency_trace");
-  lua_gettable(L, -2);
-  link.latency_trace = tmgr_trace_new(lua_tostring(L, -1));
-  lua_pop(L, 1);
-
-  //get state_trace value
-  lua_pushstring(L, "state_trace");
-  lua_gettable(L, -2);
-  link.state_trace = tmgr_trace_new(lua_tostring(L, -1));
-  lua_pop(L, 1);
-
-  //get state_initial value
-  lua_pushstring(L, "state_initial");
-  lua_gettable(L, -2);
-  if (lua_tonumber(L, -1))
-    link.state = SURF_RESOURCE_ON;
-  else
-    link.state = SURF_RESOURCE_OFF;
-  lua_pop(L, 1);
-
-  //get policy value
-  lua_pushstring(L, "policy");
-  lua_gettable(L, -2);
-  policy = lua_tostring(L, -1);
-  lua_pop(L, 1);
-  if (policy && !strcmp(policy,"FULLDUPLEX")) {
-    link.policy = SURF_LINK_FULLDUPLEX;
-  } else if (policy && !strcmp(policy,"FATPIPE")) {
-    link.policy = SURF_LINK_FATPIPE;
-  } else {
-    link.policy = SURF_LINK_SHARED;
-  }
-
-  sg_platf_new_link(&link);
-
-  return 0;
-}
-/**
- * add Router to AS components
- */
-int console_add_router(lua_State* L) {
-  s_sg_platf_router_cbarg_t router;
-  memset(&router,0,sizeof(router));
-
-  if (! lua_istable(L, -1)) {
-    XBT_ERROR("Bad Arguments to create router, Should be a table with named arguments");
-    return -1;
-  }
-
-  lua_pushstring(L, "id");
-  lua_gettable(L, -2);
-  router.id = lua_tostring(L, -1);
-  lua_pop(L,1);
-
-  lua_pushstring(L,"coord");
-  lua_gettable(L,-2);
-  router.coord = lua_tostring(L, -1);
-  lua_pop(L,1);
-
-  sg_platf_new_router(&router);
-
-  return 0;
-}
-
-#include "surf/surfxml_parse.h" /* to override surf_parse and bypass the parser */
-
-int console_add_route(lua_State *L) {
-  static int AX_ptr = 0;
-  static int surfxml_bufferstack_size = 2048;
-
-  /* allocating memory for the buffer, I think 2kB should be enough */
-  surfxml_bufferstack = xbt_new0(char, surfxml_bufferstack_size);
-
-  const char*src;
-  const char*dst;
-  int is_symmetrical;
-  xbt_dynar_t links;
-  unsigned int cursor;
-  char *link_id;
-
-  if (! lua_istable(L, -1)) {
-    XBT_ERROR("Bad Arguments to create a route, Should be a table with named arguments");
-    return -1;
-  }
-
-  lua_pushstring(L,"src");
-  lua_gettable(L,-2);
-  src = lua_tostring(L, -1);
-  lua_pop(L,1);
-
-  lua_pushstring(L,"dest");
-  lua_gettable(L,-2);
-  dst = lua_tostring(L, -1);
-  lua_pop(L,1);
-
-  lua_pushstring(L,"links");
-  lua_gettable(L,-2);
-  links = xbt_str_split(lua_tostring(L, -1), ", \t\r\n");
-  if (xbt_dynar_is_empty(links))
-    xbt_dynar_push_as(links,char*,xbt_strdup(lua_tostring(L, -1)));
-  lua_pop(L,1);
-
-  lua_pushstring(L,"symmetrical");
-  lua_gettable(L,-2);
-  is_symmetrical = lua_tointeger(L, -1);
-  lua_pop(L,1);
-
-  /* We are relying on the XML bypassing mechanism since the corresponding sg_platf does not exist yet.
-   * Et ouais mon pote. That's the way it goes. F34R.
-   */
-  SURFXML_BUFFER_SET(route_src, src);
-  SURFXML_BUFFER_SET(route_dst, dst);
-  if (is_symmetrical)
-    A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_YES;
-  else
-    A_surfxml_route_symmetrical = A_surfxml_route_symmetrical_NO;
-  SURFXML_START_TAG(route);
-
-  xbt_dynar_foreach(links,cursor,link_id) {
-    SURFXML_BUFFER_SET(link_ctn_id, link_id);
-    A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE;
-    SURFXML_START_TAG(link_ctn);
-    SURFXML_END_TAG(link_ctn);
-  }
-  SURFXML_END_TAG(route);
-
-  xbt_dynar_free(&links);
-  free(surfxml_bufferstack);
-
-  return 0;
-}
-
-int console_AS_open(lua_State *L) {
- const char *id;
- const char *mode;
-
- if (! lua_istable(L, 1)) {
-   XBT_ERROR("Bad Arguments to AS_open, Should be a table with named arguments");
-   return -1;
- }
-
- lua_pushstring(L, "id");
- lua_gettable(L, -2);
- id = lua_tostring(L, -1);
- lua_pop(L, 1);
-
- lua_pushstring(L, "mode");
- lua_gettable(L, -2);
- mode = lua_tostring(L, -1);
- lua_pop(L, 1);
-
- sg_platf_new_AS_begin(id,mode);
-
- return 0;
-}
-int console_AS_close(lua_State *L) {
-  sg_platf_new_AS_end();
-  return 0;
-}
-
-int console_set_function(lua_State *L) {
-
-  const char *host_id ;
-  const char *function_id;
-  xbt_dynar_t args;
-
-  if (! lua_istable(L, 1)) {
-    XBT_ERROR("Bad Arguments to AS.new, Should be a table with named arguments");
-    return -1;
-  }
-
-  // get Host id
-  lua_pushstring(L, "host");
-  lua_gettable(L, -2);
-  host_id = lua_tostring(L, -1);
-  lua_pop(L, 1);
-
-  // get Function Name
-  lua_pushstring(L, "fct");
-  lua_gettable(L, -2);
-  function_id = lua_tostring(L, -1);
-  lua_pop(L, 1);
-
-  //get args
-  lua_pushstring(L,"args");
-  lua_gettable(L, -2);
-  args = xbt_str_split_quoted( lua_tostring(L,-1) );
-  lua_pop(L, 1);
-
-  // FIXME: hackish to go under MSG that way
-  m_host_t host = xbt_lib_get_or_null(host_lib,host_id,MSG_HOST_LEVEL);
-  if (!host) {
-    XBT_ERROR("no host '%s' found",host_id);
-    return -1;
-  }
-
-  MSG_set_function(host_id, function_id, args);
-
-  return 0;
-}
-
-int console_host_set_property(lua_State *L) {
-  const char* name ="";
-  const char* prop_id = "";
-  const char* prop_value = "";
-  if (!lua_istable(L, -1)) {
-    XBT_ERROR("Bad Arguments to create link, Should be a table with named arguments");
-    return -1;
-  }
-
-
-  // get Host id
-  lua_pushstring(L, "host");
-  lua_gettable(L, -2);
-  name = lua_tostring(L, -1);
-  lua_pop(L, 1);
-
-  // get prop Name
-  lua_pushstring(L, "prop");
-  lua_gettable(L, -2);
-  prop_id = lua_tostring(L, -1);
-  lua_pop(L, 1);
-  //get args
-  lua_pushstring(L,"value");
-  lua_gettable(L, -2);
-  prop_value = lua_tostring(L,-1);
-  lua_pop(L, 1);
-
-  // FIXME: hackish to go under MSG that way
-  m_host_t host = xbt_lib_get_or_null(host_lib,name,MSG_HOST_LEVEL);
-  if (!host) {
-    XBT_ERROR("no host '%s' found",name);
-    return -1;
-  }
-  xbt_dict_t props = MSG_host_get_properties(host);
-  xbt_dict_set(props,prop_id,xbt_strdup(prop_value),NULL);
-
-  return 0;
-}
-