29[[nodiscard]]
MRMESH_API std::string Utf16ToUtf8(
const std::wstring_view & utf16 );
32#if defined __cpp_lib_char8_t
34[[nodiscard]]
inline std::string
asString(
const std::u8string & s ) {
return { s.begin(), s.end() }; }
35[[nodiscard]]
inline std::u8string
asU8String(
const std::string & s ) {
return { s.begin(), s.end() }; }
37#if defined( _LIBCPP_VERSION ) && _LIBCPP_VERSION < 12000
38[[nodiscard]]
inline std::filesystem::path
pathFromUtf8(
const std::string & s ) {
return std::filesystem::path( s ); }
39[[nodiscard]]
inline std::filesystem::path
pathFromUtf8(
const char * s ) {
return std::filesystem::path( std::string( s ) ); }
41[[nodiscard]]
inline std::filesystem::path
pathFromUtf8(
const std::string & s ) {
return std::filesystem::path(
asU8String( s ) ); }
42[[nodiscard]]
inline std::filesystem::path
pathFromUtf8(
const char * s ) {
return std::filesystem::path(
asU8String( std::string( s ) ) ); }
47[[nodiscard]]
inline const std::string &
asString(
const std::string & s ) {
return s; }
48[[nodiscard]]
inline const std::string &
asU8String(
const std::string & s ) {
return s; }
50[[nodiscard]]
inline std::string
asString( std::string && s ) {
return std::move( s ); }
51[[nodiscard]]
inline std::string
asU8String( std::string && s ) {
return std::move( s ); }
53[[nodiscard]]
inline std::filesystem::path
pathFromUtf8(
const std::string & s ) {
return std::filesystem::u8path( s ); }
54[[nodiscard]]
inline std::filesystem::path
pathFromUtf8(
const char * s ) {
return std::filesystem::u8path( s ); }
59#if defined( _LIBCPP_VERSION ) && _LIBCPP_VERSION < 12000
60[[nodiscard]]
inline std::string
utf8string(
const std::filesystem::path & path )
61 {
return path.u8string(); }
63[[nodiscard]]
inline std::string
utf8string(
const std::filesystem::path & path )
64 {
return asString( path.u8string() ); }
103[[deprecated(
"Use `valueToString()` from `MRViewer/MRUnits.h` instead!")]]
115 return "Loading canceled: " +
utf8string( path );
#define MRMESH_API
Definition MRMesh/MRMeshFwd.h:46
MRMESH_API std::string utf8ToSystem(const std::string &utf8)
std::filesystem::path pathFromUtf8(const std::string &s)
Definition MRStringConvert.h:53
const std::string & asU8String(const std::string &s)
Definition MRStringConvert.h:48
MRMESH_API std::wstring utf8ToWide(const char *utf8)
converts UTF8-encoded string into UTF16-encoded string
std::string utf8string(const std::filesystem::path &path)
returns filename as UTF8-encoded string
Definition MRStringConvert.h:63
MRMESH_API std::string systemToUtf8(const std::string &system)
converts system encoded string to UTF8-encoded string
MRMESH_API std::string wideToUtf8(const wchar_t *wide)
converts wide null terminating string to UTF8-encoded string
Definition MRCameraOrientationPlugin.h:8
std::string getCancelMessage(const std::filesystem::path &path)
Definition MRStringConvert.h:113
ImVec2 size(const ViewportRectangle &rect)
Definition MRViewport.h:32
MR_BIND_IGNORE auto unexpected(E &&e)
Definition MRExpected.h:61
MRMESH_API std::string bytesString(size_t size)
MRMESH_API char * formatNoTrailingZeros(char *fmt, double v, int digitsAfterPoint, int precision=6)
MRMESH_API double roundToPrecision(double v, int precision)
returns given value rounded to given number of decimal digits
MRMESH_API bool hasProhibitedChars(const std::string &line)
returns true if line contains any of OS prohibited chars ('?', '*', '/', '\', '"',...
Expected< T > addFileNameInError(Expected< T > v, const std::filesystem::path &file)
if (v) contains an error, then appends given file name to that error
Definition MRStringConvert.h:84
MRMESH_API std::string toLower(std::string str)
return a copy of the string with all alphabetic characters replaced with upper-case variants
tl::expected< T, E > Expected
Definition MRExpected.h:58
MRMESH_API std::string replaceProhibitedChars(const std::string &line, char replacement='_')
replace OS prohibited chars ('?', '*', '/', '\', '"', '<', '>') with replacement char
MRMESH_API std::string commonFilesName(const std::vector< std::filesystem::path > &files)
MRMESH_API const char * asString(SignDetectionMode m)
returns string representation of enum values