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 "csim_file_controller.h" 17 18 namespace OHOS { 19 namespace Telephony { CsimFileController(int slotId)20CsimFileController::CsimFileController(int slotId) : IccFileController("CsimFileController", slotId) {} 21 ObtainElementFilePath(int efId)22std::string CsimFileController::ObtainElementFilePath(int efId) 23 { 24 std::string mf = MASTER_FILE_SIM; 25 if (efId == ELEMENTARY_FILE_SMS || efId == ELEMENTARY_FILE_CST || efId == ELEMENTARY_FILE_FDN || 26 efId == ELEMENTARY_FILE_MSISDN || efId == ELEMENTARY_FILE_RUIM_SPN || efId == ELEMENTARY_FILE_CSIM_LI || 27 efId == ELEMENTARY_FILE_CSIM_MDN || efId == ELEMENTARY_FILE_CSIM_IMSIM || 28 efId == ELEMENTARY_FILE_CSIM_CDMAHOME || efId == ELEMENTARY_FILE_CSIM_EPRL || 29 efId == ELEMENTARY_FILE_CSIM_MIPUPP) { 30 mf.append(DEDICATED_FILE_ADF); 31 return mf; 32 } 33 std::string path = ObtainElementFileForPublic(efId); 34 if (!path.empty()) { 35 return path; 36 } 37 mf.append(DEDICATED_FILE_TELECOM); 38 mf.append(DEDICATED_FILE_DIALLING_NUMBERS); 39 return mf; 40 } 41 ~CsimFileController()42CsimFileController::~CsimFileController() {} 43 } // namespace Telephony 44 } // namespace OHOS 45