1 /* 2 * Copyright (C) 2021 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 STATE_REGISTRY_TELEPHONY_STATE_REGISTRY_RECORD_H 17 #define STATE_REGISTRY_TELEPHONY_STATE_REGISTRY_RECORD_H 18 19 #include <string> 20 21 #include "telephony_observer_broker.h" 22 23 namespace OHOS { 24 namespace Telephony { 25 class TelephonyStateRegistryRecord { 26 public: 27 bool IsCanReadCallHistory(); 28 /** 29 * IsExistStateListener 30 * 31 * @param mask Listening type bitmask 32 * @return bool mask exist on true, others on false. 33 */ 34 bool IsExistStateListener(uint32_t mask) const; 35 36 public: 37 std::string bundleName_ = ""; 38 pid_t pid_ = 0; 39 unsigned int mask_ = 0; 40 int slotId_ = 0; 41 sptr<TelephonyObserverBroker> telephonyObserver_ = nullptr; 42 }; 43 } // namespace Telephony 44 } // namespace OHOS 45 #endif // STATE_REGISTRY_TELEPHONY_STATE_REGISTRY_RECORD_H 46