Path: convert remaining funcs to methods, keep fs_charset as std::string

This commit is contained in:
Denis Krjuchkov
2013-01-28 00:07:31 +06:00
parent 7149a8ae4f
commit 943064bb51
4 changed files with 28 additions and 30 deletions

View File

@@ -46,14 +46,14 @@
*/
#define MPD_PATH_MAX_UTF8 ((MPD_PATH_MAX - 1) * 4 + 1)
static char *fs_charset;
std::string fs_charset;
std::string Path::ToUTF8(const_pointer path_fs)
{
if (path_fs == nullptr)
return std::string();
GIConv conv = g_iconv_open("utf-8", fs_charset);
GIConv conv = g_iconv_open("utf-8", fs_charset.c_str());
if (conv == reinterpret_cast<GIConv>(-1))
return std::string();
@@ -80,7 +80,7 @@ Path Path::FromUTF8(const char *path_utf8)
gchar *p;
p = g_convert(path_utf8, -1,
fs_charset, "utf-8",
fs_charset.c_str(), "utf-8",
NULL, NULL, NULL);
if (p == NULL)
/* fall back to UTF-8 */
@@ -103,25 +103,24 @@ IsSupportedCharset(const char *charset)
}
static void
path_set_fs_charset(const char *charset)
SetFSCharset(const char *charset)
{
assert(charset != NULL);
if (!IsSupportedCharset(charset))
MPD_ERROR("invalid filesystem charset: %s", charset);
g_free(fs_charset);
fs_charset = g_strdup(charset);
fs_charset = charset;
g_debug("path_set_fs_charset: fs charset is: %s", fs_charset);
g_debug("SetFSCharset: fs charset is: %s", fs_charset.c_str());
}
const char *path_get_fs_charset(void)
const std::string &Path::GetFSCharset()
{
return fs_charset;
}
void path_global_init(void)
void Path::GlobalInit()
{
const char *charset = NULL;
@@ -146,14 +145,9 @@ void path_global_init(void)
}
if (charset) {
path_set_fs_charset(charset);
SetFSCharset(charset);
} else {
g_message("setting filesystem charset to ISO-8859-1");
path_set_fs_charset("ISO-8859-1");
SetFSCharset("ISO-8859-1");
}
}
void path_global_finish(void)
{
g_free(fs_charset);
}

View File

@@ -44,12 +44,6 @@
# endif
#endif
void path_global_init();
void path_global_finish();
const char *path_get_fs_charset();
/**
* A path name in the native file system character set.
*/
@@ -165,6 +159,16 @@ public:
gcc_pure
static std::string ToUTF8(const_pointer path_fs);
/**
* Performs global one-time initialization of this class.
*/
static void GlobalInit();
/**
* Gets file system character set name.
*/
static const std::string &GetFSCharset();
/**
* Copy a #Path object.
*/