/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. 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. */ #pragma once #include #include #include "variable.h" namespace paddle_mobile { namespace framework { class Scope { public: Scope() = default; ~Scope() = default; Scope &NewScope() const; /// Create a variable with given name if it doesn't exist. Variable *Var(const std::string &name); /// Create a variable with a scope-unique name. Variable *Var(std::string *name = nullptr); void EraseVars(const std::vector &var_names); /// Find a variable in the scope or any of its ancestors. Returns /// nullptr if cannot find. Variable *FindVar(const std::string &name) const; const Scope *parent() const { return parent_; } /// Find the scope or an ancestor scope that contains the given /// variable. const Scope *FindScope(const Variable *var) const; void DeleteScope(Scope *scope) const; /// Drop all kids scopes belonged to this scope. void DropKids(); // enumerate all the variables current contains. std::vector LocalVarNames() const; // Rename variable to a new name void Rename(const std::string &origin_name, const std::string &new_name) const; // Rename variable to a new name and return the new name std::string Rename(const std::string &origin_name) const; Variable *FindVarLocally(const std::string &name) const; private: // Call Scope::NewScope for a sub-scope. explicit Scope(Scope const *parent) : parent_(parent) {} mutable std::unordered_map vars_; mutable std::list kids_; Scope const *parent_{nullptr}; }; } // namespace framework } // namespace paddle_mobile