1 /*
2 ** Copyright 2013-2014, The Android Open Source Project
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 #include <string.h>
18 #include <type_traits>
19
20 #include <log/log.h>
21
22 /* In the future, we would like to make this list extensible */
23 static const char* LOG_NAME[LOG_ID_MAX] = {
24 /* clang-format off */
25 [LOG_ID_MAIN] = "main",
26 [LOG_ID_RADIO] = "radio",
27 [LOG_ID_EVENTS] = "events",
28 [LOG_ID_SYSTEM] = "system",
29 [LOG_ID_CRASH] = "crash",
30 [LOG_ID_STATS] = "stats",
31 [LOG_ID_SECURITY] = "security",
32 [LOG_ID_KERNEL] = "kernel",
33 /* clang-format on */
34 };
35
android_log_id_to_name(log_id_t log_id)36 const char* android_log_id_to_name(log_id_t log_id) {
37 if (log_id >= LOG_ID_MAX) {
38 log_id = LOG_ID_MAIN;
39 }
40 return LOG_NAME[log_id];
41 }
42
43 static_assert(std::is_same<std::underlying_type<log_id_t>::type, uint32_t>::value,
44 "log_id_t must be an uint32_t");
45
46 static_assert(std::is_same<std::underlying_type<android_LogPriority>::type, uint32_t>::value,
47 "log_id_t must be an uint32_t");
48
android_name_to_log_id(const char * logName)49 log_id_t android_name_to_log_id(const char* logName) {
50 const char* b;
51 unsigned int ret;
52
53 if (!logName) {
54 return static_cast<log_id_t>(LOG_ID_MAX);
55 }
56
57 b = strrchr(logName, '/');
58 if (!b) {
59 b = logName;
60 } else {
61 ++b;
62 }
63
64 for (ret = LOG_ID_MIN; ret < LOG_ID_MAX; ++ret) {
65 const char* l = LOG_NAME[ret];
66 if (l && !strcmp(b, l)) {
67 return static_cast<log_id_t>(ret);
68 }
69 }
70
71 return static_cast<log_id_t>(LOG_ID_MAX);
72 }
73