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 "network_search_callback.h"
17
18 #include "telephony_log_wrapper.h"
19
20 #include "cellular_data_service.h"
21
22 namespace OHOS {
23 namespace Telephony {
HasInternetCapability(int32_t slotId,int32_t cId)24 bool NetworkSearchCallback::HasInternetCapability(int32_t slotId, int32_t cId)
25 {
26 int32_t result = DelayedRefSingleton<CellularDataService>::GetInstance().HasInternetCapability(slotId, cId);
27 if (result == static_cast<int32_t>(RequestNetCode::REQUEST_SUCCESS)) {
28 return true;
29 }
30 TELEPHONY_LOGE("HasInternetCapability slot:%{public}d cid:%{public}d failed %{public}d", slotId, cId, result);
31 return false;
32 }
33
ClearCellularDataConnections(int32_t slotId)34 void NetworkSearchCallback::ClearCellularDataConnections(int32_t slotId)
35 {
36 int32_t result = DelayedRefSingleton<CellularDataService>::GetInstance().ClearCellularDataConnections(slotId);
37 if (result != static_cast<int32_t>(RequestNetCode::REQUEST_SUCCESS)) {
38 TELEPHONY_LOGE("ClearCellularDataConnections slot:%{public}d failed %{public}d", slotId, result);
39 }
40 }
41 } // namespace Telephony
42 } // namespace OHOS
43