Dan Sinclair | 6e58189 | 2020-03-02 15:47:43 -0500 | [diff] [blame] | 1 | // Copyright 2020 The Tint Authors. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | #ifndef SRC_TYPE_MANAGER_H_ |
| 16 | #define SRC_TYPE_MANAGER_H_ |
| 17 | |
| 18 | #include <memory> |
| 19 | #include <string> |
| 20 | #include <unordered_map> |
| 21 | |
| 22 | #include "src/ast/type/type.h" |
| 23 | |
| 24 | namespace tint { |
| 25 | |
| 26 | /// The type manager holds all the pointers to the known types. |
Dan Sinclair | 6e58189 | 2020-03-02 15:47:43 -0500 | [diff] [blame] | 27 | class TypeManager { |
| 28 | public: |
dan sinclair | 9981b63 | 2020-03-25 19:16:36 +0000 | [diff] [blame] | 29 | TypeManager(); |
| 30 | ~TypeManager(); |
Dan Sinclair | 6e58189 | 2020-03-02 15:47:43 -0500 | [diff] [blame] | 31 | |
David Neto | a8cd18e | 2020-03-27 00:47:16 +0000 | [diff] [blame] | 32 | /// Clears all registered types. |
| 33 | void Reset(); |
| 34 | |
Dan Sinclair | 6e58189 | 2020-03-02 15:47:43 -0500 | [diff] [blame] | 35 | /// Get the given type from the type manager |
| 36 | /// @param type The type to register |
| 37 | /// @return the pointer to the registered type |
| 38 | ast::type::Type* Get(std::unique_ptr<ast::type::Type> type); |
| 39 | |
David Neto | a8cd18e | 2020-03-27 00:47:16 +0000 | [diff] [blame] | 40 | /// Returns the type map, for testing purposes. |
| 41 | /// @returns the mapping from name string to type. |
| 42 | const std::unordered_map<std::string, std::unique_ptr<ast::type::Type>>& |
| 43 | TypesForTesting() { |
| 44 | return types_; |
| 45 | } |
| 46 | |
Dan Sinclair | 6e58189 | 2020-03-02 15:47:43 -0500 | [diff] [blame] | 47 | private: |
Dan Sinclair | 6e58189 | 2020-03-02 15:47:43 -0500 | [diff] [blame] | 48 | std::unordered_map<std::string, std::unique_ptr<ast::type::Type>> types_; |
| 49 | }; |
| 50 | |
| 51 | } // namespace tint |
| 52 | |
| 53 | #endif // SRC_TYPE_MANAGER_H_ |