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
|
#include <hocon/config_value.hpp>
#include <internal/config_util.hpp>
#include <internal/unmergeable.hpp>
#include <internal/replaceable_merge_stack.hpp>
#include <vector>
#pragma once
namespace hocon {
class config_delayed_merge : public config_value, public unmergeable, public replaceable_merge_stack {
public:
config_delayed_merge(shared_origin origin, std::vector<shared_value> stack);
config_value::type value_type() const override;
shared_value make_replacement(resolve_context const& context, int skipping) const override;
// static method also used by ConfigDelayedMergeObject; end may be null
static shared_value make_replacement(resolve_context const& context,
std::vector<shared_value> stack,
int skipping);
std::vector<shared_value> unmerged_values() const override;
unwrapped_value unwrapped() const override;
resolve_result<shared_value> resolve_substitutions(resolve_context const& context, resolve_source const& source) const override;
static resolve_result<shared_value> resolve_substitutions(std::shared_ptr<const replaceable_merge_stack> replaceable, const std::vector<shared_value>& _stack, resolve_context const& context, resolve_source const& source);
resolve_status get_resolve_status() const override { return resolve_status::UNRESOLVED; }
bool operator==(config_value const& other) const override;
shared_value replace_child(shared_value const& child, shared_value replacement) const override;
bool has_descendant(shared_value const& descendant) const override;
static void render(std::vector<shared_value> const& stack, std::string& s, int indent_value, bool at_root, std::string const& at_key, config_render_options options);
protected:
shared_value new_copy(shared_origin) const override;
bool ignores_fallbacks() const override;
virtual void render(std::string& result, int indent, bool at_root, std::string const& at_key, config_render_options options) const override;
virtual void render(std::string& result, int indent, bool at_root, config_render_options options) const override;
private:
std::vector<shared_value> _stack;
};
} // namespace hocon::config_delayed_merge
|