// 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. #include "mediapipe/framework/counter_factory.h" #include <vector> #include "absl/log/absl_log.h" #include "absl/strings/string_view.h" #include "absl/synchronization/mutex.h" namespace mediapipe { namespace { // Counter implementation when we're not using Flume. // TODO: Consider using Dax atomic counters instead of this. // This class is thread safe. class BasicCounter : public Counter { … }; } // namespace CounterSet::CounterSet() { … } CounterSet::~CounterSet() ABSL_LOCKS_EXCLUDED(mu_) { … } void CounterSet::PublishCounters() ABSL_LOCKS_EXCLUDED(mu_) { … } void CounterSet::PrintCounters() ABSL_LOCKS_EXCLUDED(mu_) { … } Counter* CounterSet::Get(const std::string& name) ABSL_LOCKS_EXCLUDED(mu_) { … } std::map<std::string, int64_t> CounterSet::GetCountersValues() ABSL_LOCKS_EXCLUDED(mu_) { … } Counter* BasicCounterFactory::GetCounter(const std::string& name) { … } } // namespace mediapipe