Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent include and src using this command:
[simgrid.git] / src / bindings / ruby / rb_msg_host.c
1 /* Host-related bindings to ruby  */
2
3 /* Copyright (c) 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "bindings/ruby_bindings.h"
10
11 // Free Method
12 void rb_host_free(m_host_t ht)
13 {
14   //Nothing to do !!?
15 }
16
17 // New Method : return a Host
18 VALUE rb_host_get_by_name(VALUE class, VALUE name)
19 {
20
21   const char *h_name = RSTRING(name)->ptr;
22   m_host_t host = MSG_get_host_by_name(h_name);
23   if (!host)
24     rb_raise(rb_eRuntimeError,
25              bprintf("No host called '%s' found", h_name));
26
27   return Data_Wrap_Struct(class, 0, rb_host_free, host);
28 }
29
30 //Get Name
31 VALUE rb_host_name(VALUE class, VALUE host)
32 {
33
34   // Wrap Ruby Value to m_host_t struct
35   m_host_t ht;
36   Data_Get_Struct(host, s_m_host_t, ht);
37   return rb_str_new2(MSG_host_get_name(ht));
38
39 }
40
41 // Get Number
42 VALUE rb_host_number(VALUE class)
43 {
44   return INT2NUM(MSG_get_host_number());
45 }
46
47 // Host Speed ( Double )
48 VALUE rb_host_speed(VALUE class, VALUE host)
49 {
50   m_host_t ht;
51   Data_Get_Struct(host, s_m_host_t, ht);
52   return MSG_get_host_speed(ht);
53 }
54
55 // Host is Avail
56 VALUE rb_host_is_avail(VALUE class, VALUE host)
57 {
58   m_host_t ht;
59   Data_Get_Struct(host, s_m_host_t, ht);
60   if (!ht) {
61     rb_raise(rb_eRuntimeError, "Host not Bound");
62     return Qnil;
63   }
64
65   if (MSG_host_is_avail(ht))
66     return Qtrue;
67
68   return Qfalse;
69 }
70
71 // getHost from process
72 VALUE rb_host_process(VALUE class, VALUE ruby_process)
73 {
74
75   m_process_t process = rb_process_to_native(ruby_process);
76   m_host_t host;
77
78
79   if (!process) {
80     rb_raise(rb_eRuntimeError, "Process Not Bound...while getting Host");
81     return Qnil;                // NULL
82   }
83
84   host = MSG_process_get_host(process);
85
86   return Data_Wrap_Struct(class, 0, rb_host_free, host);
87
88 }
89
90 // get all hosts
91 VALUE rb_host_get_all_hosts(VALUE class)
92 {
93   int nb, index;
94   m_host_t *hosts;
95   VALUE rb_hosts;
96   nb = MSG_get_host_number();
97   hosts = MSG_get_host_table();
98   rb_hosts = rb_ary_new2(nb);
99
100   for (index = 0; index < nb; index++)
101     rb_ary_push(rb_hosts,
102                 Data_Wrap_Struct(class, 0, rb_host_free, hosts[index]));
103
104   return rb_hosts;
105 }