Android-cuttlefish cvd tool
launcher.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2026 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#pragma once
18
19#include <string>
20#include <string_view>
21
24
25namespace cuttlefish {
26
28 std::string_view proc_name;
30 std::string_view date;
31 std::string_view time;
32 std::string_view pid;
33 std::string_view tid;
34 std::string_view file_line;
35 std::string_view message;
36};
37
38Result<LauncherLine> ParseLauncherLine(std::string_view line);
39std::string FormatLauncherLine(const LauncherLine& line);
40Result<std::string> ColorLauncherLine(std::string_view line);
41Result<bool> FilterLauncherLine(LogSeverity filter, std::string_view line);
42
43} // namespace cuttlefish
Definition: alloc_driver.h:20
Result< LauncherLine > ParseLauncherLine(std::string_view line)
Definition: launcher.cc:35
LogSeverity
Definition: tee_logging.h:31
Result< std::string > ColorLauncherLine(std::string_view line)
Definition: launcher.cc:89
tl::expected< T, StackTraceError > Result
Definition: result_type.h:30
Result< bool > FilterLauncherLine(LogSeverity filter, std::string_view line)
Definition: launcher.cc:93
std::string FormatLauncherLine(const LauncherLine &line)
Definition: launcher.cc:79
Definition: launcher.h:27
std::string_view message
Definition: launcher.h:35
char severity
Definition: launcher.h:29
std::string_view proc_name
Definition: launcher.h:28
std::string_view tid
Definition: launcher.h:33
std::string_view time
Definition: launcher.h:31
std::string_view date
Definition: launcher.h:30
std::string_view pid
Definition: launcher.h:32
std::string_view file_line
Definition: launcher.h:34