blob: 96aeaddb7c76e361b6a6f2e7fbb45bf07e771175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "fxbarcode/BC_UtilCodingConvert.h"
CBC_UtilCodingConvert::CBC_UtilCodingConvert() {}
CBC_UtilCodingConvert::~CBC_UtilCodingConvert() {}
void CBC_UtilCodingConvert::UnicodeToLocale(const WideString& src,
ByteString& dst) {
dst = src.ToDefANSI();
}
void CBC_UtilCodingConvert::LocaleToUtf8(const ByteString& src,
ByteString& dst) {
WideString unicode = WideString::FromLocal(src.AsStringView());
dst = unicode.UTF8Encode();
}
void CBC_UtilCodingConvert::LocaleToUtf8(const ByteString& src,
std::vector<uint8_t>& dst) {
WideString unicode = WideString::FromLocal(src.AsStringView());
ByteString utf8 = unicode.UTF8Encode();
dst = std::vector<uint8_t>(utf8.begin(), utf8.end());
}
void CBC_UtilCodingConvert::Utf8ToLocale(const std::vector<uint8_t>& src,
ByteString& dst) {
ByteString utf8;
for (uint8_t value : src)
utf8 += value;
dst = WideString::FromUTF8(utf8.AsStringView()).ToDefANSI();
}
void CBC_UtilCodingConvert::Utf8ToLocale(const uint8_t* src,
int32_t count,
ByteString& dst) {
dst = WideString::FromUTF8(ByteStringView(src, count)).ToDefANSI();
}
void CBC_UtilCodingConvert::UnicodeToUTF8(const WideString& src,
ByteString& dst) {
dst = src.UTF8Encode();
}
|