mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 05:12:29 +00:00
* Prepare for windows event loop * More progress * Update libuv.zig * wip * Make compiling each dependency a shell script * Bump mimalloc * Add the build scripts * Update settings.json * Fix a bunch of compiler warnings * Remove more warnings * more warnings * cmake works * Update JSSQLStatement.h * put it in the zig file * Fix usockets warnings * Fixup * Fix one of the compiler errors * chunk * draw the rest of the owl * theres more * Rename Process -> BunProcess Works around a Windows issue * Add musl polyfill for memmem on Windows * More * 12 mb * Fix getenvZ * fix variosu issues * Add fast-ish path for bun install on Windows * Update windows.zig * Update windows.zig * Fix build issue * it works * hmmm * Rename file * Fixups * Update wtf-bindings.cpp * Update src/bun.js/bindings/headers-handwritten.h Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> * further! * more * Update .gitignore * hm * quite a lot of fixes * Update CMakeLists.txt * zig fmt * Many more things are starting to work. * reb * regenaret * Update JSSink.h * fixup * fetch works * Bun.serve() and much of the event loop works now * Make require() work * bun install progress * more things work * use less std.os * Fixes * small fixes * Bump * Bummp * Undo that change * We have to bump the version of Debian because libarchive has a higher minimum requirement * ok * some clenaup * windows * Update bun.zig * fixup * avoid duplicate symbols * avoid undefined symbols * bump * Remove issue template for install It's not used, and use the bug issue instead. * Add types for cp and cpSync * Add types for watchFile and unwatchFile * Add bun-types to 'bun fmt' script * Update nodejs compat docs cp/cpSync/watchFile/unwatchFile (#4525) * feat(fetch) rejectUnauthorized and checkServerIdentity (#4514) * enable root certs on fetch * rebase * fix lookup * some fixes and improvements * fmt * more fixes * more fixes * check detached onHandshake * fix promise case * fix cert non-Native * add fetch tls tests * more one test * churn * Update feature_flags.zig * Update response.zig * Revert "avoid undefined symbols" This reverts commitca835b726f. * Revert "avoid duplicate symbols" This reverts commit4ac6ca8700. * Update feature_flags.zig * Set permissions * more * Update mimalloc * Fix sqlite test failures * Fix some test failures * Make sure we remove libusockets is removed * hm * [dave]: fix webcrypto crash * bump * Update index.ts * windows zig compiles * cmake on mac works * progress * yay * bun run build * fix * ok * oops * asdfasfdafdsafda * fghjkl * git ignore * wow * Process -> BunProcess * hmm * blah * finalize merge * now it only has linker errors on mac * sdfadsf * g * getting farther * sxdcvbnmk, * adfhjskfjdhkas * a * fgh * update build dot zig * asdfg * theoretical -DCANARY flag we can use * asdf * cool * okay * colorterm * New build workflow * Fix script * Use sudo * More sudo * Tweak dependencies * Another sudo attempt * Tweak script * 16.0 -> 16 * Tweak script * Tweak script * Tweak script * Tweak script * Tweak script * bun install * ssh into github actions * add more to ssh * Fix postinstal * Skip llvm * New dockerfile * Build * More changes to Dockerfile * chaos chaos chaos * okay * a * more cmake nonsense * add unified sources code (does not work) * stuff * prepare for CI builds * ok * yay * yeah * make this more stable simply by trying again if it fails, 5 times, then lose. it fixes the stability issue i was running into L O L * messing with ci * x * a * clean dependencies before build * oops * this is not going to work but its closer * not gonna work either * a * a * did i do it * a * a * work around weird fs+Bun.build issues * properly pass debug flag correctly * idk im sorry * lose * maybe * run the tests please * a * fix zlib script * a * hi * prevent stupid ci issue * i totally didnt leave in a syntax error on cmakelists * a * lol * relax * 😭 * a * SO SILLY * 😡 one line mistake * one character diff * fix linking symbols missing * work on dependency scripts * does this work now? * fix mac build * a * bump! * woops * add macos baseline build * . * fix sqlite and also enable $assert/$debug support in builtin functions * okay * oops * zig upgrade lol * Merge * Fix spawn test issue * Set a timeout * yeah * etc * mi --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Dylan Conway <dylan.conway567@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Birk Skyum <74932975+birkskyum@users.noreply.github.com> Co-authored-by: dave caruso <me@paperdave.net>
277 lines
6.9 KiB
C++
277 lines
6.9 KiB
C++
// clang-format off
|
|
#pragma once
|
|
|
|
#ifdef ASSERT_ENABLED
|
|
#if ASSERT_ENABLED
|
|
#define ORIGINAL_ASSERT_ENABLED 1
|
|
#undef ASSERT_ENABLED
|
|
#define ASSERT_ENABLED 0
|
|
#endif
|
|
#endif
|
|
|
|
#include "root.h"
|
|
|
|
#include <JavaScriptCore/VM.h>
|
|
#include <JavaScriptCore/Identifier.h>
|
|
#include <JavaScriptCore/BuiltinUtils.h>
|
|
|
|
namespace WebCore {
|
|
|
|
using namespace JSC;
|
|
|
|
#define BUN_COMMON_PRIVATE_IDENTIFIERS_EACH_PROPERTY_NAME(macro) \
|
|
macro(AbortSignal) \
|
|
macro(Buffer) \
|
|
macro(Bun) \
|
|
macro(Loader) \
|
|
macro(ReadableByteStreamController) \
|
|
macro(ReadableStream) \
|
|
macro(ReadableStreamBYOBReader) \
|
|
macro(ReadableStreamBYOBRequest) \
|
|
macro(ReadableStreamDefaultController) \
|
|
macro(ReadableStreamDefaultReader) \
|
|
macro(TransformStream) \
|
|
macro(TransformStreamDefaultController) \
|
|
macro(WritableStream) \
|
|
macro(WritableStreamDefaultController) \
|
|
macro(WritableStreamDefaultWriter) \
|
|
macro(__esModule) \
|
|
macro(_events) \
|
|
macro(abortAlgorithm) \
|
|
macro(abortSteps) \
|
|
macro(addEventListener) \
|
|
macro(appendFromJS) \
|
|
macro(argv) \
|
|
macro(assignToStream) \
|
|
macro(associatedReadableByteStreamController) \
|
|
macro(autoAllocateChunkSize) \
|
|
macro(backpressure) \
|
|
macro(backpressureChangePromise) \
|
|
macro(basename) \
|
|
macro(body) \
|
|
macro(bunNativePtr) \
|
|
macro(bunNativeType) \
|
|
macro(byobRequest) \
|
|
macro(cancel) \
|
|
macro(cancelAlgorithm) \
|
|
macro(chdir) \
|
|
macro(cloneArrayBuffer) \
|
|
macro(close) \
|
|
macro(closeAlgorithm) \
|
|
macro(closeRequest) \
|
|
macro(closeRequested) \
|
|
macro(closed) \
|
|
macro(closedPromise) \
|
|
macro(closedPromiseCapability) \
|
|
macro(code) \
|
|
macro(connect) \
|
|
macro(consumeReadableStream) \
|
|
macro(controlledReadableStream) \
|
|
macro(controller) \
|
|
macro(cork) \
|
|
macro(createCommonJSModule) \
|
|
macro(createEmptyReadableStream) \
|
|
macro(createFIFO) \
|
|
macro(createInternalModuleById) \
|
|
macro(createNativeReadableStream) \
|
|
macro(createReadableStream) \
|
|
macro(createUsedReadableStream) \
|
|
macro(createUninitializedArrayBuffer) \
|
|
macro(createWritableStreamFromInternal) \
|
|
macro(cwd) \
|
|
macro(data) \
|
|
macro(dataView) \
|
|
macro(decode) \
|
|
macro(delimiter) \
|
|
macro(destroy) \
|
|
macro(dir) \
|
|
macro(direct) \
|
|
macro(dirname) \
|
|
macro(disturbed) \
|
|
macro(document) \
|
|
macro(encode) \
|
|
macro(encoding) \
|
|
macro(end) \
|
|
macro(errno) \
|
|
macro(errorSteps) \
|
|
macro(evaluateCommonJSModule) \
|
|
macro(execArgv) \
|
|
macro(exports) \
|
|
macro(extname) \
|
|
macro(failureKind) \
|
|
macro(fatal) \
|
|
macro(fetch) \
|
|
macro(fetchRequest) \
|
|
macro(file) \
|
|
macro(filePath) \
|
|
macro(fillFromJS) \
|
|
macro(finishConsumingStream) \
|
|
macro(flush) \
|
|
macro(flushAlgorithm) \
|
|
macro(format) \
|
|
macro(fulfillModuleSync) \
|
|
macro(getInternalWritableStream) \
|
|
macro(handleEvent) \
|
|
macro(hash) \
|
|
macro(header) \
|
|
macro(headers) \
|
|
macro(highWaterMark) \
|
|
macro(host) \
|
|
macro(hostname) \
|
|
macro(href) \
|
|
macro(ignoreBOM) \
|
|
macro(importer) \
|
|
macro(inFlightCloseRequest) \
|
|
macro(inFlightWriteRequest) \
|
|
macro(initializeWith) \
|
|
macro(internalModuleRegistry) \
|
|
macro(internalRequire) \
|
|
macro(internalStream) \
|
|
macro(internalWritable) \
|
|
macro(isAbortSignal) \
|
|
macro(isAbsolute) \
|
|
macro(isDisturbed) \
|
|
macro(isPaused) \
|
|
macro(isWindows) \
|
|
macro(join) \
|
|
macro(kind) \
|
|
macro(lazy) \
|
|
macro(lazyStreamPrototypeMap) \
|
|
macro(loadCJS2ESM) \
|
|
macro(localStreams) \
|
|
macro(main) \
|
|
macro(makeDOMException) \
|
|
macro(makeGetterTypeError) \
|
|
macro(makeThisTypeError) \
|
|
macro(method) \
|
|
macro(nextTick) \
|
|
macro(normalize) \
|
|
macro(on) \
|
|
macro(once) \
|
|
macro(options) \
|
|
macro(origin) \
|
|
macro(overridableRequire) \
|
|
macro(ownerReadableStream) \
|
|
macro(parse) \
|
|
macro(password) \
|
|
macro(patch) \
|
|
macro(path) \
|
|
macro(pathname) \
|
|
macro(pause) \
|
|
macro(pendingAbortRequest) \
|
|
macro(pendingPullIntos) \
|
|
macro(pid) \
|
|
macro(pipe) \
|
|
macro(port) \
|
|
macro(post) \
|
|
macro(ppid) \
|
|
macro(prependEventListener) \
|
|
macro(process) \
|
|
macro(processBindingConstants) \
|
|
macro(protocol) \
|
|
macro(pull) \
|
|
macro(pullAgain) \
|
|
macro(pullAlgorithm) \
|
|
macro(pulling) \
|
|
macro(put) \
|
|
macro(queue) \
|
|
macro(read) \
|
|
macro(readIntoRequests) \
|
|
macro(readRequests) \
|
|
macro(readable) \
|
|
macro(readableStreamController) \
|
|
macro(readableStreamToArray) \
|
|
macro(reader) \
|
|
macro(readyPromise) \
|
|
macro(readyPromiseCapability) \
|
|
macro(redirect) \
|
|
macro(relative) \
|
|
macro(releaseLock) \
|
|
macro(removeEventListener) \
|
|
macro(require) \
|
|
macro(requireESM) \
|
|
macro(requireMap) \
|
|
macro(requireNativeModule) \
|
|
macro(resolve) \
|
|
macro(resolveSync) \
|
|
macro(resume) \
|
|
macro(self) \
|
|
macro(sep) \
|
|
macro(setBody) \
|
|
macro(setStatus) \
|
|
macro(setup) \
|
|
macro(sink) \
|
|
macro(size) \
|
|
macro(start) \
|
|
macro(startAlgorithm) \
|
|
macro(startConsumingStream) \
|
|
macro(startDirectStream) \
|
|
macro(started) \
|
|
macro(startedPromise) \
|
|
macro(state) \
|
|
macro(status) \
|
|
macro(statusText) \
|
|
macro(storedError) \
|
|
macro(strategy) \
|
|
macro(strategyHWM) \
|
|
macro(strategySizeAlgorithm) \
|
|
macro(stream) \
|
|
macro(structuredCloneForStream) \
|
|
macro(syscall) \
|
|
macro(textDecoderStreamDecoder) \
|
|
macro(textDecoderStreamTransform) \
|
|
macro(textEncoderStreamEncoder) \
|
|
macro(textEncoderStreamTransform) \
|
|
macro(toNamespacedPath) \
|
|
macro(trace) \
|
|
macro(transformAlgorithm) \
|
|
macro(uncork) \
|
|
macro(underlyingByteSource) \
|
|
macro(underlyingSink) \
|
|
macro(underlyingSource) \
|
|
macro(unpipe) \
|
|
macro(unshift) \
|
|
macro(url) \
|
|
macro(username) \
|
|
macro(version) \
|
|
macro(versions) \
|
|
macro(view) \
|
|
macro(whenSignalAborted) \
|
|
macro(writable) \
|
|
macro(write) \
|
|
macro(writeAlgorithm) \
|
|
macro(writeRequests) \
|
|
macro(writer) \
|
|
macro(writing) \
|
|
macro(written) \
|
|
|
|
class BunBuiltinNames {
|
|
public:
|
|
// FIXME: Remove the __attribute__((nodebug)) when <rdar://68246686> is fixed.
|
|
#if COMPILER(CLANG)
|
|
__attribute__((nodebug))
|
|
#endif
|
|
explicit BunBuiltinNames(JSC::VM& vm)
|
|
: m_vm(vm)
|
|
BUN_COMMON_PRIVATE_IDENTIFIERS_EACH_PROPERTY_NAME(INITIALIZE_BUILTIN_NAMES)
|
|
{
|
|
#define EXPORT_NAME(name) m_vm.propertyNames->appendExternalName(name##PublicName(), name##PrivateName());
|
|
BUN_COMMON_PRIVATE_IDENTIFIERS_EACH_PROPERTY_NAME(EXPORT_NAME)
|
|
#undef EXPORT_NAME
|
|
}
|
|
|
|
BUN_COMMON_PRIVATE_IDENTIFIERS_EACH_PROPERTY_NAME(DECLARE_BUILTIN_IDENTIFIER_ACCESSOR)
|
|
|
|
private:
|
|
JSC::VM& m_vm;
|
|
BUN_COMMON_PRIVATE_IDENTIFIERS_EACH_PROPERTY_NAME(DECLARE_BUILTIN_NAMES)
|
|
};
|
|
|
|
} // namespace WebCore
|
|
|
|
#ifdef ORIGINAL_ASSERT_ENABLED
|
|
#undef ASSERT_ENABLED
|
|
#define ASSERT_ENABLED 1
|
|
#undef ORIGINAL_ASSERT_ENABLED
|
|
#endif
|