* Copyright (c) 2025 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 IMF_MODULE_MGR_H
#define IMF_MODULE_MGR_H
#include <mutex>
#include <string>
#include <unordered_map>
#include "modulemgr.h"
#include "nocopyable.h"
namespace OHOS {
namespace MiscServices {
class ImfModuleMgr {
public:
static constexpr const char *IMF_EXT_MODULE_PATH = "/system/lib64/imfplugin/autorun";
static ImfModuleMgr &GetInstance();
int32_t Scan(const std::string &modulePath);
void Destroy(const std::string &modulePath);
private:
DISALLOW_COPY_AND_MOVE(ImfModuleMgr);
ImfModuleMgr() = default;
~ImfModuleMgr() = default;
bool HasScan(const std::string &modulePath);
std::mutex modulesLock_;
std::unordered_map<std::string, MODULE_MGR *> modules_;
};
}
}
#endif