]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/common/win32/wstring.cc
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / common / win32 / wstring.cc
diff --git a/ceph/src/common/win32/wstring.cc b/ceph/src/common/win32/wstring.cc
new file mode 100644 (file)
index 0000000..1f9b49a
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (C) 2022 Cloudbase Solutions
+ *
+ * This is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software
+ * Foundation.  See file COPYING.
+ *
+ */
+
+#include "wstring.h"
+
+#include <boost/locale/encoding_utf.hpp>
+
+using boost::locale::conv::utf_to_utf;
+
+std::wstring to_wstring(const std::string& str)
+{
+  return utf_to_utf<wchar_t>(str.c_str(), str.c_str() + str.size());
+}
+
+std::string to_string(const std::wstring& str)
+{
+  return utf_to_utf<char>(str.c_str(), str.c_str() + str.size());
+}