/* * * Copyright (c) 2023 Project CHIP Authors * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #if MATTER_TRACING_ENABLED // Expected macros provided by implementations: // MATTER_TRACE_BEGIN(label, group) // MATTER_TRACE_END(label, group) // MATTER_TRACE_INSTANT(label, group) // MATTER_TRACE_SCOPE(label, group) // Tracing macro to trace monotonically increasing counter values. // MATTER_TRACE_COUNTER(label) #include #include #include ////////////////////// DATA LOGGING #define MATTER_LOG_MESSAGE_SEND(...) \ do \ { \ ::chip::Tracing::MessageSendInfo _trace_data{ __VA_ARGS__ }; \ ::chip::Tracing::Internal::LogMessageSend(_trace_data); \ } while (false) #define MATTER_LOG_MESSAGE_RECEIVED(...) \ do \ { \ ::chip::Tracing::MessageReceivedInfo _trace_data{ __VA_ARGS__ }; \ ::chip::Tracing::Internal::LogMessageReceived(_trace_data); \ } while (false) #define MATTER_LOG_NODE_LOOKUP(...) \ do \ { \ ::chip::Tracing::NodeLookupInfo _trace_data{ __VA_ARGS__ }; \ ::chip::Tracing::Internal::LogNodeLookup(_trace_data); \ } while (false) #define MATTER_LOG_NODE_DISCOVERED(...) \ do \ { \ ::chip::Tracing::NodeDiscoveredInfo _trace_data{ __VA_ARGS__ }; \ ::chip::Tracing::Internal::LogNodeDiscovered(_trace_data); \ } while (false) #define MATTER_LOG_NODE_DISCOVERY_FAILED(...) \ do \ { \ ::chip::Tracing::NodeDiscoveryFailedInfo _trace_data{ __VA_ARGS__ }; \ ::chip::Tracing::Internal::LogNodeDiscoveryFailed(_trace_data); \ } while (false) #else // MATTER_TRACING_ENABLED #define _MATTER_TRACE_DISABLE(...) \ do \ { \ } while (false) #define MATTER_TRACE_BEGIN(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_TRACE_END(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_TRACE_INSTANT(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_TRACE_SCOPE(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_TRACE_COUNTER(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_LOG_MESSAGE_SEND(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_LOG_MESSAGE_RECEIVED(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_LOG_NODE_LOOKUP(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_LOG_NODE_DISCOVERED(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #define MATTER_LOG_NODE_DISCOVERY_FAILED(...) _MATTER_TRACE_DISABLE(__VA_ARGS__) #endif // MATTER_TRACING_ENABLED