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 #include "state_notification.h"
17
18 #include "telephony_log_wrapper.h"
19 #include "telephony_state_registry_client.h"
20
21 namespace OHOS {
22 namespace Telephony {
23 StateNotification StateNotification::stateNotification_;
GetInstance()24 StateNotification &StateNotification::GetInstance()
25 {
26 return stateNotification_;
27 }
28
UpdateCellularDataConnectState(int32_t slotId,ApnProfileState dataState,int32_t networkType)29 void StateNotification::UpdateCellularDataConnectState(int32_t slotId, ApnProfileState dataState, int32_t networkType)
30 {
31 int32_t state = CellularDataStateAdapter(dataState);
32 TELEPHONY_LOGI("UpdateCellularDataConnectState= %{public}d, %{public}d, %{public}d", slotId, state, networkType);
33 TelephonyStateRegistryClient::GetInstance().UpdateCellularDataConnectState(slotId, state, networkType);
34 }
35
OnUpDataFlowtype(int32_t slotId,CellDataFlowType flowType)36 void StateNotification::OnUpDataFlowtype(int32_t slotId, CellDataFlowType flowType)
37 {
38 TELEPHONY_LOGI("UpdateCellularDataFlow= %{public}d, %{public}d", slotId, flowType);
39 TelephonyStateRegistryClient::GetInstance().UpdateCellularDataFlow(slotId, static_cast<int32_t>(flowType));
40 }
41 } // namespace Telephony
42 } // namespace OHOS