| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 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 | #ifndef __ADB_TRACE_H | 
 | 18 | #define __ADB_TRACE_H | 
 | 19 |  | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 20 | #include <android-base/logging.h> | 
 | 21 | #include <android-base/stringprintf.h> | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 22 |  | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 23 | /* IMPORTANT: if you change the following list, don't | 
 | 24 |  * forget to update the corresponding 'tags' table in | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 25 |  * the adb_trace_init() function implemented in adb_trace.cpp. | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 26 |  */ | 
| Elliott Hughes | 2d4121c | 2015-04-17 09:47:42 -0700 | [diff] [blame] | 27 | enum AdbTrace { | 
| Alex Buynytskyy | 96ff54b | 2020-02-13 06:52:04 -0800 | [diff] [blame] | 28 |     ADB = 0, /* 0x001 */ | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 29 |     SOCKETS, | 
 | 30 |     PACKETS, | 
 | 31 |     TRANSPORT, | 
| Alex Buynytskyy | 96ff54b | 2020-02-13 06:52:04 -0800 | [diff] [blame] | 32 |     RWX, /* 0x010 */ | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 33 |     USB, | 
 | 34 |     SYNC, | 
 | 35 |     SYSDEPS, | 
| Alex Buynytskyy | 96ff54b | 2020-02-13 06:52:04 -0800 | [diff] [blame] | 36 |     JDWP, /* 0x100 */ | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 37 |     SERVICES, | 
 | 38 |     AUTH, | 
 | 39 |     FDEVENT, | 
| Alex Buynytskyy | 96ff54b | 2020-02-13 06:52:04 -0800 | [diff] [blame] | 40 |     SHELL, | 
 | 41 |     INCREMENTAL, | 
| Elliott Hughes | bd4b1fa | 2015-08-28 14:46:33 -0700 | [diff] [blame] | 42 | }; | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 43 |  | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 44 | #define VLOG_IS_ON(TAG) \ | 
| Chih-Hung Hsieh | 67867db | 2016-05-18 15:53:15 -0700 | [diff] [blame] | 45 |     ((adb_trace_mask & (1 << (TAG))) != 0) | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 46 |  | 
| Josh Gao | 95c4497 | 2018-02-06 15:49:26 -0800 | [diff] [blame] | 47 | #define VLOG(TAG)                 \ | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 48 |     if (LIKELY(!VLOG_IS_ON(TAG))) \ | 
| Josh Gao | 95c4497 | 2018-02-06 15:49:26 -0800 | [diff] [blame] | 49 |         ;                         \ | 
 | 50 |     else                          \ | 
 | 51 |         LOG(DEBUG) | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 52 |  | 
| Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 53 | // You must define TRACE_TAG before using this macro. | 
 | 54 | #define D(...) \ | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 55 |     VLOG(TRACE_TAG) << android::base::StringPrintf(__VA_ARGS__) | 
 | 56 |  | 
 | 57 |  | 
 | 58 | extern int adb_trace_mask; | 
 | 59 | void adb_trace_init(char**); | 
 | 60 | void adb_trace_enable(AdbTrace trace_tag); | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 61 |  | 
| leozwang | d3fc15f | 2014-07-29 12:50:02 -0700 | [diff] [blame] | 62 | #endif /* __ADB_TRACE_H */ |