blob: 819562115758802452a2cb417e072885a2fa574d [file] [log] [blame]
karthik bharadwaj1f612462021-09-24 12:52:34 -07001/*
2 * Copyright (C) 2021 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 <cstdio>
18
19#include "chre/core/event_loop_manager.h"
20#include "chre/platform/system_time.h"
21
22#ifdef CHRE_USE_TOKENIZED_LOGGING
23#include "pw_tokenizer/tokenize_to_global_handler_with_payload.h"
24
25// The callback function that must be defined to handle an encoded
26// tokenizer message.
27void pw_tokenizer_HandleEncodedMessageWithPayload(pw_tokenizer_Payload logLevel,
28 const uint8_t encodedMsg[],
29 size_t encodedMsgSize) {
30#if defined(CHRE_USE_BUFFERED_LOGGING)
31 chrePlatformEncodedLogToBuffer(static_cast<chreLogLevel>(logLevel),
32 encodedMsg, encodedMsgSize);
33#else
34#error "Tokenized logging is currently only supported with buffered logging."
35#endif // CHRE_USE_BUFFERED_LOGGING
36}
37#endif