1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/*
* interface.c: virInterface methods
*
* Copyright (C) 2010 Red Hat Inc.
* Copyright (C) 2013-2016 Chris Lalancette <clalancette@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <ruby.h>
#include <libvirt/libvirt.h>
#include <libvirt/virterror.h>
#include "common.h"
#include "connect.h"
#include "extconf.h"
static VALUE c_interface;
static void interface_free(void *i)
{
ruby_libvirt_free_struct(Interface, i);
}
static virInterfacePtr interface_get(VALUE i)
{
ruby_libvirt_get_struct(Interface, i);
}
VALUE ruby_libvirt_interface_new(virInterfacePtr i, VALUE conn)
{
return ruby_libvirt_new_class(c_interface, i, conn, interface_free);
}
/*
* call-seq:
* interface.undefine -> nil
*
* Call virInterfaceUndefine[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceUndefine]
* to undefine this interface.
*/
static VALUE libvirt_interface_undefine(VALUE i)
{
ruby_libvirt_generate_call_nil(virInterfaceUndefine,
ruby_libvirt_connect_get(i),
interface_get(i));
}
/*
* call-seq:
* interface.create(flags=0) -> nil
*
* Call virInterfaceCreate[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceCreate]
* to start this interface.
*/
static VALUE libvirt_interface_create(int argc, VALUE *argv, VALUE i)
{
VALUE flags = RUBY_Qnil;
rb_scan_args(argc, argv, "01", &flags);
ruby_libvirt_generate_call_nil(virInterfaceCreate,
ruby_libvirt_connect_get(i),
interface_get(i),
ruby_libvirt_value_to_uint(flags));
}
/*
* call-seq:
* interface.destroy(flags=0) -> nil
*
* Call virInterfaceDestroy[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceDestroy]
* to shutdown this interface.
*/
static VALUE libvirt_interface_destroy(int argc, VALUE *argv, VALUE i)
{
VALUE flags = RUBY_Qnil;
rb_scan_args(argc, argv, "01", &flags);
ruby_libvirt_generate_call_nil(virInterfaceDestroy,
ruby_libvirt_connect_get(i),
interface_get(i),
ruby_libvirt_value_to_uint(flags));
}
/*
* call-seq:
* interface.active? -> [true|false]
*
* Call virInterfaceIsActive[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceIsActive]
* to determine if this interface is currently active.
*/
static VALUE libvirt_interface_active_p(VALUE p)
{
ruby_libvirt_generate_call_truefalse(virInterfaceIsActive,
ruby_libvirt_connect_get(p),
interface_get(p));
}
/*
* call-seq:
* interface.name -> String
*
* Call virInterfaceGetName[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceGetName]
* to retrieve the name of this interface.
*/
static VALUE libvirt_interface_name(VALUE i)
{
ruby_libvirt_generate_call_string(virInterfaceGetName,
ruby_libvirt_connect_get(i), 0,
interface_get(i));
}
/*
* call-seq:
* interface.mac -> String
*
* Call virInterfaceGetMACString[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceGetMACString]
* to retrieve the MAC address of this interface.
*/
static VALUE libvirt_interface_mac(VALUE i)
{
ruby_libvirt_generate_call_string(virInterfaceGetMACString,
ruby_libvirt_connect_get(i),
0, interface_get(i));
}
/*
* call-seq:
* interface.xml_desc -> String
*
* Call virInterfaceGetXMLDesc[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceGetXMLDesc]
* to retrieve the XML of this interface.
*/
static VALUE libvirt_interface_xml_desc(int argc, VALUE *argv, VALUE i)
{
VALUE flags = RUBY_Qnil;
rb_scan_args(argc, argv, "01", &flags);
ruby_libvirt_generate_call_string(virInterfaceGetXMLDesc,
ruby_libvirt_connect_get(i),
1, interface_get(i),
ruby_libvirt_value_to_uint(flags));
}
/*
* call-seq:
* interface.free -> nil
*
* Call virInterfaceFree[https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceFree]
* to free this interface. The object will no longer be valid after this call.
*/
static VALUE libvirt_interface_free(VALUE i)
{
ruby_libvirt_generate_call_free(Interface, i);
}
/*
* Class Libvirt::Interface
*/
void ruby_libvirt_interface_init(void)
{
c_interface = rb_define_class_under(m_libvirt, "Interface", rb_cObject);
rb_undef_alloc_func(c_interface);
rb_define_singleton_method(c_interface, "new",
ruby_libvirt_new_not_allowed, -1);
rb_define_const(c_interface, "XML_INACTIVE",
INT2NUM(VIR_INTERFACE_XML_INACTIVE));
rb_define_attr(c_interface, "connection", 1, 0);
/* Interface object methods */
rb_define_method(c_interface, "name", libvirt_interface_name, 0);
rb_define_method(c_interface, "mac", libvirt_interface_mac, 0);
rb_define_method(c_interface, "xml_desc", libvirt_interface_xml_desc, -1);
rb_define_method(c_interface, "undefine", libvirt_interface_undefine, 0);
rb_define_method(c_interface, "create", libvirt_interface_create, -1);
rb_define_method(c_interface, "destroy", libvirt_interface_destroy, -1);
rb_define_method(c_interface, "free", libvirt_interface_free, 0);
rb_define_method(c_interface, "active?", libvirt_interface_active_p, 0);
}
|