Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
3bcd3cef
Unverified
Commit
3bcd3cef
authored
Jun 30, 2019
by
Charles Milette
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix deprecation warnings in filename_to_str
parent
f09334dc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
35 deletions
+41
-35
include/spdlog/common.h
include/spdlog/common.h
+5
-12
include/spdlog/details/os-inl.h
include/spdlog/details/os-inl.h
+30
-17
include/spdlog/details/os.h
include/spdlog/details/os.h
+3
-3
include/spdlog/logger.h
include/spdlog/logger.h
+3
-3
No files found.
include/spdlog/common.h
View file @
3bcd3cef
...
...
@@ -26,11 +26,6 @@
#include <windows.h>
#endif //_WIN32
#if defined(SPDLOG_WCHAR_FILENAMES) || defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT)
#include <codecvt>
#include <locale>
#endif
#ifdef SPDLOG_COMPILED_LIB
#undef SPDLOG_HEADER_ONLY
#define SPDLOG_INLINE
...
...
@@ -80,11 +75,6 @@ class sink;
#if defined(_WIN32) && defined(SPDLOG_WCHAR_FILENAMES)
using
filename_t
=
std
::
wstring
;
#define SPDLOG_FILENAME_T(s) L##s
inline
std
::
string
filename_to_str
(
const
filename_t
&
filename
)
{
std
::
wstring_convert
<
std
::
codecvt_utf8
<
wchar_t
>
,
wchar_t
>
c
;
return
c
.
to_bytes
(
filename
);
}
#else
using
filename_t
=
std
::
string
;
#define SPDLOG_FILENAME_T(s) s
...
...
@@ -97,10 +87,13 @@ using err_handler = std::function<void(const std::string &err_msg)>;
// string_view type - either std::string_view or fmt::string_view (pre c++17)
#if defined(FMT_USE_STD_STRING_VIEW)
using
string_view_t
=
std
::
string_view
;
template
<
typename
T
>
using
basic_string_view_t
=
std
::
basic_string_view
<
T
>
;
#else
using
string_view_t
=
fmt
::
string_view
;
template
<
typename
T
>
using
basic_string_view_t
=
fmt
::
basic_string_view
<
T
>
;
#endif
using
string_view_t
=
basic_string_view_t
<
char
>
;
#if defined(SPDLOG_NO_ATOMIC_LEVELS)
using
level_t
=
details
::
null_atomic_int
;
...
...
include/spdlog/details/os-inl.h
View file @
3bcd3cef
...
...
@@ -36,6 +36,10 @@
#include <share.h>
#endif
#if defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT) || defined(SPDLOG_WCHAR_FILENAMES)
#include <limits>
#endif
#else // unix
#include <fcntl.h>
...
...
@@ -342,13 +346,12 @@ SPDLOG_INLINE void sleep_for_millis(int milliseconds) SPDLOG_NOEXCEPT
// wchar support for windows file names (SPDLOG_WCHAR_FILENAMES must be defined)
#if defined(_WIN32) && defined(SPDLOG_WCHAR_FILENAMES)
SPDLOG_INLINE
std
::
string
filename_to_str
(
const
filename_t
&
filename
)
SPDLOG_NOEXCEPT
SPDLOG_INLINE
std
::
string
filename_to_str
(
const
filename_t
&
filename
)
{
std
::
wstring_convert
<
std
::
codecvt_utf8
<
wchar_t
>
,
wchar_t
>
c
;
return
c
.
to_bytes
(
filename
);
return
wstr_to_str
(
filename
);
}
#else
SPDLOG_INLINE
std
::
string
filename_to_str
(
const
filename_t
&
filename
)
SPDLOG_NOEXCEPT
SPDLOG_INLINE
std
::
string
filename_to_str
(
const
filename_t
&
filename
)
{
return
filename
;
}
...
...
@@ -398,28 +401,38 @@ SPDLOG_INLINE bool in_terminal(FILE *file) SPDLOG_NOEXCEPT
#endif
}
#if
defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT
) && defined(_WIN32)
SPDLOG_INLINE
void
wbuf_to_utf8buf
(
const
fmt
::
wmemory_buffer
&
wbuf
,
fmt
::
memory_buffer
&
target
)
#if
(defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT) || defined(SPDLOG_WCHAR_FILENAMES)
) && defined(_WIN32)
SPDLOG_INLINE
std
::
string
wstr_to_str
(
basic_string_view_t
<
wchar_t
>
wstr
)
{
int
wbuf_size
=
static_cast
<
int
>
(
wbuf
.
size
());
if
(
wbuf_size
==
0
)
if
(
wstr
.
size
()
>
static_cast
<
size_t
>
(
std
::
numeric_limits
<
int
>::
max
()))
{
return
;
throw
spdlog
::
spdlog_ex
(
"UTF-16 string is too big to be converted to UTF-8"
)
;
}
auto
result_size
=
::
WideCharToMultiByte
(
CP_UTF8
,
0
,
wbuf
.
data
(),
wbuf_size
,
NULL
,
0
,
NULL
,
NULL
);
if
(
result_size
>
0
)
int
wstr_size
=
static_cast
<
int
>
(
wstr
.
size
());
if
(
wstr_size
==
0
)
{
target
.
resize
(
result_size
);
::
WideCharToMultiByte
(
CP_UTF8
,
0
,
wbuf
.
data
(),
wbuf_size
,
&
target
.
data
()[
0
],
result_size
,
NULL
,
NULL
);
return
{
};
}
else
int
result_size
=
::
WideCharToMultiByte
(
CP_UTF8
,
0
,
wstr
.
data
(),
wstr_size
,
NULL
,
0
,
NULL
,
NULL
);
if
(
result_size
>
0
)
{
throw
spdlog
::
spdlog_ex
(
fmt
::
format
(
"WideCharToMultiByte failed. Last error: {}"
,
::
GetLastError
()));
std
::
string
result
;
result
.
resize
(
result_size
);
result_size
=
::
WideCharToMultiByte
(
CP_UTF8
,
0
,
wstr
.
data
(),
wstr_size
,
&
result
[
0
],
result_size
,
NULL
,
NULL
);
if
(
result_size
>
0
)
{
result
.
resize
(
result_size
);
return
result
;
}
}
throw
spdlog
::
spdlog_ex
(
fmt
::
format
(
"WideCharToMultiByte failed. Last error: {}"
,
::
GetLastError
()));
}
#endif //
SPDLOG_WCHAR_TO_UTF8_SUPPORT) && _WIN32
#endif //
(defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT) || defined(SPDLOG_WCHAR_FILENAMES)) && defined(_WIN32)
}
// namespace os
}
// namespace details
...
...
include/spdlog/details/os.h
View file @
3bcd3cef
...
...
@@ -68,7 +68,7 @@ size_t thread_id() SPDLOG_NOEXCEPT;
// See https://github.com/gabime/spdlog/issues/609
void
sleep_for_millis
(
int
milliseconds
)
SPDLOG_NOEXCEPT
;
std
::
string
filename_to_str
(
const
filename_t
&
filename
)
SPDLOG_NOEXCEPT
;
std
::
string
filename_to_str
(
const
filename_t
&
filename
);
int
pid
()
SPDLOG_NOEXCEPT
;
...
...
@@ -80,8 +80,8 @@ bool is_color_terminal() SPDLOG_NOEXCEPT;
// Source: https://github.com/agauniyal/rang/
bool
in_terminal
(
FILE
*
file
)
SPDLOG_NOEXCEPT
;
#if
defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT
) && defined(_WIN32)
void
wbuf_to_utf8buf
(
const
fmt
::
wmemory_buffer
&
wbuf
,
fmt
::
memory_buffer
&
target
);
#if
(defined(SPDLOG_WCHAR_TO_UTF8_SUPPORT) || defined(SPDLOG_WCHAR_FILENAMES)
) && defined(_WIN32)
std
::
string
wstr_to_str
(
basic_string_view_t
<
wchar_t
>
wstr
);
#endif
}
// namespace os
...
...
include/spdlog/logger.h
View file @
3bcd3cef
...
...
@@ -243,9 +243,9 @@ public:
// format to wmemory_buffer and convert to utf8
fmt
::
wmemory_buffer
wbuf
;
fmt
::
format_to
(
wbuf
,
fmt
,
args
...);
fmt
::
memory_buffer
buf
;
details
::
os
::
wbuf_to_utf8buf
(
wbuf
,
buf
);
details
::
log_msg
log_msg
(
source
,
name_
,
lvl
,
string_view_t
(
buf
.
data
(),
buf
.
size
())
);
const
auto
payload
=
details
::
os
::
wstr_to_str
({
wbuf
.
data
(),
wbuf
.
size
()
}
);
details
::
log_msg
log_msg
(
source
,
name_
,
lvl
,
payload
);
sink_it_
(
log_msg
);
}
catch
(
const
std
::
exception
&
ex
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment