/* * Copyright (c) 2023 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. */ #ifndef FILE_UTIL_H #define FILE_UTIL_H #include #include #include #include namespace OHOS { namespace HiviewDFX { namespace { const int MAX_FILE_LENGTH = 32 * 1024 * 1024; } static bool LoadStringFromFile(const std::string& filePath, std::string& content) { std::ifstream file(filePath.c_str()); if (!file.is_open()) { return false; } file.seekg(0, std::ios::end); const long fileLength = file.tellg(); if (fileLength > MAX_FILE_LENGTH) { return false; } content.clear(); file.seekg(0, std::ios::beg); std::copy(std::istreambuf_iterator(file), std::istreambuf_iterator(), std::back_inserter(content)); return true; } } // namespace HiviewDFX } // namespace OHOS #endif