1 /* 2 * Copyright (C) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef NAPI_IMS_REG_INFO_CALLBACK_MANAGER_H 17 #define NAPI_IMS_REG_INFO_CALLBACK_MANAGER_H 18 19 #include <uv.h> 20 21 #include "napi_radio.h" 22 23 namespace OHOS { 24 namespace Telephony { 25 class NapiImsRegInfoCallbackManager { 26 public: 27 int32_t RegisterImsRegStateCallback(ImsRegStateCallback &stateCallback); 28 int32_t UnregisterImsRegStateCallback(napi_env env, int32_t slotId, ImsServiceType imsSrvType); 29 int32_t ReportImsRegInfo(int32_t slotId, ImsServiceType imsSrvType, const ImsRegInfo &info); 30 31 private: 32 int32_t ReportImsRegInfoInner(const ImsRegStateCallback &stateCallback, const ImsRegInfo &info); 33 int32_t InsertImsRegCallback(int32_t slotId, ImsServiceType imsSrvType, ImsRegStateCallback &stateCallback); 34 void RemoveImsRegCallback(int32_t slotId, ImsServiceType imsSrvType); 35 static int32_t ReportImsRegInfo(const ImsRegInfo &info, const ImsRegStateCallback &stateCallback); 36 37 private: 38 std::list<ImsRegStateCallback> listImsRegStateCallback_; 39 std::mutex mutex_; 40 }; 41 } // namespace Telephony 42 } // namespace OHOS 43 #endif // NAPI_IMS_REG_INFO_CALLBACK_MANAGER_H