// 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. // // Facility for registering subgraphs that can be included in other graphs. #ifndef MEDIAPIPE_FRAMEWORK_SUBGRAPH_H_ #define MEDIAPIPE_FRAMEWORK_SUBGRAPH_H_ #include <functional> #include <memory> #include <optional> #include <string> #include <utility> #include "absl/status/status.h" #include "absl/status/statusor.h" #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "mediapipe/framework/calculator.pb.h" #include "mediapipe/framework/deps/registration.h" #include "mediapipe/framework/graph_service.h" #include "mediapipe/framework/graph_service_manager.h" #include "mediapipe/framework/resources.h" #include "mediapipe/framework/resources_service.h" #include "mediapipe/framework/tool/calculator_graph_template.pb.h" #include "mediapipe/framework/tool/options_util.h" namespace mediapipe { class SubgraphContext { … }; // Instances of this class are responsible for providing a subgraph config. // They are only used during graph construction. They do not stay alive once // the graph is running. class Subgraph { … }; using SubgraphRegistry = GlobalFactoryRegistry<std::unique_ptr<Subgraph>>; #define REGISTER_MEDIAPIPE_GRAPH(name) … // A graph factory holding a literal CalculatorGraphConfig. class ProtoSubgraph : public Subgraph { … }; // A graph factory holding a literal CalculatorGraphTemplate. class TemplateSubgraph : public Subgraph { … }; // A local registry of CalculatorGraphConfig definitions. class GraphRegistry { … }; } // namespace mediapipe #endif // MEDIAPIPE_FRAMEWORK_SUBGRAPH_H_