* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
* \file file.h
* \brief
*/
#pragma once
#include <string>
#include <limits.h>
#include <dlfcn.h>
#include <sys/stat.h>
#include "pypto_fwk_log.h"
namespace npu {
namespace tile_fwk {
inline std::string RealPath(const std::string& path)
{
std::string res;
if (path.empty()) {
return res;
}
if (path.size() >= PATH_MAX) {
FE_LOGI("File path %s is too long.", path.c_str());
return "";
}
char resolvedPath[PATH_MAX] = {0x00};
if (realpath(path.c_str(), resolvedPath) == nullptr) {
return res;
}
return std::string(resolvedPath);
}
inline bool FileExist(const std::string& filePath) { return !RealPath(filePath).empty(); }
inline bool IsPathExist(const std::string& path)
{
if (path.empty()) {
return false;
}
struct stat buffer;
return (stat(path.c_str(), &buffer) == 0);
}
inline std::string TrimLine(const std::string& s)
{
size_t start = s.find_first_not_of(" \t\n\r");
size_t end = s.find_last_not_of(" \t\n\r");
return (start == std::string::npos) ? "" : s.substr(start, end - start + 1);
}
}
}