From a453b510057829ae5a5ea64d4c48508e620585eb Mon Sep 17 00:00:00 2001 From: Andre Nathan Date: Tue, 28 Jan 2014 15:08:10 -0200 Subject: [PATCH] Add Container#running_config_item --- ext/lxc/lxc.c | 31 +++++++++++++++++++++++++++++++ test/test_lxc_running.rb | 5 +++++ 2 files changed, 36 insertions(+) diff --git a/ext/lxc/lxc.c b/ext/lxc/lxc.c index 8f88c19..78bbec5 100644 --- a/ext/lxc/lxc.c +++ b/ext/lxc/lxc.c @@ -1247,6 +1247,35 @@ container_rename(VALUE self, VALUE rb_name) return rb_class_new_instance(2, rb_args, Container); } +/* + * call-seq: + * container.running_config_item(key) + * + * Returns the value corresponding to the given configuration item from a + * running container. + */ +static VALUE +container_running_config_item(VALUE self, VALUE rb_key) +{ + char *key, *value; + struct container_data *data; + struct lxc_container *container; + VALUE rb_value; + + Data_Get_Struct(self, struct container_data, data); + container = data->container; + + key = StringValuePtr(rb_key); + value = container->get_running_config_item(container, key); + if (value == NULL) + rb_raise(Error, "unable to read running configuration item: %s", key); + + rb_value = rb_str_new2(value); + free(value); + + return rb_value; +} + static VALUE container_save_config(int argc, VALUE *argv, VALUE self) { @@ -1684,6 +1713,8 @@ Init_lxc(void) rb_define_method(Container, "remove_device_node", container_remove_device_node, 0); rb_define_method(Container, "rename", container_rename, 1); + rb_define_method(Container, "running_config_item", + container_running_config_item, 1); rb_define_method(Container, "save_config", container_save_config, -1); rb_define_method(Container, "set_cgroup_item", container_set_cgroup_item, 2); diff --git a/test/test_lxc_running.rb b/test/test_lxc_running.rb index b2a3c26..9e541bf 100644 --- a/test/test_lxc_running.rb +++ b/test/test_lxc_running.rb @@ -30,6 +30,11 @@ class TestLXCRunning < Test::Unit::TestCase assert_equal(:running, @container.state) end + def test_container_config_item + key = 'lxc.network.0.type' + assert_equal('veth', @container.running_config_item(key)) + end + def test_container_interfaces assert_equal(['eth0', 'lo'], @container.interfaces.sort) end