/*
* Copyright (c) 2024 Huawei Device Co., Ltd.
* 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 LOADER_PIPELINE_LAYOUT_LOADER_H
#define LOADER_PIPELINE_LAYOUT_LOADER_H
#include
#include
#include
#include
CORE_BEGIN_NAMESPACE()
class IFileManager;
CORE_END_NAMESPACE()
RENDER_BEGIN_NAMESPACE()
/** Pipeline layout loader.
* A class that can be used to load pipeline layout from json structure.
*/
class PipelineLayoutLoader final {
public:
/** Describes result of the parsing operation. */
struct LoadResult {
LoadResult() = default;
explicit LoadResult(BASE_NS::string_view error) : success(false), error(error) {}
/** Indicates, whether the parsing operation is successful. */
bool success { true };
/** In case of parsing error, contains the description of the error. */
BASE_NS::string error;
};
/** Retrieve uri of the pipeline layout.
* @return String view to uri of the pipeline layout.
*/
BASE_NS::string_view GetUri() const;
/** Retrieve pipeline layout.
* @return A pipeline layout, as defined in the json file.
*/
const PipelineLayout& GetPipelineLayout() const;
/** Loads pipeline layout from json string.
* @param jsonString A string containing valid json as content.
* @return A structure containing result for the parsing operation.
*/
LoadResult Load(BASE_NS::string_view jsonString);
/** Loads pipeline layout from given uri, using file manager.
* @param fileManager A file manager to access the file in given uri.
* @param uri Uri to json file.
* @return A structure containing result for the parsing operation.
*/
LoadResult Load(CORE_NS::IFileManager& fileManager, BASE_NS::string_view uri);
private:
PipelineLayout pipelineLayout_;
BASE_NS::string uri_;
};
RENDER_END_NAMESPACE()
#endif // LOADER_PIPELINE_LAYOUT_LOADER_H