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
|
/*
* This file is part of libmodulemd
* Copyright (C) 2017-2018 Stephen Gallagher
*
* 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 "modulemd-defaults-v1.h"
#include "modulemd-subdocument-info.h"
#include <glib-object.h>
#include <yaml.h>
G_BEGIN_DECLS
/**
* SECTION: modulemd-defaults-v1-private
* @title: Modulemd.DefaultsV1 (Private)
* @stability: private
* @short_description: #ModulemdDefaults methods that should only be used by
* internal consumers.
*/
#define DEFAULT_MERGE_CONFLICT "__merge_conflict__"
/**
* modulemd_defaults_v1_parse_yaml:
* @subdoc: (in): A #ModulemdSubdocumentInfo representing a defaults document
* of metadata version 1.
* @strict: (in): Whether the parser should return failure if it encounters an
* unknown mapping key or if it should ignore it.
* @error: (out): A #GError that will return the reason for a parsing or
* validation error.
*
* Returns: (transfer full): A newly-allocated #ModulemdDefaultsV1 object read
* from the YAML. NULL if a parse or validation error occurred and sets @error
* appropriately.
*
* Since: 2.0
*/
ModulemdDefaultsV1 *
modulemd_defaults_v1_parse_yaml (ModulemdSubdocumentInfo *subdoc,
gboolean strict,
GError **error);
/**
* modulemd_defaults_v1_emit_yaml:
* @self: This #ModulemdDefaultsV1 object.
* @emitter: (inout): A libyaml emitter object positioned where a Defaults (v1)
* data section belongs in the YAML document.
* @error: (out): A #GError that will return the reason for an emission or
* validation error.
*
* Returns: TRUE if the #ModulemdDefaults was emitted successfully. FALSE and
* sets @error appropriately if the YAML could not be emitted.
*
* Since: 2.0
*/
gboolean
modulemd_defaults_v1_emit_yaml (ModulemdDefaultsV1 *self,
yaml_emitter_t *emitter,
GError **error);
/**
* modulemd_defaults_v1_merge:
* @from: (in): A #ModulemdDefaultsV1 object to merge from.
* @into: (in): A #ModulemdDefaultsV1 object being merged into.
* @strict_default_streams: (in): Whether a stream conflict should throw an
* error or just unset the default stream.
* @error: (out): A #GError containing the reason for an unresolvable merge
* conflict.
*
* Performs a merge of two #ModulemdDefaultsV1 objects representing the
* defaults for a single module name. See the documentation for
* #ModulemdModuleIndexMerger for details on the merge algorithm used.
*
* Returns: (transfer full): A newly-allocated #ModulemdDefaultsV1 object
* containing the merged values of @from and @into. If this function encounters
* an unresolvable merge conflict, it will return NULL and set @error
* appropriately.
*
* Since: 2.0
*/
ModulemdDefaults *
modulemd_defaults_v1_merge (ModulemdDefaultsV1 *from,
ModulemdDefaultsV1 *into,
gboolean strict_default_streams,
GError **error);
G_END_DECLS
|