blob: 7db96dae50d26e8488b8c096702e79ae845e34ee [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TOOLS_FIDLCAT_LIB_DECODE_OPTIONS_H_
#define TOOLS_FIDLCAT_LIB_DECODE_OPTIONS_H_
#include <zircon/types.h>
#include <memory>
#include <string>
#include <vector>
#include <re2/re2.h>
#include "src/lib/fxl/macros.h"
enum StackLevel { kNoStack = 0, kPartialStack = 1, kFullStack = 2 };
enum class InputMode { kDevice, kFile, kDump };
enum class OutputMode { kNone, kStandard, kTextProtobuf };
struct DecodeOptions {
// True if fidlcat doesn't automatically quit.
bool stay_alive = false;
// Level of stack we want to decode/display.
int stack_level = kNoStack;
// If a syscall satisfies one of these filters, it can be displayed.
std::vector<std::unique_ptr<re2::RE2>> syscall_filters;
// But it is only displayed if it doesn't satisfy any of these filters.
std::vector<std::unique_ptr<re2::RE2>> exclude_syscall_filters;
// If a message method name satisfies one of these filters, it can be displayed.
std::vector<std::unique_ptr<re2::RE2>> message_filters;
// But it is only displayed if it doesn't satisfy any of these filters.
std::vector<std::unique_ptr<re2::RE2>> exclude_message_filters;
// If this is not empty, messages and syscalls are only displayed when a message method name
// satisfies one of these filters.
std::vector<std::unique_ptr<re2::RE2>> trigger_filters;
std::vector<zx_koid_t> thread_filters;
// Input mode.
InputMode input_mode = InputMode::kDevice;
// Output mode.
OutputMode output_mode = OutputMode::kNone;
// File name used to save the session.
std::string save;
bool SatisfiesMessageFilters(const std::string& name) const {
for (const auto& filter : exclude_message_filters) {
if (re2::RE2::PartialMatch(name, *filter)) {
return false;
}
}
for (const auto& filter : message_filters) {
if (re2::RE2::PartialMatch(name, *filter)) {
return true;
}
}
return message_filters.empty();
}
bool IsTrigger(const std::string& name) const {
for (const auto& filter : trigger_filters) {
if (re2::RE2::PartialMatch(name, *filter)) {
return true;
}
}
return false;
}
};
#endif // TOOLS_FIDLCAT_LIB_DECODE_OPTIONS_H_