This file is indexed.

/usr/include/yaml-cpp/node/convert.h is in libyaml-cpp-dev 0.5.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#ifndef NODE_CONVERT_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define NODE_CONVERT_H_62B23520_7C8E_11DE_8A39_0800200C9A66

#if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
#pragma once
#endif


#include "yaml-cpp/binary.h"
#include "yaml-cpp/node/node.h"
#include "yaml-cpp/node/iterator.h"
#include "yaml-cpp/null.h"
#include <limits>
#include <list>
#include <map>
#include <sstream>
#include <vector>

namespace YAML
{
    namespace conversion {
        inline bool IsInfinity(const std::string& input) {
            return input == ".inf" || input == ".Inf" || input == ".INF" || input == "+.inf" || input == "+.Inf" || input == "+.INF";
        }
        
        inline bool IsNegativeInfinity(const std::string& input) {
            return input == "-.inf" || input == "-.Inf" || input == "-.INF";
        }
        
        inline bool IsNaN(const std::string& input) {
            return input == ".nan" || input == ".NaN" || input == ".NAN";
        }
    }
    
	// std::string
	template<>
	struct convert<std::string> {
		static Node encode(const std::string& rhs) {
			return Node(rhs);
		}
		
		static bool decode(const Node& node, std::string& rhs) {
			if(!node.IsScalar())
				return false;
			rhs = node.Scalar();
			return true;
		}
	};
	
	// C-strings can only be encoded
	template<>
	struct convert<const char *> {
		static Node encode(const char *&rhs) {
			return Node(rhs);
		}
	};

	template<std::size_t N>
	struct convert<const char[N]> {
		static Node encode(const char (&rhs)[N]) {
			return Node(rhs);
		}
	};

    template<>
	struct convert<_Null> {
		static Node encode(const _Null& /* rhs */) {
			return Node();
		}
		
		static bool decode(const Node& node, _Null& /* rhs */) {
			return node.IsNull();
		}
	};
	
#define YAML_DEFINE_CONVERT_STREAMABLE(type, negative_op)\
	template<>\
	struct convert<type> {\
		static Node encode(const type& rhs) {\
			std::stringstream stream;\
            stream.precision(std::numeric_limits<type>::digits10 + 1);\
			stream << rhs;\
			return Node(stream.str());\
		}\
		\
		static bool decode(const Node& node, type& rhs) {\
			if(node.Type() != NodeType::Scalar)\
				return false;\
            const std::string& input = node.Scalar();\
			std::stringstream stream(input);\
            stream.unsetf(std::ios::dec);\
			if((stream >> rhs) && (stream >> std::ws).eof())\
                return true;\
            if(std::numeric_limits<type>::has_infinity) {\
                if(conversion::IsInfinity(input)) {\
                    rhs = std::numeric_limits<type>::infinity();\
                    return true;\
                } else if(conversion::IsNegativeInfinity(input)) {\
                    rhs = negative_op std::numeric_limits<type>::infinity();\
                    return true;\
                }\
            }\
            \
            if(std::numeric_limits<type>::has_quiet_NaN && conversion::IsNaN(input)) {\
                rhs = std::numeric_limits<type>::quiet_NaN();\
                return true;\
            }\
            \
            return false;\
		}\
	}
	
#define YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(type)\
    YAML_DEFINE_CONVERT_STREAMABLE(type, -)

#define YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED(type)\
    YAML_DEFINE_CONVERT_STREAMABLE(type, +)

    YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(int);
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(short);
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(long);
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(long long);
	YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED(unsigned);
	YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED(unsigned short);
	YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED(unsigned long);
	YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED(unsigned long long);
	
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(char);
	YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED(unsigned char);
	
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(float);
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(double);
	YAML_DEFINE_CONVERT_STREAMABLE_SIGNED(long double);
	
#undef YAML_DEFINE_CONVERT_STREAMABLE_SIGNED
#undef YAML_DEFINE_CONVERT_STREAMABLE_UNSIGNED
#undef YAML_DEFINE_CONVERT_STREAMABLE
	
