Codebase list libvirt-glib / upstream/0.1.6 libvirt-gconfig / libvirt-gconfig-capabilities-host.c
upstream/0.1.6

Tree @upstream/0.1.6 (Download .tar.gz)

libvirt-gconfig-capabilities-host.c @upstream/0.1.6raw · history · blame

/*
 * libvirt-gconfig-capabilities-host.c: libvirt host capabilities
 *
 * Copyright (C) 2008 Daniel P. Berrange
 * Copyright (C) 2010-2012 Red Hat, Inc.
 *
 * 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, see
 * <http://www.gnu.org/licenses/>.
 *
 * Authors: Zeeshan Ali <zeenix@redhat.com>
 *          Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include "libvirt-gconfig/libvirt-gconfig.h"
#include "libvirt-gconfig/libvirt-gconfig-private.h"

#define GVIR_CONFIG_CAPABILITIES_HOST_GET_PRIVATE(obj)                         \
        (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_CAPABILITIES_HOST, GVirConfigCapabilitiesHostPrivate))

struct _GVirConfigCapabilitiesHostPrivate
{
    gboolean unused;
};

G_DEFINE_TYPE(GVirConfigCapabilitiesHost, gvir_config_capabilities_host, GVIR_CONFIG_TYPE_OBJECT);


static void gvir_config_capabilities_host_class_init(GVirConfigCapabilitiesHostClass *klass)
{
    g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesHostPrivate));
}

static void gvir_config_capabilities_host_init(GVirConfigCapabilitiesHost *host)
{
    g_debug("Init GVirConfigCapabilitiesHost=%p", host);

    host->priv = GVIR_CONFIG_CAPABILITIES_HOST_GET_PRIVATE(host);
}

const gchar *
gvir_config_capabilities_host_get_uuid(GVirConfigCapabilitiesHost *host)
{
    return gvir_config_object_get_node_content(GVIR_CONFIG_OBJECT(host), "uuid");
}

/**
 * gvir_config_capabilities_host_get_cpu:
 *
 * Gets the CPU capabilities of the host.
 *
 * Returns: (transfer full): a new #GVirConfigCapabilitiesCpu.
 */
GVirConfigCapabilitiesCpu *
gvir_config_capabilities_host_get_cpu(GVirConfigCapabilitiesHost *host)
{
    GVirConfigObject *object;

    g_return_val_if_fail(GVIR_CONFIG_IS_CAPABILITIES_HOST(host), NULL);

    object = gvir_config_object_get_child_with_type
                                (GVIR_CONFIG_OBJECT(host),
                                 "cpu",
                                 GVIR_CONFIG_TYPE_CAPABILITIES_CPU);

    return GVIR_CONFIG_CAPABILITIES_CPU(object);
}