blob: c0b3abc21346710ad01004fcf4cd495429ca75a4 [file] [log] [blame]
// 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>
#include <utility>
#include <vector>
#include "src/context.h"
#include "src/transform/transformer.h"
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
/// the error can be retrieved with the error() method.
class Manager {
public:
/// Constructor
Manager();
/// Constructor
/// DEPRECATED
/// @param context the tint context
/// @param module the module to transform
Manager(Context* context, ast::Module* module);
~Manager();
/// Add pass to the manager
/// @param transform the transform to append
void append(std::unique_ptr<Transformer> transform) {
transforms_.push_back(std::move(transform));
}
/// Runs the transforms
/// @param module the module to run the transforms on
/// @returns true on success; false otherwise
bool Run(ast::Module* module);
/// Runs the transforms
/// DEPRECATED
/// @returns true on success; false otherwise
bool Run();
/// @returns the error, or blank if none set
std::string error() const { return error_; }
private:
std::vector<std::unique_ptr<Transformer>> transforms_;
ast::Module* module_ = nullptr;
std::string error_;
};
} // namespace transform
} // namespace tint
#endif // SRC_TRANSFORM_MANAGER_H_