	// bool
	template<>
	struct convert<bool> {
		static Node encode(bool rhs) {
			return rhs ? Node("true") : Node("false");
		}
		
		static bool decode(const Node& node, bool& rhs);
	};

	// std::map
	template<typename K, typename V>
	struct convert<std::map<K, V> > {
		static Node encode(const std::map<K, V>& rhs) {
			Node node(NodeType::Map);
			for(typename std::map<K, V>::const_iterator it=rhs.begin();it!=rhs.end();++it)
                node.force_insert(it->first, it->second);
			return node;
		}
		
		static bool decode(const Node& node, std::map<K, V>& rhs) {
			if(!node.IsMap())
				return false;

			rhs.clear();
			for(const_iterator it=node.begin();it!=node.end();++it)
#if defined(__GNUC__) && __GNUC__ < 4
//workaround for GCC 3:
				rhs[it->first.template as<K>()] = it->second.template as<V>();
#else
				rhs[it->first.as<K>()] = it->second.as<V>();
#endif
			return true;
		}
	};
	
	// std::vector
	template<typename T>
	struct convert<std::vector<T> > {
		static Node encode(const std::vector<T>& rhs) {
			Node node(NodeType::Sequence);
			for(typename std::vector<T>::const_iterator it=rhs.begin();it!=rhs.end();++it)
				node.push_back(*it);
			return node;
		}
		
		static bool decode(const Node& node, std::vector<T>& rhs) {
			if(!node.IsSequence())
				return false;
			
			rhs.clear();
			for(const_iterator it=node.begin();it!=node.end();++it)
#if defined(__GNUC__) && __GNUC__ < 4
//workaround for GCC 3:
				rhs.push_back(it->template as<T>());
#else
				rhs.push_back(it->as<T>());
#endif
			return true;
		}
	};
	
	// std::list
	template<typename T>
	struct convert<std::list<T> > {
		static Node encode(const std::list<T>& rhs) {
			Node node(NodeType::Sequence);
			for(typename std::list<T>::const_iterator it=rhs.begin();it!=rhs.end();++it)
				node.push_back(*it);
			return node;
		}
		
		static bool decode(const Node& node, std::list<T>& rhs) {
			if(!node.IsSequence())
				return false;
			
			rhs.clear();
			for(const_iterator it=node.begin();it!=node.end();++it)
#if defined(__GNUC__) && __GNUC__ < 4
//workaround for GCC 3:
				rhs.push_back(it->template as<T>());
#else
				rhs.push_back(it->as<T>());
#endif
			return true;
		}
	};
    
	// std::pair
	template<typename T, typename U>
	struct convert<std::pair<T, U> > {
		static Node encode(const std::pair<T, U>& rhs) {
			Node node(NodeType::Sequence);
            node.push_back(rhs.first);
            node.push_back(rhs.second);
			return node;
		}
		
		static bool decode(const Node& node, std::pair<T, U>& rhs) {
			if(!node.IsSequence())
				return false;
            if (node.size() != 2)
                return false;

#if defined(__GNUC__) && __GNUC__ < 4
//workaround for GCC 3:
				rhs.first = node[0].template as<T>();
#else
				rhs.first = node[0].as<T>();
#endif
#if defined(__GNUC__) && __GNUC__ < 4
//workaround for GCC 3:
				rhs.second = node[1].template as<U>();
#else
				rhs.second = node[1].as<U>();
#endif
			return true;
		}
	};

    // binary
    template<>
	struct convert<Binary> {
		static Node encode(const Binary& rhs) {
            return Node(EncodeBase64(rhs.data(), rhs.size()));
		}
		
		static bool decode(const Node& node, Binary& rhs) {
			if(!node.IsScalar())
				return false;
            
            std::vector<unsigned char> data = DecodeBase64(node.Scalar());
            if(data.empty() && !node.Scalar().empty())
                return false;
            
            rhs.swap(data);
            return true;
		}
	};
}

#endif // NODE_CONVERT_H_62B23520_7C8E_11DE_8A39_0800200C9A66