Files
external_libcamera/include/libcamera/internal/global_configuration.h
Milan Zamazal 17febd7bb3 config: Add configuration retrieval helpers
Let's add some helpers to make accessing simple configuration values
simpler.  The helpers are used in the followup patches.

GlobalConfiguration::option ensures that no value is returned rather
than a value of YamlObject::empty.

Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2025-09-21 09:42:11 +03:00

63 lines
1.4 KiB
C++

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2024-2025 Red Hat, inc.
*
* Global configuration handling
*/
#pragma once
#include <filesystem>
#include <optional>
#include <string>
#include <string_view>
#include <libcamera/base/utils.h>
#include "libcamera/internal/yaml_parser.h"
namespace libcamera {
class GlobalConfiguration
{
public:
using Configuration = const YamlObject &;
GlobalConfiguration();
unsigned int version() const;
Configuration configuration() const;
template<typename T>
std::optional<T> option(
const std::initializer_list<std::string_view> confPath) const
{
const YamlObject *c = &configuration();
for (auto part : confPath) {
c = &(*c)[part];
if (!*c)
return {};
}
return c->get<T>();
}
std::optional<std::vector<std::string>> listOption(
const std::initializer_list<std::string_view> confPath) const;
std::optional<std::string> envOption(
const char *const envVariable,
const std::initializer_list<std::string_view> confPath) const;
std::optional<std::vector<std::string>> envListOption(
const char *const envVariable,
const std::initializer_list<std::string_view> confPath,
const std::string delimiter = ":") const;
private:
bool loadFile(const std::filesystem::path &fileName);
void load();
std::unique_ptr<YamlObject> yamlConfiguration_ =
std::make_unique<YamlObject>();
};
} /* namespace libcamera */