blob: 4a30c138cca242887bfdf461f24ea5a3fcd3650e [file] [log] [blame]
// Copyright 2018 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef RUNTIME_PROBE_PROBE_STATEMENT_H_
#define RUNTIME_PROBE_PROBE_STATEMENT_H_
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <utility>
#include <base/functional/callback.h>
#include <base/values.h>
#include <gtest/gtest.h>
#include "runtime_probe/probe_function.h"
#include "runtime_probe/probe_result_checker.h"
namespace runtime_probe {
class ProbeStatement {
// Holds a probe statement with following JSON schema::
// {
// "eval": <function_name:string> |
// <func:ProbeFunction> |
// [<func:ProbeFunction>],
// "keys": [<key:string>],
// "expect": <see |ProbeResultChecker|>,
// "information": <info:DictValue>,
// }
//
// For "eval", the case "[<func:ProbeFunction>]" will be transformed into::
// (ProbeFunction) {
// "function_name": "sequence",
// "args": {
// "functions": [<func:ProbeFunction>]
// }
// }
//
// For "expect", the dictionary value should represent a ProbeResultChecker
// object. See ProbeResultChecker for more details.
//
// When evaluating a ProbeStatement, the ProbeFunction defined by "eval" will
// be called. The results will be filtered / processed by "keys" and "expect"
// rules. See ProbeStatement::Eval for more details.
public:
virtual ~ProbeStatement() = default;
static std::unique_ptr<ProbeStatement> FromValue(std::string component_name,
const base::Value& dv);
// Evaluate the probe statement.
//
// The process can be break into following steps:
// - Call probe function |probe_function_|
// - Filter results by |key_| (if |key_| is not empty)
// - Transform and check results by |expect_| (if |expect_| is not empty)
// - Return final results that passed |expect_| check.
virtual void Eval(
base::OnceCallback<void(ProbeFunction::DataType)> callback) const;
virtual std::optional<base::Value> GetInformation() const {
if (information_)
return information_->Clone();
return std::nullopt;
}
// Gets pointer to the probe function or nullptr on failure.
const ProbeFunction* probe_function() const { return probe_function_.get(); }
// Set mocked probe function for testing.
void SetProbeFunctionForTesting(
std::unique_ptr<ProbeFunction> probe_function) {
probe_function_ = std::move(probe_function);
}
// Set mocked expect value for testing.
void SetExpectForTesting(base::Value expect_value) {
expect_value_ = std::move(expect_value);
}
protected:
ProbeStatement() = default;
private:
std::string component_name_;
std::unique_ptr<ProbeFunction> probe_function_;
std::set<std::string> key_;
std::optional<base::Value> expect_value_;
std::optional<base::Value> information_;
FRIEND_TEST(ProbeConfigTest, LoadConfig);
};
} // namespace runtime_probe
#endif // RUNTIME_PROBE_PROBE_STATEMENT_H_