blob: eb26a25d9d1f3c742f4a24916c63d3c3e725c238 [file] [log] [blame]
Dan Sinclair6e581892020-03-02 15:47:43 -05001// 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
24namespace tint {
25
26/// The type manager holds all the pointers to the known types.
Dan Sinclair6e581892020-03-02 15:47:43 -050027class TypeManager {
28 public:
dan sinclair9981b632020-03-25 19:16:36 +000029 TypeManager();
30 ~TypeManager();
Dan Sinclair6e581892020-03-02 15:47:43 -050031
David Netoa8cd18e2020-03-27 00:47:16 +000032 /// Clears all registered types.
33 void Reset();
34
Dan Sinclair6e581892020-03-02 15:47:43 -050035 /// 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 Netoa8cd18e2020-03-27 00:47:16 +000040 /// 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 Sinclair6e581892020-03-02 15:47:43 -050047 private:
Dan Sinclair6e581892020-03-02 15:47:43 -050048 std::unordered_map<std::string, std::unique_ptr<ast::type::Type>> types_;
49};
50
51} // namespace tint
52
53#endif // SRC_TYPE_MANAGER_H_