blob: c34d473340c5a21df30796d1348f1af0c40d6354 [file] [log] [blame]
// Copyright 2022 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 SRC_DEVELOPER_FORENSICS_FEEDBACK_ANNOTATIONS_CURRENT_CHANNEL_PROVIDER_H_
#define SRC_DEVELOPER_FORENSICS_FEEDBACK_ANNOTATIONS_CURRENT_CHANNEL_PROVIDER_H_
#include <fuchsia/update/channelcontrol/cpp/fidl.h>
#include "src/developer/forensics/feedback/annotations/fidl_provider.h"
#include "src/developer/forensics/feedback/annotations/types.h"
namespace forensics::feedback {
struct CurrentChannelToAnnotations {
Annotations operator()(const std::string& current_channel);
};
// Responsible for collecting annotations for fuchsia.hwinfo/Board.
class CurrentChannelProvider : public StaticSingleFidlMethodAnnotationProvider<
fuchsia::update::channelcontrol::ChannelControl,
&fuchsia::update::channelcontrol::ChannelControl::GetCurrent,
CurrentChannelToAnnotations> {
public:
using StaticSingleFidlMethodAnnotationProvider::StaticSingleFidlMethodAnnotationProvider;
std::set<std::string> GetKeys() const override;
};
} // namespace forensics::feedback
#endif // SRC_DEVELOPER_FORENSICS_FEEDBACK_ANNOTATIONS_CURRENT_CHANNEL_PROVIDER_H_