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 "ruim_file_controller.h"
17 
18 namespace OHOS {
19 namespace Telephony {
RuimFileController(int slotId)20 RuimFileController::RuimFileController(int slotId) : IccFileController("RuimFileController", slotId) {}
21 
ObtainElementFilePath(int efId)22 std::string RuimFileController::ObtainElementFilePath(int efId)
23 {
24     if (efId == ELEMENTARY_FILE_SMS || efId == ELEMENTARY_FILE_CST || efId == ELEMENTARY_FILE_RUIM_SPN ||
25         efId == ELEMENTARY_FILE_CSIM_LI || efId == ELEMENTARY_FILE_CSIM_MDN || efId == ELEMENTARY_FILE_CSIM_IMSIM ||
26         efId == ELEMENTARY_FILE_CSIM_CDMAHOME || efId == ELEMENTARY_FILE_CSIM_EPRL) {
27         return MASTER_FILE_SIM + DEDICATED_FILE_CDMA;
28     }
29     std::string path = ObtainElementFileForPublic(efId);
30     if (path.empty()) {
31         TELEPHONY_LOGE("Error: RuimFileController ElementFile Path get null string");
32     }
33     return path;
34 }
35 
ObtainTransparentImg(int fileId,int highOffset,int lowOffset,int length,AppExecFwk::InnerEvent::Pointer & onLoaded)36 void RuimFileController::ObtainTransparentImg(
37     int fileId, int highOffset, int lowOffset, int length, AppExecFwk::InnerEvent::Pointer &onLoaded)
38 {
39     AppExecFwk::InnerEvent::Pointer response = BuildCallerInfo(MSG_SIM_OBTAIN_ICON_DONE, fileId, 0, onLoaded);
40     if (telRilManager_ != nullptr) {
41         SimIoRequestInfo msg;
42         msg.command = CONTROLLER_REQ_GET_RESPONSE;
43         msg.fileId = fileId;
44         msg.p1 = 0;
45         msg.p2 = 0;
46         msg.p3 = GET_RESPONSE_ELEMENTARY_FILE_IMG_SIZE_BYTES;
47         msg.data = "";
48         msg.path = ObtainElementFilePath(ELEMENTARY_FILE_IMG);
49         msg.pin2 = "";
50         telRilManager_->GetSimIO(slotId_, msg, response);
51     }
52 }
53 
~RuimFileController()54 RuimFileController::~RuimFileController() {}
55 } // namespace Telephony
56 } // namespace OHOS
57