]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/jaeger-client-cpp/src/jaegertracing/utils/YAML.h
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / jaeger-client-cpp / src / jaegertracing / utils / YAML.h
CommitLineData
f67539c2
TL
1/*
2 * Copyright (c) 2017 Uber Technologies, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef JAEGERTRACING_UTILS_YAML_H
18#define JAEGERTRACING_UTILS_YAML_H
19
20#include "jaegertracing/Constants.h"
21
22#ifdef JAEGERTRACING_WITH_YAML_CPP
23
24#include <yaml-cpp/yaml.h>
25
26namespace jaegertracing {
27namespace utils {
28namespace yaml {
29
30template <typename ValueType, typename KeyType, typename DefaultValueType>
31ValueType findOrDefault(const YAML::Node& node,
32 const KeyType& key,
33 const DefaultValueType& defaultValue)
34{
35 const auto valueNode = node[key];
36 if (!valueNode.IsDefined()) {
37 return defaultValue;
38 }
39 return valueNode.template as<ValueType>();
40}
41
42} // namespace yaml
43} // namespace utils
44} // namespace jaegertracing
45
46#endif // JAEGERTRACING_WITH_YAML_CPP
47
48#endif // JAEGERTRACING_UTILS_YAML_H