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>
|
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/transform/transform.h"
|
|
|
|
|
2020-09-29 23:54:03 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace transform {
|
|
|
|
|
2021-02-24 15:08:54 +00:00
|
|
|
/// A collection of Transforms that act as a single Transform.
|
|
|
|
/// The inner transforms will execute in the appended order.
|
|
|
|
/// If any inner transform fails the manager will return immediately and
|
|
|
|
/// the error can be retrieved with the Output's diagnostics.
|
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));
|
|
|
|
}
|
|
|
|
|
2021-01-26 16:57:10 +00:00
|
|
|
/// Runs the transforms on `program`, returning the transformation result.
|
2021-01-25 18:14:08 +00:00
|
|
|
/// @param program the source program to transform
|
2021-03-29 21:03:59 +00:00
|
|
|
/// @param data optional extra transform-specific input data
|
2021-01-26 16:57:10 +00:00
|
|
|
/// @returns the transformed program and diagnostics
|
2021-03-29 21:03:59 +00:00
|
|
|
Output Run(const Program* program, const DataMap& data = {}) override;
|
2021-01-25 18:14:08 +00:00
|
|
|
|
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_
|