2020-09-29 23:54:03 +00:00
|
|
|
// Copyright 2020 The Tint 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.
|
|
|
|
|
|
|
|
#ifndef SRC_TRANSFORM_MANAGER_H_
|
|
|
|
#define SRC_TRANSFORM_MANAGER_H_
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2020-11-03 16:26:09 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2020-09-29 23:54:03 +00:00
|
|
|
|
2020-12-04 09:06:09 +00:00
|
|
|
#include "src/diagnostic/diagnostic.h"
|
|
|
|
#include "src/transform/transform.h"
|
|
|
|
|
2020-09-29 23:54:03 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace transform {
|
|
|
|
|
|
|
|
/// Manager for the provided passes. The passes will be execute in the
|
|
|
|
/// appended order. If any pass fails the manager will return immediately and
|
2020-12-02 15:31:08 +00:00
|
|
|
/// the error can be retrieved with the error() method.
|
2020-12-04 09:06:09 +00:00
|
|
|
class Manager : public Transform {
|
2020-09-29 23:54:03 +00:00
|
|
|
public:
|
|
|
|
/// Constructor
|
2020-12-02 21:17:58 +00:00
|
|
|
Manager();
|
2020-12-04 09:06:09 +00:00
|
|
|
~Manager() override;
|
2020-09-29 23:54:03 +00:00
|
|
|
|
|
|
|
/// Add pass to the manager
|
|
|
|
/// @param transform the transform to append
|
2020-12-04 09:06:09 +00:00
|
|
|
void append(std::unique_ptr<Transform> transform) {
|
2020-09-29 23:54:03 +00:00
|
|
|
transforms_.push_back(std::move(transform));
|
|
|
|
}
|
|
|
|
|
2020-12-04 09:06:09 +00:00
|
|
|
/// Runs the transforms on `module`, returning the transformation result.
|
|
|
|
/// @param module the source module to transform
|
|
|
|
/// @returns the transformed module and diagnostics
|
|
|
|
Output Run(ast::Module* module) override;
|
2020-09-29 23:54:03 +00:00
|
|
|
|
|
|
|
private:
|
2020-12-04 09:06:09 +00:00
|
|
|
std::vector<std::unique_ptr<Transform>> transforms_;
|
2020-09-29 23:54:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace transform
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_TRANSFORM_MANAGER_H_
|