aboutsummaryrefslogtreecommitdiff
path: root/src/amberscript/script.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/amberscript/script.h')
-rw-r--r--src/amberscript/script.h85
1 files changed, 0 insertions, 85 deletions
diff --git a/src/amberscript/script.h b/src/amberscript/script.h
deleted file mode 100644
index 81d0258..0000000
--- a/src/amberscript/script.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// Copyright 2018 The Amber 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_AMBERSCRIPT_SCRIPT_H_
-#define SRC_AMBERSCRIPT_SCRIPT_H_
-
-#include <map>
-#include <memory>
-#include <string>
-#include <utility>
-#include <vector>
-
-#include "src/amberscript/pipeline.h"
-#include "src/buffer.h"
-#include "src/script.h"
-
-namespace amber {
-namespace amberscript {
-
-class Script : public amber::Script {
- public:
- Script();
- ~Script() override;
-
- Result AddPipeline(std::unique_ptr<Pipeline> pipeline) {
- if (name_to_pipeline_.count(pipeline->GetName()) > 0)
- return Result("duplicate pipeline name provided");
-
- pipelines_.push_back(std::move(pipeline));
- name_to_pipeline_[pipelines_.back()->GetName()] = pipelines_.back().get();
- return {};
- }
-
- Pipeline* GetPipeline(const std::string& name) const {
- auto it = name_to_pipeline_.find(name);
- return it == name_to_pipeline_.end() ? nullptr : it->second;
- }
-
- const std::vector<std::unique_ptr<Pipeline>>& GetPipelines() const {
- return pipelines_;
- }
-
- Result AddBuffer(std::unique_ptr<Buffer> buffer) {
- if (name_to_buffer_.count(buffer->GetName()) > 0)
- return Result("duplicate buffer name provided");
-
- buffers_.push_back(std::move(buffer));
- name_to_buffer_[buffers_.back()->GetName()] = buffers_.back().get();
- return {};
- }
-
- Buffer* GetBuffer(const std::string& name) const {
- auto it = name_to_buffer_.find(name);
- return it == name_to_buffer_.end() ? nullptr : it->second;
- }
-
- const std::vector<std::unique_ptr<Buffer>>& GetBuffers() const {
- return buffers_;
- }
-
- private:
- std::map<std::string, Pipeline*> name_to_pipeline_;
- std::map<std::string, Buffer*> name_to_buffer_;
- std::vector<std::unique_ptr<Pipeline>> pipelines_;
- std::vector<std::unique_ptr<Buffer>> buffers_;
-};
-
-} // namespace amberscript
-
-const amberscript::Script* ToAmberScript(const amber::Script* s);
-
-} // namespace amber
-
-#endif // SRC_AMBERSCRIPT_SCRIPT_H_