mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 11:29:02 +00:00
* WIP sync close (shows ref count bug in stream)
* fix closing on PipeWriter and PipeReader
* remove old todos
* join
* Some shell changes
at least it compiles
* fix some compile errors
* fix ref/unref server on windows
* actually use the ref count in this places
* make windows compile again
* more tests passing
* Make shell compile again
* Slowly remove some `@panic("TODO SHELL")`
* Eliminate `@panic("TODO SHELL")` for BufferedWriter
* Holy cleansing of `@panic("TODO SHELL")`
at least it compiles now
* Okay now the shell compiles, but segfaults
* Fix compiler errors
* more stable stream and now Content-Range pass
* make windows compile again
* revert stuff until the fix is actually ready
* revert onDone thing
* Fix buffered writer for shell
* Fix buffered writer + shell/subproc.zig and windows build
* Fix for #8982 got lost in the merge
* Actually buffer subproc output
* Fix some stuff shell
* oops
* fix context deinit
* fix renderMissing
* shell: Fix array buffer
* more stable streams (#9053)
fix stream ref counting
* wip
* Remove `@panic("TODO")` on shell event loop tasks and Redirect open flags got lost in merge
* Support redirects
* fixes
cc @cirospaciari
* Update ReadableStreamInternals.ts
* Fix spurious error
* Update stream.js
* leak
* Fix UAF
cc @cirospaciari
* Fix memory leaks
* HOLY FUCK big refactor
* misc cleanup
* shell: Fix a bunch of tests
* clean up
* gitignore: fix ending newline
* get windows compiling again
* tidy
* hide linker warn with icu
* closeIfPossible
* Better leak test
* Fix forgetting to decrement reference count
* Update stdio.zig
* Fix shell windows build
* Stupid unreachable
* Woops
* basic echo hi works on windows
* Fix flaky test on Windows
* Fix windows regression in Bun.main (#9156)
* Fix windows regression in Bun.main
* Handle invalid handles
* Fix flaky test
* Better launch config
* Fixup
* Make this test less flaky on Windows
* Fixup
* Cygwin
* Support signal codes in subprocess.kill(), resolve file path
* Treat null as ignore
* Ignore carriage returns
* Fixup
* shell: Fix IOWriter bug
* shell: Use custom `open()`/`openat()`
* windows shell subproc works
* zack commit
* I think I understand WindowsStreamingWriter
* fix thing
* why were we doing this in tests
* shell: Fix rm
* shell: Add rm -rf node_modules/ test
* shell: use `.runAsTest()` in some places to make it easier to determine which test failed
* [autofix.ci] apply automated fixes
* woopsie
* Various changes
* Fix
* shell: abstract output task logic
* shell: mkdir builtin
* fixup
* stuff
* shell: Make writing length of 0 in IOWriter immediately resolve
* shell: Implement `touch`
* shell: basic `cat` working
* Make it compile on windows
* shell: Fix IOReader bug
* [autofix.ci] apply automated fixes
* fix windows kill on subprocess/process
* fix dns tests to match behavior on windows (same as nodejs)
* fix windows ci
* again
* move `close_handle` to flags in `PipeWriter` and fix shell hanging
* Fix `ls` not giving non-zero exit code on error
* Handle edgecase in is_atty
* Fix writer.flush() when there's no data
* Fix some tests
* Disable uv_unref on uv_process_t on Windows, for now.
* fix writer.end
* fix stdout.write
* fix child-process on win32
* Make this test less flaky on Windows
* Add assertion
* Make these the same
* Make it pass on windows
* Don't commit
* Log the test name
* Make this test less flaky on windows
* Make this test less flaky on windows
* Print which test is taking awhile in the runner
* fixups
* Fixups
* Add some assertions
* Bring back test concurrency
* shell: bring back redirect stdin
* make it compile again cc @zackradisic
* initialize env map with capacity
* some fixes
* cleanup
* oops
* fix leak, fix done
* fix unconsumedPromises on events
* always run expect
* Update child_process.test.ts
* fix reading special files
* Fix a test
* Deflake this test
* Make these comparisons easier
* Won't really fix it but slightly cleaner
* Update serve.test.ts
* Make the checks for if the body is already used more resilient
* Move this to the harness
* Make this test not hang in development
* Fix this test
* Make the logs better
* zero init some things
* Make this test better
* Fix readSocket
* Parallelize this test
* Handle EPipe and avoid big data
* This was a mistake
* Fix a bunch of things
* Fix memory leak
* Avoid sigpipe + optimize + delete dead code
* Make this take less time
* Make it bigger
* Remove some redundant code
* Update process.zig
* Merge and hopefully don't breka things along teh way
* Silence build warning
* Uncomment on posix
* Skip test on windows
* windows
* Cleanup test
* Update
* Deflake
* always
* less flaky test
* [autofix.ci] apply automated fixes
* logs
* fix uaf on shell IOReader
* stuff to make it work with mini event loop
* fix 2 double free scenarios, support redirections on windows
* shell: Make `1>&2` and `2>&1` work with libuv
* yoops
* Partial fix
* Partial fix
* fix build
* fix build
* ok
* Make a couple shell tests pass
* More logging
* fix
* fix
* Fix build issue
* more tests pass
* Deflake
* Deflake
* Use Output.panic instead of garbled text
* Formatting
* Introduce `bun.sys.File`, use it for `Output.Source.StreamType`, fix nested Output.scoped() calls, use Win32 `ReadFile` API for reading when it's not a libuv file descriptor.
This lets us avoid the subtle usages of `unreachable` in std.os when writing to stdout/stderr.
Previously, we were initializing the libuv loop immediately at launch due to checking for the existence of a bun build --compile'd executable. When the file descriptor is not from libuv, it's just overhead to use libuv
cc @paperdave, please tell me if Iany of that is incorrect or if you think this is a bad idea.
* Fix closing undefined memory file descriptors in spawn
cc @zackradisic
* pause instead of close
* Fix poorly-written test
* We don't need big numbers for this test
* sad workaround
* fixup
* Clearer error handling for this test
* Fix incorrect test
@electroid when ReadableStream isn't closed, hanging is the correct behavior when consuming buffered data. We cannot know if the buffered data is finished if the stream never closes.
* Fix build
* Remove known failing on windows
* Deflake
* Mark no longer failing
* show all the failing tests
* Sort the list of tests
* fix argument handling
* dont show "posix_spawn" as an error code on windows
* make bun-upgrade.test.ts pass on windows
* fix bunx and bun create again sorry
* a
* fix invalidexe because we should not be running javascript files as if they were exes
* Concurrency in test runner + better logging
* Revert "fix invalidexe because we should not be running javascript files as if they were exes"
This reverts commit da47cf8247.
* WIP: Unix fixes (#9322)
* wip
* [autofix.ci] apply automated fixes
* wip 2
* [autofix.ci] apply automated fixes
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
* Update runner.node.mjs
* Update runner.node.mjs
* Document some environment variables
* shell: Make `Response` work with builtins
* Make it compile
* make pwd test pass
* [autofix.ci] apply automated fixes
* Fix printing garbage for source code previews
* Update javascript.zig
* Fix posix test failures
* Fix signal dispatch
cc @paperdave. Signals can be run from any thread. This causes an assertion failure when the receiving thread happens to not be the main thread. Easiest to reproduce on linux when you spawn 100 short-lived processes at once.
* windows
---------
Co-authored-by: cirospaciari <ciro.spaciari@gmail.com>
Co-authored-by: Zack Radisic <56137411+zackradisic@users.noreply.github.com>
Co-authored-by: Zack Radisic <zackradisic@Zacks-MBP-2.attlocal.net>
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Co-authored-by: Meghan Denny <meghan@bun.sh>
Co-authored-by: Zack Radisic <zack@theradisic.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: dave caruso <me@paperdave.net>
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
562 lines
17 KiB
C++
562 lines
17 KiB
C++
#include "root.h"
|
|
#include "headers-handwritten.h"
|
|
#include <JavaScriptCore/JSCJSValueInlines.h>
|
|
#include "simdutf.h"
|
|
#include "JSDOMURL.h"
|
|
#include "DOMURL.h"
|
|
#include "ZigGlobalObject.h"
|
|
#include "IDLTypes.h"
|
|
|
|
#include <wtf/Seconds.h>
|
|
#include <wtf/text/ExternalStringImpl.h>
|
|
#include <JavaScriptCore/JSONObject.h>
|
|
#include <wtf/text/AtomString.h>
|
|
#include <wtf/text/WTFString.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 "GCDefferalContext.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*>());
|
|
} |