/
githubmirror
/
libmodulemd
Обзор
Документация
Войти
/
githubmirror
/
libmodulemd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modulemd/include/modulemd-2.0/modulemd-dependencies.h
222 строки
6 KB
Stephen Gallagher
Drop v1 code and refactor build system
17 июл 2019, 23:13
17 июл 2019, 23:13
1df0553
Код
Авторство
О чём код?
/* * This file is part of libmodulemd * Copyright (C) 2018 Red Hat, Inc. * * Fedora-License-Identifier: MIT * SPDX-2.0-License-Identifier: MIT * SPDX-3.0-License-Identifier: MIT * * This program is free software. * For more information on the license, see COPYING. * For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>. */ #pragma once #include <glib-object.h> G_BEGIN_DECLS /** * SECTION: modulemd-dependencies * @title: Modulemd.Dependencies * @stability: stable * @short_description: Object to represent build-time and runtime dependencies of a module stream. */ #define MODULEMD_TYPE_DEPENDENCIES (modulemd_dependencies_get_type ()) G_DECLARE_FINAL_TYPE ( ModulemdDependencies, modulemd_dependencies, MODULEMD, DEPENDENCIES, GObject) /** * modulemd_dependencies_new: * * Returns: (transfer full): A newly-allocated #ModulemdDependencies object. * This object must be freed with g_object_unref(). * * Since: 2.0 */ ModulemdDependencies * modulemd_dependencies_new (void); /** * modulemd_dependencies_equals: * @self_1: A #ModulemdDependencies object. * @self_2: A #ModulemdDependencies object. * * Check if @self_1 and @self_2 are equal objects. * * Returns: TRUE, if the're equal. FALSE, otherwise. * * Since: 2.2 */ gboolean modulemd_dependencies_equals (ModulemdDependencies *self_1, ModulemdDependencies *self_2); /** * modulemd_dependencies_copy: * @self: This #ModulemdDependencies object. * * Create a copy of this #ModulemdDependencies object. * * Returns: (transfer full): The copied #ModulemdDependencies object. * * Since: 2.0 */ ModulemdDependencies * modulemd_dependencies_copy (ModulemdDependencies *self); /** * modulemd_dependencies_add_buildtime_stream: * @self: This #ModulemdDependencies object. * @module_name: The name of the module to depend on. * @module_stream: The name of the module stream to depend on. * * Add a single stream of a module that is required to build another dependent * module. The matrix of streams and module names will be calculated by the * build-system. If the provided module name is already present, the streams * will be added (with deduplication). * * Since: 2.0 */ void modulemd_dependencies_add_buildtime_stream (ModulemdDependencies *self, const gchar *module_name, const gchar *module_stream); /** * modulemd_dependencies_set_empty_buildtime_dependencies_for_module: * @self: This #ModulemdDependencies object. * @module_name: The name of the module to add dependencies on. * * Adds a module and inserts an empty list for it as buildtime dependency. * * Since: 2.0 */ void modulemd_dependencies_set_empty_buildtime_dependencies_for_module ( ModulemdDependencies *self, const gchar *module_name); /** * modulemd_dependencies_clear_buildtime_dependencies: * @self: This #ModulemdDependencies object. * * Remove all buildtime dependencies from this #ModulemdDependencies object. * * Since: 2.5 */ void modulemd_dependencies_clear_buildtime_dependencies ( ModulemdDependencies *self); /** * modulemd_dependencies_get_buildtime_modules_as_strv: (rename-to modulemd_dependencies_get_buildtime_modules) * @self: This #ModulemdDependencies object. * * Returns: (transfer full): An ordered #GStrv list of module names of * build-time dependencies. * * Since: 2.0 */ GStrv modulemd_dependencies_get_buildtime_modules_as_strv ( ModulemdDependencies *self); /** * modulemd_dependencies_get_buildtime_streams_as_strv: (rename-to modulemd_dependencies_get_buildtime_streams) * @self: This #ModulemdDependencies object. * @module: The name of the module. * * Returns: (transfer full) (nullable): An ordered #GStrv list of module * streams associated with the specified module that are required at * build-time. * * Since: 2.0 */ GStrv modulemd_dependencies_get_buildtime_streams_as_strv ( ModulemdDependencies *self, const gchar *module); /** * modulemd_dependencies_add_runtime_stream: * @self: This #ModulemdDependencies object. * @module_name: The name of the module to depend on. * @module_stream: The name of the module stream to depend on. * * Adds a module and its stream that is required at runtime by a dependent * module. The matrix of streams and module names will be calculated by the * build-system. If the listed provided module name is already present, the * streams will be added (with deduplication). * * Since: 2.0 */ void modulemd_dependencies_add_runtime_stream (ModulemdDependencies *self, const gchar *module_name, const gchar *module_stream); /** * modulemd_dependencies_set_empty_runtime_dependencies_for_module: * @self: This #ModulemdDependencies object. * @module_name: The name of the module to add dependencies on. * * Adds a module and inserts an empty list for it as runtime dependency. * * Since: 2.0 */ void modulemd_dependencies_set_empty_runtime_dependencies_for_module ( ModulemdDependencies *self, const gchar *module_name); /** * modulemd_dependencies_clear_runtime_dependencies: * @self: This #ModulemdDependencies object. * * Remove all runtime dependencies from this #ModulemdDependencies object. * * Since: 2.5 */ void modulemd_dependencies_clear_runtime_dependencies (ModulemdDependencies *self); /** * modulemd_dependencies_get_runtime_modules_as_strv: (rename-to modulemd_dependencies_get_runtime_modules) * @self: This #ModulemdDependencies object. * * Returns: (transfer full): An ordered #GStrv list of module names of run-time * dependencies. * * Since: 2.0 */ GStrv modulemd_dependencies_get_runtime_modules_as_strv (ModulemdDependencies *self); /** * modulemd_dependencies_get_runtime_streams_as_strv: (rename-to modulemd_dependencies_get_runtime_streams) * @self: This #ModulemdDependencies object. * @module: The name of the module. * * Returns: (transfer full) (nullable): An ordered #GStrv list of module streams * associated with the specified module that are required at run-time. * * Since: 2.0 */ GStrv modulemd_dependencies_get_runtime_streams_as_strv (ModulemdDependencies *self, const gchar *module); G_END_DECLS