summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/yaml_parser.h
blob: e002fcf592786da59f1a2ea1c5dc69e865f37c8a (plain)
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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2022, Google Inc.
 *
 * yaml_parser.h - libcamera YAML parsing helper
 */

#pragma once

#include <cstdio>
#include <map>
#include <string>
#include <vector>

#include <libcamera/base/class.h>

#include <libcamera/geometry.h>

namespace libcamera {

class YamlParserContext;

class YamlObject
{
public:
	YamlObject();
	~YamlObject();

	bool isValue() const
	{
		return type_ == Type::Value;
	}
	bool isList() const
	{
		return type_ == Type::List;
	}
	bool isDictionary() const
	{
		return type_ == Type::Dictionary;
	}

#ifndef __DOXYGEN__
	template<typename T,
		 typename std::enable_if_t<
			 std::is_same<bool, T>::value ||
			 std::is_same<double, T>::value ||
			 std::is_same<int32_t, T>::value ||
			 std::is_same<uint32_t, T>::value ||
			 std::is_same<std::string, T>::value ||
			 std::is_same<Size, T>::value> * = nullptr>
#else
	template<typename T>
#endif
	T get(const T &defaultValue, bool *ok = nullptr) const;

	std::size_t size() const;
	const YamlObject &operator[](std::size_t index) const;

	bool contains(const std::string &key) const;
	const YamlObject &operator[](const std::string &key) const;
	std::vector<std::string> memberNames() const;

private:
	LIBCAMERA_DISABLE_COPY_AND_MOVE(YamlObject)

	friend class YamlParserContext;

	enum class Type {
		Dictionary,
		List,
		Value,
	};

	Type type_;

	std::string value_;
	std::vector<std::unique_ptr<YamlObject>> list_;
	std::map<const std::string, std::unique_ptr<YamlObject>> dictionary_;
};

class YamlParser final
{
public:
	static std::unique_ptr<YamlObject> parse(std::FILE *fh);
};

} /* namespace libcamera */