-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util: add fast path for Latin1 decoding
PR-URL: #55275 Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Daniel Lemire <[email protected]>
- Loading branch information
1 parent
016d609
commit 99eddec
Showing
5 changed files
with
212 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
#include "encoding_binding.h" | ||
#include "env-inl.h" | ||
#include "gtest/gtest.h" | ||
#include "node_test_fixture.h" | ||
#include "v8.h" | ||
|
||
namespace node { | ||
namespace encoding_binding { | ||
|
||
bool RunDecodeLatin1(Environment* env, | ||
Local<Value> args[], | ||
bool ignore_bom, | ||
bool has_fatal, | ||
Local<Value>* result) { | ||
Isolate* isolate = env->isolate(); | ||
TryCatch try_catch(isolate); | ||
|
||
Local<Boolean> ignoreBOMValue = Boolean::New(isolate, ignore_bom); | ||
Local<Boolean> fatalValue = Boolean::New(isolate, has_fatal); | ||
|
||
Local<Value> updatedArgs[] = {args[0], ignoreBOMValue, fatalValue}; | ||
|
||
BindingData::DecodeLatin1(FunctionCallbackInfo<Value>(updatedArgs)); | ||
|
||
if (try_catch.HasCaught()) { | ||
return false; | ||
} | ||
|
||
*result = try_catch.Exception(); | ||
return true; | ||
} | ||
|
||
class EncodingBindingTest : public NodeTestFixture {}; | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_ValidInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
const uint8_t latin1_data[] = {0xC1, 0xE9, 0xF3}; | ||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, sizeof(latin1_data)); | ||
memcpy(ab->GetBackingStore()->Data(), latin1_data, sizeof(latin1_data)); | ||
|
||
Local<Uint8Array> array = Uint8Array::New(ab, 0, sizeof(latin1_data)); | ||
Local<Value> args[] = {array}; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, false, false, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, "Áéó"); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_EmptyInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, 0); | ||
Local<Uint8Array> array = Uint8Array::New(ab, 0, 0); | ||
Local<Value> args[] = {array}; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, false, false, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, ""); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_InvalidInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
Local<Value> args[] = {String::NewFromUtf8Literal(isolate, "Invalid input")}; | ||
|
||
Local<Value> result; | ||
EXPECT_FALSE(RunDecodeLatin1(env, args, false, false, &result)); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_IgnoreBOM) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
const uint8_t latin1_data[] = {0xFE, 0xFF, 0xC1, 0xE9, 0xF3}; | ||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, sizeof(latin1_data)); | ||
memcpy(ab->GetBackingStore()->Data(), latin1_data, sizeof(latin1_data)); | ||
|
||
Local<Uint8Array> array = Uint8Array::New(ab, 0, sizeof(latin1_data)); | ||
Local<Value> args[] = {array}; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, true, false, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, "Áéó"); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_FatalInvalidInput) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
const uint8_t invalid_data[] = {0xFF, 0xFF, 0xFF}; | ||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, sizeof(invalid_data)); | ||
memcpy(ab->GetBackingStore()->Data(), invalid_data, sizeof(invalid_data)); | ||
|
||
Local<Uint8Array> array = Uint8Array::New(ab, 0, sizeof(invalid_data)); | ||
Local<Value> args[] = {array}; | ||
|
||
Local<Value> result; | ||
EXPECT_FALSE(RunDecodeLatin1(env, args, false, true, &result)); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_IgnoreBOMAndFatal) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
const uint8_t latin1_data[] = {0xFE, 0xFF, 0xC1, 0xE9, 0xF3}; | ||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, sizeof(latin1_data)); | ||
memcpy(ab->GetBackingStore()->Data(), latin1_data, sizeof(latin1_data)); | ||
|
||
Local<Uint8Array> array = Uint8Array::New(ab, 0, sizeof(latin1_data)); | ||
Local<Value> args[] = {array}; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, true, true, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, "Áéó"); | ||
} | ||
|
||
TEST_F(EncodingBindingTest, DecodeLatin1_BOMPresent) { | ||
Environment* env = CreateEnvironment(); | ||
Isolate* isolate = env->isolate(); | ||
HandleScope handle_scope(isolate); | ||
|
||
const uint8_t latin1_data[] = {0xFF, 0xC1, 0xE9, 0xF3}; | ||
Local<ArrayBuffer> ab = ArrayBuffer::New(isolate, sizeof(latin1_data)); | ||
memcpy(ab->GetBackingStore()->Data(), latin1_data, sizeof(latin1_data)); | ||
|
||
Local<Uint8Array> array = Uint8Array::New(ab, 0, sizeof(latin1_data)); | ||
Local<Value> args[] = {array}; | ||
|
||
Local<Value> result; | ||
EXPECT_TRUE(RunDecodeLatin1(env, args, true, false, &result)); | ||
|
||
String::Utf8Value utf8_result(isolate, result); | ||
EXPECT_STREQ(*utf8_result, "Áéó"); | ||
} | ||
|
||
} // namespace encoding_binding | ||
} // namespace node |