/* * Copyright (c) 2022-2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "b_resources/b_constants.h" #include "tools_op.h" #include #include namespace OHOS::FileManagement::Backup { using namespace std; const std::string ToolsOp::GetName() const { std::stringstream ss; auto &&allSubOps = desc_.opName; for (size_t j = 0; j < allSubOps.size(); ++j) { ss << allSubOps[j]; if (j != allSubOps.size() - 1) { ss << ' '; } } return ss.str(); } bool ToolsOp::Register(ToolsOp &&op) { auto &&opName = op.GetDescriptor().opName; auto isIncorrect = [&opName](const std::string_view &subOp) { std::vector patterns { "\\W", // 匹配任意不是字母、数字、下划线的字符 "^$", // 匹配空串 }; for (auto subOp : opName) { for (auto pattern : patterns) { std::regex re(pattern); if (std::regex_search(string(subOp), re)) { fprintf(stderr, "Sub-op '%s' failed to pass regex '%s'\n", subOp.data(), pattern.c_str()); return true; } } } return false; }; if (std::any_of(opName.begin(), opName.end(), isIncorrect)) { fprintf(stderr, "Failed to register an illegal operation '%s'\n", op.GetName().c_str()); return false; } ToolsOp::opsAvailable_.emplace_back(std::move(op)); // sort with ascending order std::sort(opsAvailable_.begin(), opsAvailable_.end(), [](const ToolsOp &lop, const ToolsOp &rop) { return lop.desc_.opName < rop.desc_.opName; }); return true; } bool ToolsOp::TryMatch(CRefVStrView op) const { return op == desc_.opName; } int ToolsOp::Execute(map> args) const { if (!desc_.funcExec) { fprintf(stderr, "Incomplete operation: executor is missing\n"); return -EPERM; } return desc_.funcExec(args); } int ToolsOp::GetFIleNums(const std::string &bundleName, bool isWholeRestore) { std::string path = ""; path = string(isWholeRestore? BConstants::BACKUP_TOOL_RECEIVE_DIR : BConstants::BACKUP_TOOL_INCREMENTAL_RECEIVE_DIR) + bundleName; struct dirent *entry; printf("bundle path = %s\n", path.c_str()); DIR *dir = opendir(path.c_str()); if (dir == nullptr) { fprintf(stderr, "Open path error %s\n", path.c_str()); return DEFAULT_ERR_NUMBER; } int num = 0; while ((entry = readdir(dir)) != nullptr) { if (entry->d_type != DT_DIR || (strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0)) { ++num; } else { continue; } } if (num == 0) { fprintf(stderr, "The path dir is empty!\n"); } closedir(dir); return num; } } // namespace OHOS::FileManagement::Backup