forked from oven-sh/bun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBunString.cpp
562 lines (464 loc) · 17.2 KB
/
BunString.cpp
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
#include "root.h"
#include "headers-handwritten.h"
#include <JavaScriptCore/JSCJSValueInlines.h>
#include "helpers.h"
#include "simdutf.h"
#include "JSDOMURL.h"
#include "DOMURL.h"
#include "ZigGlobalObject.h"
#include "IDLTypes.h"
#include "JSDOMWrapperCache.h"
#include "JSDOMAttribute.h"
#include "JSDOMBinding.h"
#include "JSDOMConstructor.h"
#include "JSDOMConvertAny.h"
#include "JSDOMConvertBase.h"
#include "JSDOMConvertBoolean.h"
#include "JSDOMConvertInterface.h"
#include "JSDOMConvertStrings.h"
#include "JSDOMExceptionHandling.h"
#include "JSDOMGlobalObjectInlines.h"
#include "JSDOMOperation.h"
#include <wtf/Seconds.h>
#include <wtf/text/ExternalStringImpl.h>
#include "GCDefferalContext.h"
#include <JavaScriptCore/JSONObject.h>
#include <wtf/text/AtomString.h>
#include <wtf/text/WTFString.h>
extern "C" void mi_free(void* ptr);
using namespace JSC;
extern "C" BunString BunString__fromBytes(const char* bytes, size_t length);
extern "C" bool Bun__WTFStringImpl__hasPrefix(const WTF::StringImpl* impl, const char* bytes, size_t length)
{
return impl->startsWith(bytes, length);
}
extern "C" void Bun__WTFStringImpl__deref(WTF::StringImpl* impl)
{
impl->deref();
}
extern "C" void Bun__WTFStringImpl__ref(WTF::StringImpl* impl)
{
impl->ref();
}
extern "C" bool BunString__fromJS(JSC::JSGlobalObject* globalObject, JSC::EncodedJSValue encodedValue, BunString* bunString)
{
JSC::JSValue value = JSC::JSValue::decode(encodedValue);
*bunString = Bun::toString(globalObject, value);
return bunString->tag != BunStringTag::Dead;
}
extern "C" BunString BunString__createAtom(const char* bytes, size_t length)
{
ASSERT(simdutf::validate_ascii(bytes, length));
auto atom = tryMakeAtomString(String(StringImpl::createWithoutCopying(bytes, length)));
atom.impl()->ref();
return { BunStringTag::WTFStringImpl, { .wtf = atom.impl() } };
}
extern "C" BunString BunString__tryCreateAtom(const char* bytes, size_t length)
{
if (simdutf::validate_ascii(bytes, length)) {
auto atom = tryMakeAtomString(String(StringImpl::createWithoutCopying(bytes, length)));
if (atom.isNull())
return { BunStringTag::Dead, {} };
atom.impl()->ref();
return { BunStringTag::WTFStringImpl, { .wtf = atom.impl() } };
}
return { BunStringTag::Dead, {} };
}
namespace Bun {
JSC::JSValue toJS(JSC::JSGlobalObject* globalObject, BunString bunString)
{
if (bunString.tag == BunStringTag::Empty || bunString.tag == BunStringTag::Dead) {
return JSValue(JSC::jsEmptyString(globalObject->vm()));
}
if (bunString.tag == BunStringTag::WTFStringImpl) {
ASSERT(bunString.impl.wtf->refCount() > 0 && !bunString.impl.wtf->isEmpty());
return JSValue(jsString(globalObject->vm(), String(bunString.impl.wtf)));
}
if (bunString.tag == BunStringTag::StaticZigString) {
return JSValue(jsString(globalObject->vm(), Zig::toStringStatic(bunString.impl.zig)));
}
return JSValue(Zig::toJSStringGC(bunString.impl.zig, globalObject));
}
BunString toString(const char* bytes, size_t length)
{
return BunString__fromBytes(bytes, length);
}
BunString fromJS(JSC::JSGlobalObject* globalObject, JSValue value)
{
WTF::String str = value.toWTFString(globalObject);
if (UNLIKELY(str.isNull())) {
return { BunStringTag::Dead };
}
if (UNLIKELY(str.length() == 0)) {
return { BunStringTag::Empty };
}
auto impl = str.releaseImpl();
return { BunStringTag::WTFStringImpl, { .wtf = impl.leakRef() } };
}
extern "C" void BunString__toThreadSafe(BunString* str)
{
if (str->tag == BunStringTag::WTFStringImpl) {
auto impl = str->impl.wtf->isolatedCopy();
if (impl.ptr() != str->impl.wtf) {
str->impl.wtf = &impl.leakRef();
}
}
}
BunString toString(JSC::JSGlobalObject* globalObject, JSValue value)
{
return fromJS(globalObject, value);
}
BunString toStringRef(JSC::JSGlobalObject* globalObject, JSValue value)
{
auto str = value.toWTFString(globalObject);
if (str.isEmpty()) {
return { BunStringTag::Empty };
}
str.impl()->ref();
return { BunStringTag::WTFStringImpl, { .wtf = str.impl() } };
}
BunString toString(WTF::String& wtfString)
{
if (wtfString.isEmpty())
return { BunStringTag::Empty };
return { BunStringTag::WTFStringImpl, { .wtf = wtfString.impl() } };
}
BunString toString(const WTF::String& wtfString)
{
if (wtfString.isEmpty())
return { BunStringTag::Empty };
return { BunStringTag::WTFStringImpl, { .wtf = wtfString.impl() } };
}
BunString toString(WTF::StringImpl* wtfString)
{
if (wtfString->isEmpty())
return { BunStringTag::Empty };
return { BunStringTag::WTFStringImpl, { .wtf = wtfString } };
}
BunString toStringRef(WTF::String& wtfString)
{
if (wtfString.isEmpty())
return { BunStringTag::Empty };
wtfString.impl()->ref();
return { BunStringTag::WTFStringImpl, { .wtf = wtfString.impl() } };
}
BunString toStringRef(const WTF::String& wtfString)
{
if (wtfString.isEmpty())
return { BunStringTag::Empty };
wtfString.impl()->ref();
return { BunStringTag::WTFStringImpl, { .wtf = wtfString.impl() } };
}
BunString toStringRef(WTF::StringImpl* wtfString)
{
if (wtfString->isEmpty())
return { BunStringTag::Empty };
wtfString->ref();
return { BunStringTag::WTFStringImpl, { .wtf = wtfString } };
}
}
extern "C" JSC::EncodedJSValue BunString__toJS(JSC::JSGlobalObject* globalObject, const BunString* bunString)
{
return JSValue::encode(Bun::toJS(globalObject, *bunString));
}
extern "C" BunString BunString__fromUTF16Unitialized(size_t length)
{
ASSERT(length > 0);
UChar* ptr;
auto impl = WTF::StringImpl::createUninitialized(length, ptr);
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
extern "C" BunString BunString__fromLatin1Unitialized(size_t length)
{
ASSERT(length > 0);
LChar* ptr;
auto impl = WTF::StringImpl::createUninitialized(length, ptr);
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
extern "C" BunString BunString__fromUTF8(const char* bytes, size_t length)
{
ASSERT(length > 0);
if (simdutf::validate_utf8(bytes, length)) {
size_t u16Length = simdutf::utf16_length_from_utf8(bytes, length);
UChar* ptr;
auto impl = WTF::StringImpl::createUninitialized(static_cast<unsigned int>(u16Length), ptr);
RELEASE_ASSERT(simdutf::convert_utf8_to_utf16(bytes, length, ptr) == u16Length);
impl->ref();
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
auto str = WTF::String::fromUTF8ReplacingInvalidSequences(reinterpret_cast<const LChar*>(bytes), length);
str.impl()->ref();
return Bun::toString(str);
}
extern "C" BunString BunString__fromLatin1(const char* bytes, size_t length)
{
ASSERT(length > 0);
return { BunStringTag::WTFStringImpl, { .wtf = &WTF::StringImpl::create(bytes, length).leakRef() } };
}
extern "C" BunString BunString__fromUTF16ToLatin1(const char16_t* bytes, size_t length)
{
ASSERT(length > 0);
ASSERT_WITH_MESSAGE(simdutf::validate_utf16le(bytes, length), "This function only accepts ascii UTF16 strings");
size_t outLength = simdutf::latin1_length_from_utf16(length);
LChar* ptr = nullptr;
auto impl = WTF::StringImpl::createUninitialized(outLength, ptr);
if (!ptr) {
return { BunStringTag::Dead };
}
size_t latin1_length = simdutf::convert_valid_utf16le_to_latin1(bytes, length, reinterpret_cast<char*>(ptr));
ASSERT_WITH_MESSAGE(latin1_length == outLength, "Failed to convert UTF16 to Latin1");
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
extern "C" BunString BunString__fromUTF16(const char16_t* bytes, size_t length)
{
ASSERT(length > 0);
return { BunStringTag::WTFStringImpl, { .wtf = &WTF::StringImpl::create(bytes, length).leakRef() } };
}
extern "C" BunString BunString__fromBytes(const char* bytes, size_t length)
{
ASSERT(length > 0);
if (simdutf::validate_ascii(bytes, length)) {
return BunString__fromLatin1(bytes, length);
}
return BunString__fromUTF8(bytes, length);
}
extern "C" BunString BunString__createExternal(const char* bytes, size_t length, bool isLatin1, void* ctx, void (*callback)(void* arg0, void* arg1, size_t arg2))
{
Ref<WTF::ExternalStringImpl> impl = isLatin1 ? WTF::ExternalStringImpl::create(reinterpret_cast<const LChar*>(bytes), length, ctx, callback) :
WTF::ExternalStringImpl::create(reinterpret_cast<const UChar*>(bytes), length, ctx, callback);
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
extern "C" JSC::EncodedJSValue BunString__toJSON(
JSC::JSGlobalObject* globalObject,
BunString* bunString)
{
JSC::JSValue result = JSC::JSONParse(globalObject, bunString->toWTFString());
if (!result) {
result = JSC::JSValue(JSC::createSyntaxError(globalObject, "Failed to parse JSON"_s));
}
return JSC::JSValue::encode(result);
}
extern "C" JSC::EncodedJSValue BunString__createArray(
JSC::JSGlobalObject* globalObject,
const BunString* ptr, size_t length)
{
if (length == 0)
return JSValue::encode(JSC::constructEmptyArray(globalObject, nullptr));
auto& vm = globalObject->vm();
auto throwScope = DECLARE_THROW_SCOPE(vm);
// Using tryCreateUninitialized here breaks stuff..
// https://github.com/oven-sh/bun/issues/3931
JSC::JSArray* array = constructEmptyArray(globalObject, nullptr, length);
if (!array) {
JSC::throwOutOfMemoryError(globalObject, throwScope);
RELEASE_AND_RETURN(throwScope, JSValue::encode(JSC::JSValue()));
}
for (size_t i = 0; i < length; ++i) {
array->putDirectIndex(globalObject, i, Bun::toJS(globalObject, *ptr++));
}
return JSValue::encode(array);
}
extern "C" void BunString__toWTFString(BunString* bunString)
{
if (bunString->tag == BunStringTag::ZigString) {
if (Zig::isTaggedExternalPtr(bunString->impl.zig.ptr)) {
bunString->impl.wtf = Zig::toString(bunString->impl.zig).impl();
} else {
bunString->impl.wtf = Zig::toStringCopy(bunString->impl.zig).impl();
}
bunString->tag = BunStringTag::WTFStringImpl;
} else if (bunString->tag == BunStringTag::StaticZigString) {
bunString->impl.wtf = Zig::toStringStatic(bunString->impl.zig).impl();
bunString->tag = BunStringTag::WTFStringImpl;
}
}
extern "C" BunString URL__getFileURLString(BunString* filePath)
{
return Bun::toStringRef(WTF::URL::fileURLWithFileSystemPath(filePath->toWTFString()).stringWithoutFragmentIdentifier());
}
extern "C" JSC__JSValue BunString__toJSDOMURL(JSC::JSGlobalObject* lexicalGlobalObject, BunString* bunString)
{
auto& globalObject = *jsCast<Zig::GlobalObject*>(lexicalGlobalObject);
auto& vm = globalObject.vm();
auto throwScope = DECLARE_THROW_SCOPE(vm);
auto str = bunString->toWTFString(BunString::ZeroCopy);
auto object = WebCore::DOMURL::create(str, String());
auto jsValue = WebCore::toJSNewlyCreated<WebCore::IDLInterface<WebCore::DOMURL>>(*lexicalGlobalObject, globalObject, throwScope, WTFMove(object));
RELEASE_AND_RETURN(throwScope, JSC::JSValue::encode(jsValue));
}
extern "C" WTF::URL* URL__fromJS(EncodedJSValue encodedValue, JSC::JSGlobalObject* globalObject)
{
auto throwScope = DECLARE_THROW_SCOPE(globalObject->vm());
JSC::JSValue value = JSC::JSValue::decode(encodedValue);
auto str = value.toWTFString(globalObject);
RETURN_IF_EXCEPTION(throwScope, nullptr);
if (str.isEmpty()) {
return nullptr;
}
auto url = WTF::URL(str);
if (!url.isValid() || url.isNull())
return nullptr;
return new WTF::URL(WTFMove(url));
}
extern "C" BunString URL__getHrefFromJS(EncodedJSValue encodedValue, JSC::JSGlobalObject* globalObject)
{
auto throwScope = DECLARE_THROW_SCOPE(globalObject->vm());
JSC::JSValue value = JSC::JSValue::decode(encodedValue);
auto str = value.toWTFString(globalObject);
RETURN_IF_EXCEPTION(throwScope, { BunStringTag::Dead });
if (str.isEmpty()) {
return { BunStringTag::Dead };
}
auto url = WTF::URL(str);
if (!url.isValid() || url.isEmpty())
return { BunStringTag::Dead };
return Bun::toStringRef(url.string());
}
extern "C" BunString URL__getHref(BunString* input)
{
auto&& str = input->toWTFString();
auto url = WTF::URL(str);
if (!url.isValid() || url.isEmpty())
return { BunStringTag::Dead };
return Bun::toStringRef(url.string());
}
extern "C" BunString URL__pathFromFileURL(BunString* input)
{
auto&& str = input->toWTFString();
auto url = WTF::URL(str);
if (!url.isValid() || url.isEmpty())
return { BunStringTag::Dead };
return Bun::toStringRef(url.fileSystemPath());
}
extern "C" BunString URL__getHrefJoin(BunString* baseStr, BunString* relativeStr)
{
auto base = baseStr->toWTFString();
auto relative = relativeStr->toWTFString();
auto url = WTF::URL(WTF::URL(base), relative);
if (!url.isValid() || url.isEmpty())
return { BunStringTag::Dead };
return Bun::toStringRef(url.string());
}
extern "C" WTF::URL* URL__fromString(BunString* input)
{
auto&& str = input->toWTFString();
auto url = WTF::URL(str);
if (!url.isValid())
return nullptr;
return new WTF::URL(WTFMove(url));
}
extern "C" BunString URL__protocol(WTF::URL* url)
{
return Bun::toStringRef(url->protocol().toStringWithoutCopying());
}
extern "C" void URL__deinit(WTF::URL* url)
{
delete url;
}
extern "C" BunString URL__href(WTF::URL* url)
{
return Bun::toStringRef(url->string());
}
extern "C" BunString URL__username(WTF::URL* url)
{
return Bun::toStringRef(url->user());
}
extern "C" BunString URL__password(WTF::URL* url)
{
return Bun::toStringRef(url->password());
}
extern "C" BunString URL__search(WTF::URL* url)
{
return Bun::toStringRef(url->query().toStringWithoutCopying());
}
extern "C" BunString URL__host(WTF::URL* url)
{
return Bun::toStringRef(url->host().toStringWithoutCopying());
}
extern "C" BunString URL__hostname(WTF::URL* url)
{
return Bun::toStringRef(url->hostAndPort());
}
extern "C" uint32_t URL__port(WTF::URL* url)
{
auto port = url->port();
if (port.has_value()) {
return port.value();
}
return std::numeric_limits<uint32_t>::max();
}
extern "C" BunString URL__pathname(WTF::URL* url)
{
return Bun::toStringRef(url->path().toStringWithoutCopying());
}
size_t BunString::utf8ByteLength(const WTF::String& str)
{
if (str.isEmpty())
return 0;
if (str.is8Bit()) {
return simdutf::utf8_length_from_latin1(reinterpret_cast<const char*>(str.characters8()), static_cast<size_t>(str.length()));
} else {
return simdutf::utf8_length_from_utf16(reinterpret_cast<const char16_t*>(str.characters16()), static_cast<size_t>(str.length()));
}
}
WTF::String BunString::toWTFString() const
{
if (this->tag == BunStringTag::ZigString) {
if (Zig::isTaggedExternalPtr(this->impl.zig.ptr)) {
return Zig::toString(this->impl.zig);
} else {
return Zig::toStringCopy(this->impl.zig);
}
} else if (this->tag == BunStringTag::StaticZigString) {
return Zig::toStringCopy(this->impl.zig);
} else if (this->tag == BunStringTag::WTFStringImpl) {
return WTF::String(this->impl.wtf);
}
return WTF::String();
}
WTF::String BunString::toWTFString(ZeroCopyTag) const
{
if (this->tag == BunStringTag::ZigString) {
if (Zig::isTaggedUTF8Ptr(this->impl.zig.ptr)) {
return Zig::toStringCopy(this->impl.zig);
} else {
return Zig::toString(this->impl.zig);
}
} else if (this->tag == BunStringTag::StaticZigString) {
return Zig::toStringStatic(this->impl.zig);
} else if (this->tag == BunStringTag::WTFStringImpl) {
ASSERT(this->impl.wtf->refCount() > 0 && !this->impl.wtf->isEmpty());
return WTF::String(this->impl.wtf);
}
return WTF::String();
}
extern "C" BunString BunString__createExternalGloballyAllocatedLatin1(
const LChar* bytes,
size_t length)
{
ASSERT(length > 0);
Ref<WTF::ExternalStringImpl> impl = WTF::ExternalStringImpl::create(bytes, length, nullptr, [](void*, void* ptr, size_t) {
mi_free(ptr);
});
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
extern "C" BunString BunString__createExternalGloballyAllocatedUTF16(
const UChar* bytes,
size_t length)
{
ASSERT(length > 0);
Ref<WTF::ExternalStringImpl> impl = WTF::ExternalStringImpl::create(bytes, length, nullptr, [](void*, void* ptr, size_t) {
mi_free(ptr);
});
return { BunStringTag::WTFStringImpl, { .wtf = &impl.leakRef() } };
}
extern "C" bool WTFStringImpl__isThreadSafe(
const WTF::StringImpl* wtf)
{
if (wtf->bufferOwnership() != StringImpl::BufferOwnership::BufferInternal)
return false;
return !(wtf->isSymbol() || wtf->isAtom());
// if (wtf->is8Bit())
// return wtf->characters8() == reinterpret_cast_ptr<const LChar*>(reinterpret_cast<const uint8_t*>(wtf) + tailOffset<const LChar*>());
// return wtf->characters16() == reinterpret_cast_ptr<const UChar*>(reinterpret_cast<const uint16_t*>(wtf) + tailOffset<const UChar*>());
}