Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Compile fix
[simgrid.git] / src / simix / smx_context_ruby.c
index 54a9fdf..295accd 100644 (file)
-/* $Id$ */
+/* context_Ruby - implementation of context switching with/for ruby         */
 
-/* context_Ruby - implementation of context switching with ruby coroutines */
-
-/* Copyright (c) 2010, the SimGrid team. All right reserved */
+/* 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 <ruby.h>
-#include "private.h"
+
 #include "xbt/function_types.h"
 #include "xbt/sysdep.h"
 #include "xbt/log.h"
 #include "xbt/asserts.h"
-#include "context_sysv_config.h"
-#include "bindings/ruby/rb_msg_process.c"
 
+#include "bindings/ruby_bindings.h"
 
-typedef struct s_smx_ctx_ruby
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ruby);
 
-{
-  SMX_CTX_BASE_T;
-  VALUE process;   // The  Ruby Process Instance 
-  //...
-}s_smx_ctx_ruby_t,*smx_ctx_ruby_t;
-  
 static smx_context_t
-smx_ctx_ruby_create_context(xbt_main_func_t code,int argc,char** argv,
-                           void_f_pvoid_t cleanup_func,void *cleanup_arg);
-
-static int smx_ctx_ruby_factory_finalize(smx_context_factory_t *factory);
-
-static void smx_ctx_ruby_free(smx_context_t context);
-
-static void smx_ctx_ruby_start(smx_context_t context);
+smx_ctx_ruby_create_context(xbt_main_func_t code, int argc, char **argv,
+    void_pfn_smxprocess_t cleanup_func,
+    void *data);
 
 static void smx_ctx_ruby_stop(smx_context_t context);
-
 static void smx_ctx_ruby_suspend(smx_context_t context);
+static void smx_ctx_ruby_resume(smx_context_t new_context);
+static void smx_ctx_ruby_runall(xbt_swag_t processes);
 
-static void 
-  smx_ctx_ruby_resume(smx_context_t old_context,smx_context_t new_context);
-
-static void smx_ctx_ruby_wrapper(void); 
-
-
-
-void SIMIX_ctx_ruby_factory_init(smx_context_factory_t *factory)
+void SIMIX_ctx_ruby_factory_init(smx_context_factory_t * factory)
 {
-  
- *factory = xbt_new0(s_smx_context_factory_t,1);
- (*factory)->create_context = smx_ctx_ruby_create_context;
- (*factory)->finalize = smx_ctx_ruby_factory_finalize;
- (*factory)->free = smx_ctx_ruby_free;
- (*factory)->start = smx_ctx_ruby_start;
- (*factory)->stop = smx_ctx_ruby_stop;
- (*factory)->suspend = smx_ctx_ruby_suspend;
- (*factory)->resume = smx_ctx_ruby_resume;
- (*factory)->name = "smx_ruby_context_factory";
+  smx_ctx_base_factory_init(factory);
+
+  (*factory)->create_context = smx_ctx_ruby_create_context;
+  /* Do not overload that method (*factory)->finalize */
+  /* Do not overload that method (*factory)->free */
+  (*factory)->stop = smx_ctx_ruby_stop;
+  (*factory)->suspend = smx_ctx_ruby_suspend;
+  (*factory)->name = "smx_ruby_context_factory";
+  (*factory)->runall = smx_ctx_ruby_runall;
   ruby_init();
   ruby_init_loadpath();
-  #ifdef MY_DEBUG
-  printf("SIMIX_ctx_ruby_factory_init...Done\n");
-  #endif 
-}
-  
-static int smx_ctx_ruby_factory_finalize(smx_context_factory_t *factory)
-{
-  
- free(*factory);
- *factory = NULL;
- return 0;
 }
 
-static smx_context_t 
-  smx_ctx_ruby_create_context(xbt_main_func_t code,int argc,char** argv,
-                             void_f_pvoid_t cleanup_func,void* cleanup_arg)
-{
-  
-  smx_ctx_ruby_t context = xbt_new0(s_smx_ctx_ruby_t,1);
-  
-  /*if the user provided a function for the process , then use it 
-  Otherwise it's the context for maestro */
-  if( code )
-  {
-   context->cleanup_func = cleanup_func;
-   context->cleanup_arg = cleanup_arg;
-   context->process = (VALUE)code;
-   
-  #ifdef MY_DEBUG
-  printf("smx_ctx_ruby_create_context...Done\n");
-  #endif
-   
-  }
-  return (smx_context_t) context;
-  
-}
-  
-static void smx_ctx_ruby_free(smx_context_t context)
+static smx_context_t
+smx_ctx_ruby_create_context(xbt_main_func_t code, int argc, char **argv,
+    void_pfn_smxprocess_t cleanup_func, void *data)
 {
- /* VALUE process;
-  if (context)
-  {
-   smx_ctx_ruby_t ctx_ruby = (smx_ctx_ruby_t) context;
-   
-   if (ctx_ruby->process){
-     // if the Ruby Process is Alive , Join it   
-   // if ( process_isAlive(ctx_ruby->process))
-    {
-      process = ctx_ruby->process;
-      ctx_ruby->process = Qnil;
-      process_join(process);
-    } 
-    
+
+  smx_ctx_ruby_t context = (smx_ctx_ruby_t)
+      smx_ctx_base_factory_create_context_sized(sizeof(s_smx_ctx_ruby_t),
+                                                code, argc, argv,
+                                                cleanup_func, data);
+
+  /* if the user provided a function for the process , then use it
+     Otherwise it's the context for maestro */
+  if (code) {
+    context->process = (VALUE) code;
+
+    DEBUG1("smx_ctx_ruby_create_context(%s)...Done", argv[0]);
   }
-  free(context);
-  context = NULL; 
-  }*/
-  free (context);
-  context = NULL;
-    #ifdef MY_DEBUG
-  printf("smx_ctx_ruby_free_context...Done\n");
-  #endif
   
