Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fixing some privacy violation ( no more #include "msg/private.h") in ruby bindings...
[simgrid.git] / src / bindings / ruby / rb_msg_host.c
1 /* Host-related bindings to ruby  */
2
3 /* Copyright 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 #include "bindings/ruby_bindings.h"
9
10 // Free Method
11 void rb_host_free(m_host_t ht) {
12   //Nothing to do !!?
13 }
14
15 // New Method : return a Host
16 VALUE rb_host_get_by_name(VALUE class, VALUE name) {
17
18   const char * h_name = RSTRING(name)->ptr;
19   m_host_t host = MSG_get_host_by_name(h_name);
20   if(!host)
21     rb_raise(rb_eRuntimeError,bprintf("No host called '%s' found",h_name));
22
23   return Data_Wrap_Struct(class,0,rb_host_free,host);
24 }
25
26 //Get Name
27 VALUE rb_host_name(VALUE class,VALUE host) {
28
29   // Wrap Ruby Value to m_host_t struct
30   m_host_t ht;
31   Data_Get_Struct(host, s_m_host_t, ht);
32   return rb_str_new2(MSG_host_get_name(ht));
33
34 }
35
36 // Get Number
37 VALUE rb_host_number(VALUE class) {
38   return INT2NUM(MSG_get_host_number());
39 }
40
41 // Host Speed ( Double )
42 VALUE rb_host_speed(VALUE class,VALUE host) {
43   m_host_t ht ;
44   Data_Get_Struct(host,s_m_host_t,ht);
45   return MSG_get_host_speed(ht);
46 }
47
48 // Host is Avail
49 VALUE rb_host_is_avail(VALUE class,VALUE host) {
50   m_host_t ht;
51   Data_Get_Struct(host,s_m_host_t,ht);
52   if (!ht) {
53     rb_raise(rb_eRuntimeError,"Host not Bound");
54     return Qnil;
55   }
56
57   if(MSG_host_is_avail(ht))
58     return Qtrue;
59
60   return Qfalse;
61 }
62
63 // getHost from process
64 VALUE rb_host_process(VALUE class,VALUE ruby_process)
65 {
66   
67  m_process_t process = rb_process_to_native(ruby_process);
68   m_host_t host;
69   
70
71   if (!process) {
72     rb_raise(rb_eRuntimeError,"Process Not Bound...while getting Host");
73     return Qnil; // NULL
74   }
75   
76   host = MSG_process_get_host(process);
77   
78   return Data_Wrap_Struct(class, 0, rb_host_free, host); 
79
80 }
81
82 // get all hosts
83 VALUE rb_host_get_all_hosts(VALUE class)
84 {
85         int nb,index;
86         m_host_t *hosts;
87         VALUE rb_hosts;
88         nb = MSG_get_host_number();
89         hosts  = MSG_get_host_table();
90     rb_hosts = rb_ary_new2(nb);
91
92     for(index=0 ; index<nb; index++)
93         rb_ary_push(rb_hosts,Data_Wrap_Struct(class, 0, rb_host_free, hosts[index]));
94
95     return rb_hosts;
96 }
97