blob: 79e8a474d81f6540453e3f12c8e9ade233358eda (
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Helper functions that allow to map enum values to strings.
namespace remoting {
namespace protocol {
template <typename T>
struct NameMapElement {
const T value;
const char* const name;
};
template <typename T, size_t N>
const char* ValueToName(const NameMapElement<T> (&map)[N], T value) {
for (size_t i = 0; i < N; ++i) {
if (map[i].value == value)
return map[i].name;
}
NOTREACHED();
return NULL;
}
template <typename T, size_t N>
bool NameToValue(const NameMapElement<T> (&map)[N],
const std::string& name,
T* result) {
for (size_t i = 0; i < N; ++i) {
if (map[i].name == name) {
*result = map[i].value;
return true;
}
}
return false;
}
} // namespace protocol
} // namespace remoting
|