Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
94445434da006f079dd038750f01192da52f124b
[simgrid.git] / src / bindings / ruby_bindings.h
1 /* SimGrid -- Ruby bindings */
2
3 /* Copyright (c) 2010, the SimGrid team. All right reserved */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8
9 #ifndef RB_SG_BINDINGS
10 #define RB_SG_BINDINGS
11 /*
12  * There is 4 sections in this file:
13  *  - Header loading (ruby makes it quite difficult, damn it)
14  *  - definitions of ruby contextes for use in simix
15  *  - Functions to Manage The Ruby Process  (named Up Calls)
16  *  - Functions to Manage The Native Process Simulation Bound (named Down Calls)
17  */
18
19 #include "msg/msg.h"
20 #include "msg/private.h"
21 #include "msg/datatypes.h"
22
23 #include "surf/surfxml_parse.h"
24 #include "simix/simix.h"
25 #include "simix/private.h"
26 #include "xbt/sysdep.h"
27 #include "xbt/log.h"
28 #include "xbt/asserts.h"
29
30 #include "simix/smx_context_private.h"
31
32 /* Damn Ruby. They load their full config.h, which breaks since we also load ours.
33  * So, we undef the offending defines
34  */
35 #undef PACKAGE_VERSION
36 #undef PACKAGE_NAME
37 #undef PACKAGE_TARNAME
38 #undef PACKAGE_STRING
39 #undef PACKAGE_BUGREPORT
40 #undef _GNU_SOURCE
41 #include <ruby.h>
42
43 /* ********************* *
44  * Context related stuff *
45  * ********************* */
46 typedef struct s_smx_ctx_ruby {
47   s_smx_ctx_base_t super;  /* Fields of super implementation */
48   VALUE process;   // The  Ruby Process Instance
49   //...
50 }s_smx_ctx_ruby_t,*smx_ctx_ruby_t;
51 void SIMIX_ctx_ruby_factory_init(smx_context_factory_t *factory);
52
53 void Init_simgrid_ruby(void); /* Load the bindings */
54 void initRuby(void); // Mandatory to call Ruby methods from C
55
56 /* *********************************************** *
57  * Functions for Ruby Process Management (Up Call) *
58  *                                                 *
59  * Independent Methods                             *
60  * *********************************************** */
61
62 VALUE rb_process_getName( VALUE ruby_process );
63 VALUE rb_process_getID(VALUE ruby_process);
64 VALUE rb_process_getBind(VALUE ruby_class);
65 void  rb_process_setBind(VALUE ruby_class,long bind);
66 VALUE rb_process_isAlive(VALUE ruby_process);
67 void  rb_process_kill_up(VALUE ruby_process);
68 void  rb_process_join( VALUE ruby_process );
69 void  rb_process_unschedule( VALUE ruby_process );
70 void  rb_process_schedule( VALUE ruby_process );
71
72 /* ********************************************** *
73  * Function for Native Process (Bound) Management *
74  *                                                *
75  * Methods Belonging to The MSG Module            *
76  * ********************************************** */
77
78 // ProcessBind Method ; Process Ruby >> Process C
79
80 //friend Method // Not belong to the Class but Called within !!
81 m_process_t rb_process_to_native(VALUE ruby_process);
82 // Binding Process >> Friend Method
83 void rb_process_bind(VALUE ruby_class,m_process_t process);
84 void rb_process_create(VALUE Class,VALUE rb_process,VALUE host);
85 void rb_process_suspend(VALUE Class,VALUE ruby_process);
86 void rb_process_resume(VALUE Class,VALUE ruby_process);
87 // Returns Boolean ( Qtrue / Qfalse )
88 VALUE rb_process_isSuspended(VALUE Class,VALUE ruby_process);
89 void rb_process_kill_down(VALUE Class,VALUE ruby_process);
90 VALUE rb_process_getHost(VALUE Class,VALUE ruby_process);
91 void rb_process_exit(VALUE Class,VALUE ruby_process);
92
93 /* Functions related to hosts */
94 void  rb_host_free(m_host_t ht);
95 VALUE rb_host_get_by_name(VALUE Class, VALUE name);
96 VALUE rb_host_name(VALUE Class,VALUE host);
97 VALUE rb_host_number(VALUE Class);
98 VALUE rb_host_speed(VALUE Class,VALUE host);
99 void  rb_host_set_data(VALUE Class,VALUE host,VALUE data);
100 VALUE rb_host_get_data(VALUE Class,VALUE host);
101 VALUE rb_host_is_avail(VALUE Class,VALUE host);
102 VALUE rb_host_process(VALUE Class,VALUE process);
103 VALUE rb_host_get_all_hosts(VALUE Class);
104
105 /* Functions related to tasks */
106 void rb_task_free(m_task_t tk);
107 // New Method  >>> Data NULL
108 VALUE rb_task_new(VALUE Class, VALUE name,VALUE comp_size,VALUE comm_size);
109 void  rb_task_set_data(VALUE Class,VALUE task,VALUE data); // Data as a String
110 VALUE rb_task_get_data(VALUE Class,VALUE task);
111 VALUE rb_task_comp(VALUE Class,VALUE task); // Get Computation Size
112 VALUE rb_task_name(VALUE Class,VALUE task);
113 VALUE rb_task_execute(VALUE Class,VALUE task);
114 void  rb_task_send(VALUE Class,VALUE task,VALUE mailbox);
115 VALUE rb_task_receive(VALUE Class,VALUE mailbox);// Receive : return a task
116 void  rb_task_receive2(VALUE Class,VALUE task,VALUE mailbox);// Receive Task 2 <<  Not Appreciated
117 VALUE rb_task_sender(VALUE Class,VALUE task);
118 VALUE rb_task_source(VALUE Class,VALUE task);
119 VALUE rb_task_listen(VALUE Class,VALUE task,VALUE alias); //Listen From Alias (=mailbox)
120 VALUE rb_task_listen_host(VALUE Class,VALUE task,VALUE alias,VALUE host); //Listen from Host
121 void rb_task_set_priority(VALUE Class,VALUE task,VALUE priority); // Set Priority
122 void rb_task_cancel(VALUE Class,VALUE task); // Cancel
123
124 /* Upcalls for the application handler */
125 void rb_application_handler_on_start_document(void);
126 void rb_application_handler_on_end_document(void);
127 void rb_application_handler_on_begin_process(void);
128 void rb_application_handler_on_process_arg(void);
129 void rb_application_handler_on_property(void);
130 void rb_application_handler_on_end_process(void);
131
132 #endif /* RB_SG_BINDINGS */