/* * libosinfo: The variant of an OS * * Copyright (C) 2013-2020 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 * . */ #include #include /** * SECTION:osinfo_os_variant * @short_description: A variant of an OS * @see_also: #OsinfoOs * * #OsinfoOsVariant is an entity representing a variant of an operating system. */ struct _OsinfoOsVariantPrivate { gboolean unused; }; G_DEFINE_TYPE_WITH_PRIVATE(OsinfoOsVariant, osinfo_os_variant, OSINFO_TYPE_ENTITY); enum { PROP_0, PROP_NAME, LAST_PROP }; static GParamSpec *properties[LAST_PROP]; static void osinfo_os_variant_get_property(GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { OsinfoOsVariant *variant = OSINFO_OS_VARIANT(object); switch (property_id) { case PROP_NAME: g_value_set_string(value, osinfo_os_variant_get_name(variant)); break; default: /* We don't have any other property... */ G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec); break; } } static void osinfo_os_variant_set_property(GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { OsinfoOsVariant *variant = OSINFO_OS_VARIANT(object); switch (property_id) { case PROP_NAME: osinfo_entity_set_param(OSINFO_ENTITY(variant), OSINFO_OS_VARIANT_PROP_NAME, g_value_get_string(value)); break; default: /* We don't have any other property... */ G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec); break; } } /* Init functions */ static void osinfo_os_variant_class_init(OsinfoOsVariantClass *klass) { GObjectClass *g_klass = G_OBJECT_CLASS(klass); g_klass->get_property = osinfo_os_variant_get_property; g_klass->set_property = osinfo_os_variant_set_property; /** * OsinfoOsVariant:name: * * The name to this variant. */ properties[PROP_NAME] = g_param_spec_string("name", "Name", _("The name to this variant"), NULL /* default value */, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); g_object_class_install_properties(g_klass, LAST_PROP, properties); } static void osinfo_os_variant_init(OsinfoOsVariant *variant) { variant->priv = osinfo_os_variant_get_instance_private(variant); } /** * osinfo_os_variant_new: * @id: the id of the os variant to be created * * Creates a new os variant * * Returns: (transfer full): An os variant entity * * Since: 0.2.9 */ OsinfoOsVariant *osinfo_os_variant_new(const gchar *id) { OsinfoOsVariant *variant; variant = g_object_new(OSINFO_TYPE_OS_VARIANT, "id", id, NULL); return variant; } /** * osinfo_os_variant_get_name: * @variant: an #OsinfoOsVariant instance * * The name of the @variant * * Returns: (transfer none): the name, or NULL * * Since: 0.2.9 */ const gchar *osinfo_os_variant_get_name(OsinfoOsVariant *variant) { return osinfo_entity_get_param_value(OSINFO_ENTITY(variant), OSINFO_OS_VARIANT_PROP_NAME); }