Add the SPDLOG_USE_WCHAR tweak to enable support for Unicode names on Windows. Refs #111

This commit is contained in:
unknown
2016-04-02 22:12:43 -05:00
parent 139b1bd094
commit 113ebcfd97
7 changed files with 104 additions and 48 deletions

View File

@@ -43,11 +43,11 @@ public:
}
void open(const std::string& fname, bool truncate = false)
void open(const filename_str_t& fname, bool truncate = false)
{
close();
const char* mode = truncate ? "wb" : "ab";
const filename_char_t* mode = truncate ? SPDLOG_FILENAME_T("wb") : SPDLOG_FILENAME_T("ab");
_filename = fname;
for (int tries = 0; tries < open_tries; ++tries)
{
@@ -57,7 +57,7 @@ public:
std::this_thread::sleep_for(std::chrono::milliseconds(open_interval));
}
throw spdlog_ex("Failed opening file " + fname + " for writing");
throw spdlog_ex("Failed opening file " + filename_to_bytes(_filename) + " for writing");
}
void reopen(bool truncate)
@@ -88,7 +88,7 @@ public:
size_t msg_size = msg.formatted.size();
auto data = msg.formatted.data();
if (std::fwrite(data, 1, msg_size, _fd) != msg_size)
throw spdlog_ex("Failed writing to file " + _filename);
throw spdlog_ex("Failed writing to file " + filename_to_bytes(_filename));
if (_force_flush)
std::fflush(_fd);
@@ -98,19 +98,19 @@ public:
long size()
{
if (!_fd)
throw spdlog_ex("Cannot use size() on closed file " + _filename);
throw spdlog_ex("Cannot use size() on closed file " + filename_to_bytes(_filename));
auto pos = ftell(_fd);
if (fseek(_fd, 0, SEEK_END) != 0)
throw spdlog_ex("fseek failed on file " + _filename);
throw spdlog_ex("fseek failed on file " + filename_to_bytes(_filename));
auto file_size = ftell(_fd);
if(fseek(_fd, pos, SEEK_SET) !=0)
throw spdlog_ex("fseek failed on file " + _filename);
throw spdlog_ex("fseek failed on file " + filename_to_bytes(_filename));
if (file_size == -1)
throw spdlog_ex("ftell failed on file " + _filename);
throw spdlog_ex("ftell failed on file " + filename_to_bytes(_filename));
return file_size;
@@ -118,12 +118,12 @@ public:
}
const std::string& filename() const
const filename_str_t& filename() const
{
return _filename;
}
static bool file_exists(const std::string& name)
static bool file_exists(const filename_str_t& name)
{
return os::file_exists(name);
@@ -133,7 +133,7 @@ public:
private:
FILE* _fd;
std::string _filename;
filename_str_t _filename;
bool _force_flush;