Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
bc00c38f
Commit
bc00c38f
authored
Nov 30, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/icu/Converter: add ICU-based backend
parent
4658bd82
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
119 additions
and
4 deletions
+119
-4
Makefile.am
Makefile.am
+4
-0
Charset.hxx
src/fs/Charset.hxx
+1
-1
Converter.cxx
src/lib/icu/Converter.cxx
+90
-2
Converter.hxx
src/lib/icu/Converter.hxx
+24
-1
No files found.
Makefile.am
View file @
bc00c38f
...
...
@@ -465,7 +465,11 @@ libicu_a_CPPFLAGS = $(AM_CPPFLAGS) \
$(ICU_CFLAGS)
ICU_LDADD
=
libicu.a
$(ICU_LIBS)
if
HAVE_ICU
else
ICU_LDADD
+=
$(GLIB_LIBS)
endif
# PCM library
...
...
src/fs/Charset.hxx
View file @
bc00c38f
...
...
@@ -25,7 +25,7 @@
#include <string>
#if
def HAVE_GLIB
#if
defined(HAVE_ICU) || defined(HAVE_GLIB)
#define HAVE_FS_CHARSET
#endif
...
...
src/lib/icu/Converter.cxx
View file @
bc00c38f
...
...
@@ -19,20 +19,48 @@
#include "config.h"
#include "Converter.hxx"
#include "Error.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Macros.hxx"
#include "util/WritableBuffer.hxx"
#include "util/ConstBuffer.hxx"
#include <string.h>
#ifdef HAVE_GLIB
#ifdef HAVE_ICU
#include "Util.hxx"
#include <unicode/ucnv.h>
#elif defined(HAVE_GLIB)
#include "util/Domain.hxx"
static
constexpr
Domain
g_iconv_domain
(
"g_iconv"
);
#endif
#ifdef HAVE_ICU
IcuConverter
::~
IcuConverter
()
{
ucnv_close
(
converter
);
}
#endif
#ifdef HAVE_ICU_CONVERTER
IcuConverter
*
IcuConverter
::
Create
(
const
char
*
charset
,
Error
&
error
)
{
#ifdef HAVE_ICU
UErrorCode
code
=
U_ZERO_ERROR
;
UConverter
*
converter
=
ucnv_open
(
charset
,
&
code
);
if
(
converter
==
nullptr
)
{
error
.
Format
(
icu_domain
,
int
(
code
),
"Failed to initialize charset '%s': %s"
,
charset
,
u_errorName
(
code
));
return
nullptr
;
}
return
new
IcuConverter
(
converter
);
#elif defined(HAVE_GLIB)
GIConv
to
=
g_iconv_open
(
"utf-8"
,
charset
);
GIConv
from
=
g_iconv_open
(
charset
,
"utf-8"
);
if
(
to
==
(
GIConv
)
-
1
||
from
==
(
GIConv
)
-
1
)
{
...
...
@@ -46,8 +74,12 @@ IcuConverter::Create(const char *charset, Error &error)
}
return
new
IcuConverter
(
to
,
from
);
#endif
}
#ifdef HAVE_ICU
#elif defined(HAVE_GLIB)
static
std
::
string
DoConvert
(
GIConv
conv
,
const
char
*
src
)
{
...
...
@@ -66,16 +98,72 @@ DoConvert(GIConv conv, const char *src)
return
std
::
string
(
buffer
,
sizeof
(
buffer
)
-
out_left
);
}
#endif
std
::
string
IcuConverter
::
ToUTF8
(
const
char
*
s
)
const
{
#ifdef HAVE_ICU
const
ScopeLock
protect
(
mutex
);
ucnv_resetToUnicode
(
converter
);
// TODO: dynamic buffer?
UChar
buffer
[
4096
],
*
target
=
buffer
;
const
char
*
source
=
s
;
UErrorCode
code
=
U_ZERO_ERROR
;
ucnv_toUnicode
(
converter
,
&
target
,
buffer
+
ARRAY_SIZE
(
buffer
),
&
source
,
source
+
strlen
(
source
),
nullptr
,
true
,
&
code
);
if
(
code
!=
U_ZERO_ERROR
)
return
std
::
string
();
const
size_t
target_length
=
target
-
buffer
;
const
auto
u
=
UCharToUTF8
({
buffer
,
target_length
});
if
(
u
.
IsNull
())
return
std
::
string
();
std
::
string
result
(
u
.
data
,
u
.
size
);
delete
[]
u
.
data
;
return
result
;
#elif defined(HAVE_GLIB)
return
DoConvert
(
to_utf8
,
s
);
#endif
}
std
::
string
IcuConverter
::
FromUTF8
(
const
char
*
s
)
const
{
#ifdef HAVE_ICU
const
ScopeLock
protect
(
mutex
);
const
auto
u
=
UCharFromUTF8
(
s
);
if
(
u
.
IsNull
())
return
std
::
string
();
ucnv_resetFromUnicode
(
converter
);
// TODO: dynamic buffer?
char
buffer
[
4096
],
*
target
=
buffer
;
const
UChar
*
source
=
u
.
data
;
UErrorCode
code
=
U_ZERO_ERROR
;
ucnv_fromUnicode
(
converter
,
&
target
,
buffer
+
ARRAY_SIZE
(
buffer
),
&
source
,
u
.
end
(),
nullptr
,
true
,
&
code
);
delete
[]
u
.
data
;
if
(
code
!=
U_ZERO_ERROR
)
return
std
::
string
();
return
std
::
string
(
buffer
,
target
);
#elif defined(HAVE_GLIB)
return
DoConvert
(
from_utf8
,
s
);
#endif
}
#endif
src/lib/icu/Converter.hxx
View file @
bc00c38f
...
...
@@ -23,7 +23,10 @@
#include "check.h"
#include "Compiler.h"
#ifdef HAVE_GLIB
#ifdef HAVE_ICU
#include "thread/Mutex.hxx"
#define HAVE_ICU_CONVERTER
#elif defined(HAVE_GLIB)
#include <glib.h>
#define HAVE_ICU_CONVERTER
#endif
...
...
@@ -34,21 +37,41 @@
class
Error
;
#ifdef HAVE_ICU
struct
UConverter
;
#endif
/**
* This class can convert strings with a certain character set to and
* from UTF-8.
*/
class
IcuConverter
{
#ifdef HAVE_ICU
/**
* ICU's UConverter class is not thread-safe. This mutex
* serializes simultaneous calls.
*/
mutable
Mutex
mutex
;
UConverter
*
const
converter
;
IcuConverter
(
UConverter
*
_converter
)
:
converter
(
_converter
)
{}
#elif defined(HAVE_GLIB)
const
GIConv
to_utf8
,
from_utf8
;
IcuConverter
(
GIConv
_to
,
GIConv
_from
)
:
to_utf8
(
_to
),
from_utf8
(
_from
)
{}
#endif
public
:
#ifdef HAVE_ICU
~
IcuConverter
();
#elif defined(HAVE_GLIB)
~
IcuConverter
()
{
g_iconv_close
(
to_utf8
);
g_iconv_close
(
from_utf8
);
}
#endif
static
IcuConverter
*
Create
(
const
char
*
charset
,
Error
&
error
);
...
...
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