161 lines
6.3 KiB
C++
161 lines
6.3 KiB
C++
// Copyright 2019 The MediaPipe Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Defines CalculatorState.
|
|
|
|
#ifndef MEDIAPIPE_FRAMEWORK_CALCULATOR_STATE_H_
|
|
#define MEDIAPIPE_FRAMEWORK_CALCULATOR_STATE_H_
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
// TODO: Move protos in another CL after the C++ code migration.
|
|
#include "absl/base/macros.h"
|
|
#include "mediapipe/framework/calculator.pb.h"
|
|
#include "mediapipe/framework/counter.h"
|
|
#include "mediapipe/framework/counter_factory.h"
|
|
#include "mediapipe/framework/graph_service.h"
|
|
#include "mediapipe/framework/packet.h"
|
|
#include "mediapipe/framework/packet_set.h"
|
|
#include "mediapipe/framework/port.h"
|
|
#include "mediapipe/framework/port/any_proto.h"
|
|
#include "mediapipe/framework/tool/options_util.h"
|
|
|
|
namespace mediapipe {
|
|
|
|
class ProfilingContext;
|
|
// Holds data that the Calculator needs access to. This data is not
|
|
// stored in Calculator directly since Calculator will be destroyed after
|
|
// every CalculatorGraph::Run() . It is not stored in CalculatorNode
|
|
// because Calculator should not depend on CalculatorNode. All
|
|
// information conveyed in this class is flowing from the CalculatorNode
|
|
// to the Calculator.
|
|
class CalculatorState {
|
|
public:
|
|
CalculatorState(const std::string& node_name, int node_id,
|
|
const std::string& calculator_type,
|
|
const CalculatorGraphConfig::Node& node_config,
|
|
std::shared_ptr<ProfilingContext> profiling_context);
|
|
CalculatorState(const CalculatorState&) = delete;
|
|
CalculatorState& operator=(const CalculatorState&) = delete;
|
|
~CalculatorState();
|
|
|
|
// Sets the pointer to the InputStreamSet. The function is invoked by
|
|
// CalculatorNode::PrepareForRun.
|
|
void SetInputStreamSet(InputStreamSet* input_stream_set);
|
|
|
|
// Sets the pointer to the OutputStreamSet. The function is invoked by
|
|
// CalculatorNode::PrepareForRun.
|
|
void SetOutputStreamSet(OutputStreamSet* output_stream_set);
|
|
|
|
// Called before every call to Calculator::Open() (during the PrepareForRun
|
|
// phase).
|
|
void ResetBetweenRuns();
|
|
|
|
const std::string& CalculatorType() const { return calculator_type_; }
|
|
const CalculatorOptions& Options() const { return node_config_.options(); }
|
|
// Returns the options given to this calculator. Template argument T must
|
|
// be the type of the protobuf extension message or the protobuf::Any
|
|
// message containing the options.
|
|
template <class T>
|
|
const T& Options() const {
|
|
return options_.Get<T>();
|
|
}
|
|
const std::string& NodeName() const { return node_name_; }
|
|
const int& NodeId() const { return node_id_; }
|
|
|
|
////////////////////////////////////////
|
|
// Interface for Calculator.
|
|
////////////////////////////////////////
|
|
const InputStreamSet& InputStreams() const { return *input_streams_; }
|
|
const OutputStreamSet& OutputStreams() const { return *output_streams_; }
|
|
const PacketSet& InputSidePackets() const { return *input_side_packets_; }
|
|
OutputSidePacketSet& OutputSidePackets() { return *output_side_packets_; }
|
|
|
|
// Returns a counter using the graph's counter factory. The counter's
|
|
// name is the passed-in name, prefixed by the calculator NodeName.
|
|
Counter* GetCounter(const std::string& name);
|
|
|
|
std::shared_ptr<ProfilingContext> GetSharedProfilingContext() const {
|
|
return profiling_context_;
|
|
}
|
|
|
|
////////////////////////////////////////
|
|
// Interface for CalculatorNode.
|
|
////////////////////////////////////////
|
|
// Sets the input side packets.
|
|
void SetInputSidePackets(const PacketSet* input_side_packets);
|
|
// Sets the output side packets.
|
|
void SetOutputSidePackets(OutputSidePacketSet* output_side_packets);
|
|
// Sets the counter factory.
|
|
void SetCounterFactory(CounterFactory* counter_factory) {
|
|
counter_factory_ = counter_factory;
|
|
}
|
|
|
|
void SetServicePacket(const std::string& key, Packet packet);
|
|
|
|
bool IsServiceAvailable(const GraphServiceBase& service) {
|
|
return ContainsKey(service_packets_, service.key);
|
|
}
|
|
|
|
template <typename T>
|
|
T& GetServiceObject(const GraphService<T>& service) {
|
|
auto it = service_packets_.find(service.key);
|
|
CHECK(it != service_packets_.end());
|
|
return *it->second.template Get<std::shared_ptr<T>>();
|
|
}
|
|
|
|
private:
|
|
////////////////////////////////////////
|
|
// Persistent variables that are not cleared by ResetBetweenRuns().
|
|
////////////////////////////////////////
|
|
// The name associated with this calculator's node.
|
|
const std::string node_name_;
|
|
// The ID associated with this calculator's node.
|
|
const int node_id_;
|
|
// The registered type name of the Calculator.
|
|
const std::string calculator_type_;
|
|
// The Node protobuf containing the options for the calculator.
|
|
const CalculatorGraphConfig::Node node_config_;
|
|
// The unpacked protobuf options for the calculator.
|
|
tool::OptionsMap options_;
|
|
// The graph tracing and profiling interface.
|
|
std::shared_ptr<ProfilingContext> profiling_context_;
|
|
|
|
std::map<std::string, Packet> service_packets_;
|
|
|
|
////////////////////////////////////////
|
|
// Variables which ARE cleared by ResetBetweenRuns().
|
|
////////////////////////////////////////
|
|
// The InputStreamSet object is owned by the CalculatorNode.
|
|
// CalculatorState obtains its pointer in CalculatorNode::PrepareForRun.
|
|
InputStreamSet* input_streams_;
|
|
// The OutputStreamSet object is owned by the CalculatorNode.
|
|
// CalculatorState obtains its pointer in CalculatorNode::PrepareForRun.
|
|
OutputStreamSet* output_streams_;
|
|
// The set of input side packets set by CalculatorNode::PrepareForRun().
|
|
// ResetBetweenRuns() clears this PacketSet pointer.
|
|
const PacketSet* input_side_packets_;
|
|
// The OutputSidePacketSet object is owned by the CalculatorNode.
|
|
// CalculatorState obtains its pointer in CalculatorNode::PrepareForRun.
|
|
OutputSidePacketSet* output_side_packets_;
|
|
|
|
CounterFactory* counter_factory_;
|
|
};
|
|
|
|
} // namespace mediapipe
|
|
|
|
#endif // MEDIAPIPE_FRAMEWORK_CALCULATOR_STATE_H_
|