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