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