/** * Copyright 2019-2020 Huawei Technologies 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 GE_GE_RUNTIME_TASK_TASK_FACTORY_H_ #define GE_GE_RUNTIME_TASK_TASK_FACTORY_H_ #include #include #include #include #include "common/ge_inner_error_codes.h" #include "framework/common/debug/ge_log.h" #include "ge_runtime/task_info.h" namespace ge { namespace model_runner { class Task; class ModelContext; using TASK_CREATOR_FUN = std::function(const ModelContext &, std::shared_ptr)>; class TaskFactory { private: TaskFactory() {} ~TaskFactory() {} void RegisterCreator(const TaskInfoType &type, const TASK_CREATOR_FUN &func) { if (creator_map_.find(type) != creator_map_.end()) { GELOGW("Creator type %d already exist", static_cast(type)); } creator_map_[type] = func; } std::map creator_map_; public: static TaskFactory &GetInstance() { static TaskFactory instance; return instance; } std::shared_ptr Create(const ModelContext &model_context, std::shared_ptr &task_info) const { if (task_info == nullptr) { GELOGE(FAILED, "task_info is null."); return nullptr; } auto iter = creator_map_.find(task_info->type()); if (iter == creator_map_.end()) { GELOGE(FAILED, "Unknow task type %d", static_cast(task_info->type())); return nullptr; } return iter->second(model_context, task_info); } class Register { public: Register(const TaskInfoType &type, const TASK_CREATOR_FUN &func) { GELOGI("regist type %d", static_cast(type)); TaskFactory::GetInstance().RegisterCreator(type, func); } ~Register() {} }; }; #define REGISTER_TASK(type, task_clazz, task_info_clazz) \ TaskFactory::Register g_##task_clazz##_register( \ type, [](const ModelContext &model_context, const std::shared_ptr &task_info) -> std::shared_ptr { \ std::shared_ptr concrete_task_info = std::static_pointer_cast(task_info); \ return std::make_shared(model_context, concrete_task_info); \ }); } // namespace model_runner } // namespace ge #endif // GE_GE_RUNTIME_TASK_TASK_FACTORY_H_