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 "key_manager.h" 17 #include "file_entry.h" 18 #include "resource_util.h" 19 20 namespace OHOS { 21 namespace Global { 22 namespace Restool { 23 using namespace std; KeyManager()24KeyManager::KeyManager() 25 { 26 keys_.emplace(XmlKeyNode::KeyType::NODE, make_shared<XmlKeyNode>()); 27 keys_.emplace(XmlKeyNode::KeyType::ATTRIBUTE, make_shared<XmlKeyNode>()); 28 keys_.emplace(XmlKeyNode::KeyType::CONSTANT, make_shared<XmlKeyNode>()); 29 keys_.emplace(XmlKeyNode::KeyType::CONTENT, make_shared<XmlKeyNode>()); 30 } 31 LoadKey(const string & keysPath)32bool KeyManager::LoadKey(const string &keysPath) 33 { 34 for (auto &key : keys_) { 35 string keyPath = FileEntry::FilePath(keysPath).Append(XmlKeyNode::KEY_TO_FILE_NAME.at(key.first)).GetPath(); 36 if (!ResourceUtil::FileExist(keyPath)) { 37 continue; 38 } 39 if (!key.second->LoadFromFile(keyPath)) { 40 return false; 41 } 42 } 43 return true; 44 } 45 SaveKey(const string & keysPath)46bool KeyManager::SaveKey(const string &keysPath) 47 { 48 for (const auto &iter : keys_) { 49 string keyPath = FileEntry::FilePath(keysPath).Append(XmlKeyNode::KEY_TO_FILE_NAME.at(iter.first)).GetPath(); 50 if (!iter.second->SaveToFile(keyPath)) { 51 return false; 52 } 53 } 54 return true; 55 } 56 } 57 } 58 }