-}
-
-static void smx_ctx_ruby_start(smx_context_t context)
-{
-   
- /* Already Done .. Since a Ruby Process is launched within initialization
- We Start it Within the Initializer ... We Use the Semaphore To Keep 
- The Thread Alive Waitin' For Mutex Signal to Execute The Main*/
+  return (smx_context_t) context;
 }
 
 static void smx_ctx_ruby_stop(smx_context_t context)
 {
-  
-  
+  DEBUG0("smx_ctx_ruby_stop()");
   VALUE process = Qnil;
-  smx_ctx_ruby_t ctx_ruby,current;
-  
-  if ( context->cleanup_func)
-    (*(context->cleanup_func)) (context->cleanup_arg);
-  
+  smx_ctx_ruby_t ctx_ruby, current;
+
+  smx_ctx_base_stop(context);
+
   ctx_ruby = (smx_ctx_ruby_t) context;
-  
-  // Well , Let's Do The Same as JNI Stoppin' Process
-  if ( simix_global->current_process->iwannadie )
-  {
-   if( ctx_ruby->process )
-   {
-    //if the Ruby Process still Alive ,let's Schedule it
-    if ( process_isAlive( ctx_ruby->process ) )
-    {
-     current = (smx_ctx_ruby_t)simix_global->current_process->context;
-     process_schedule(current->process); 
-     process = ctx_ruby->process;     
-     // interupt/kill The Ruby Process
-     process_kill(process);
+
+  if (((smx_process_t)smx_current_context->data)->iwannadie) {
+    if (ctx_ruby->process) {
+
+      //if the Ruby Process still Alive ,let's Schedule it
+      if (rb_process_isAlive(ctx_ruby->process)) {
+
+        current = (smx_ctx_ruby_t) smx_current_context;
+        rb_process_schedule(current->process);
+        process = ctx_ruby->process;
+        // interupt/kill The Ruby Process
+        rb_process_kill_up(process);
+      }
     }
-   }    
-  }else {
-   
-    process = ctx_ruby->process;
-    ctx_ruby->process = Qnil;
-    
+  } else {
+
+    if (ctx_ruby->process)
+      ctx_ruby->process = Qnil;
+
   }
-  #ifdef MY_DEBUG
-  printf("smx_ctx_ruby_stop...Done\n");
-  #endif
 }
 
 static void smx_ctx_ruby_suspend(smx_context_t context)
 {
 
-if (context)
-{
-smx_ctx_ruby_t ctx_ruby = (smx_ctx_ruby_t) context;
+  DEBUG1("smx_ctx_ruby_suspend(%s)", context->argv[0]);
+  smx_ctx_ruby_t ctx_ruby = (smx_ctx_ruby_t) context;
   if (ctx_ruby->process)
-    process_unschedule( ctx_ruby->process ) ;
-#ifdef MY_DEBUG
-  printf("smx_ctx_ruby_unschedule...Done\n");
-#endif
+    rb_process_unschedule(ctx_ruby->process);
 }
-  
-  else
-    rb_raise(rb_eRuntimeError,"smx_ctx_ruby_suspend failed");
-  
+
+static void smx_ctx_ruby_resume(smx_context_t new_context)
+{
+  DEBUG1("smx_ctx_ruby_resume(%s)",
+         (new_context->argc ? new_context->argv[0] : "maestro"));
+
+  smx_ctx_ruby_t ctx_ruby = (smx_ctx_ruby_t) new_context;
+  rb_process_schedule(ctx_ruby->process);
 }
 
-static void smx_ctx_ruby_resume(smx_context_t old_context,smx_context_t new_context)
+static void smx_ctx_ruby_runall(xbt_swag_t processes)
 {
-  
smx_ctx_ruby_t ctx_ruby = (smx_ctx_ruby_t) new_context;
- process_schedule(ctx_ruby->process);
-  #ifdef MY_DEBUG
-    printf("smx_ctx_ruby_schedule...Done\n");
-  #endif
+  smx_process_t process;
 smx_context_t old_context;
+  while ((process = xbt_swag_extract(processes))) {
+    old_context = smx_current_context;
+    smx_current_context = process->context;
+    smx_ctx_ruby_resume(smx_current_context);
+    smx_current_context = old_context;
+  } 
 }