Skip to content

Commit ec2c3c2

Browse files
authored
Merge pull request #1418 from NativeScript/darind/log-utf-16
Support UTF-16 characters in inspector Log domain
2 parents c7133fd + d6293c3 commit ec2c3c2

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

test-app/runtime/src/main/cpp/v8_inspector/src/inspector/utils/v8-inspector-common.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
//
44

55
#include <v8_inspector/src/inspector/utils/v8-inspector-common.h>
6+
#include <codecvt>
7+
#include <locale>
68
#include <ArgConverter.h>
79
#include <NativeScriptAssert.h>
810

@@ -39,6 +41,16 @@ protocol::DispatchResponse Common::protocolCommandNotSupportedDispatchResponse()
3941
return protocol::DispatchResponse::Error(s_notImplemented);
4042
}
4143

44+
std::vector<uint16_t> Common::toVector(const std::string &value) {
45+
std::wstring_convert<std::codecvt_utf8_utf16<char16_t>, char16_t> convert;
46+
std::u16string valueu16 = convert.from_bytes(value);
47+
48+
const uint16_t *begin = reinterpret_cast<uint16_t const *>(valueu16.data());
49+
const uint16_t *end = reinterpret_cast<uint16_t const *>(valueu16.data() + valueu16.size());
50+
std::vector<uint16_t> vector(begin, end);
51+
return vector;
52+
}
53+
4254
const String16 Common::s_notImplemented = "Protocol command not supported.";
4355
}
4456
}

test-app/runtime/src/main/cpp/v8_inspector/src/inspector/utils/v8-inspector-common.h

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ class Common {
1818

1919
static protocol::DispatchResponse protocolCommandNotSupportedDispatchResponse();
2020

21+
static std::vector<uint16_t> toVector(const std::string& value);
22+
2123
private:
2224
static const String16 s_notImplemented;
2325
};

test-app/runtime/src/main/cpp/v8_inspector/src/inspector/v8-log-agent-impl.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ void V8LogAgentImpl::EntryAdded(const std::string& text, std::string verbosityLe
7171
auto nano = std::chrono::time_point_cast<std::chrono::milliseconds>(std::chrono::system_clock::now());
7272
double timestamp = nano.time_since_epoch().count();
7373

74-
auto textString16 = String16(text.data());
74+
auto vector = utils::Common::toVector(text);
75+
auto textString16 = String16(vector.data(), vector.size());
7576

7677
auto logEntry = protocol::Log::LogEntry::create()
7778
.setSource(protocol::Log::LogEntry::SourceEnum::Javascript)

0 commit comments

Comments
 (0)