mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
* fix(win/upgrade): do not show powershell expand-archive info while upgrading * start working bun run * experiment: `bun.new` * you can now bun run * Update src/install/install.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * Update src/install/install.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * stuff * fix stuff * fix this * farther but not really * sadfs * path hell not sure how much worse or better this makes things. its a mess. windows path handlign is a mess aaaaaaaaaaaaaaaa * path.resolve bs * remove old build system stuff from pr * a * fix some path.parse/join cases * path closer not perfect * normalize and join tests tests done * paths * implement path.relative * , * stuff * assert * fix compile * hate * the code isnt great * stuff * housekeeping for build system * blah * explain windows sitaution in docs * some progress? not much though * zig compiler crashes here * fix * yippee * ok * a * ala wala * fix builds on stuff * clean * the tests now run * a * aa * dedupe uv event loop * fix fs test accuracy * stuff * [autofix.ci] apply automated fixes * huge updat e * [autofix.ci] apply automated fixes * url * [autofix.ci] apply automated fixes * start windows spawnSync * [autofix.ci] apply automated fixes * add --webkit for update submodules * add better err message for `bun setup` * fix unix platform build * . * [autofix.ci] apply automated fixes * un-upgrade libarchive * z * asdfghj * wrk * todo -> panic * ok * a * [autofix.ci] apply automated fixes * fix build scripts l ol * dfghj * fa * [autofix.ci] apply automated fixes * aaaa * a * l * [autofix.ci] apply automated fixes * more logs * [autofix.ci] apply automated fixes * j * fix init_command * CORE DUMP HELL * i swear im being pranked by the github actions gods * fadsjkfdshjkhjkdfsahjkdfshjksdafjkhhjkfdsahfsdkjhfsdjkahf * thanks IAS * this is the correct fix * personal review * ddisablbe these * revisions! * ok * fix submodule * stuff * fix libarchive * [autofix.ci] apply automated fixes * stuff * [autofix.ci] apply automated fixes * a * fix addressToJS on windows * make dns async again * dx: add flag to update submodules ps1 to clone webkit * dns error case for libuv * dx improvements on windows * newline * obvious fix * install steps * extra note * fix fs test * Update building-windows.md * fix builtins bundler to support \r\n line endnigs * better * some windows stuff * a * a * a * aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * [autofix.ci] apply automated fixes * bunfile text works * fix build on the mac * hellooooooooooo * install steps * ci for baseline? * fix * aaa * wow * install script revamp * bug * OK * ok * aaaaaaaaaaaaaa * okay * fix the node test runner lol * fix napi stuff --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: cirospaciari <ciro.spaciai@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com>
116 lines
5.5 KiB
C++
116 lines
5.5 KiB
C++
#include "root.h"
|
|
#include "ZigGlobalObject.h"
|
|
#include "AsyncContextFrame.h"
|
|
#include <JavaScriptCore/InternalFieldTuple.h>
|
|
|
|
using namespace JSC;
|
|
using namespace WebCore;
|
|
|
|
const ClassInfo AsyncContextFrame::s_info = { "AsyncContextFrame"_s, &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(AsyncContextFrame) };
|
|
|
|
AsyncContextFrame* AsyncContextFrame::create(VM& vm, JSC::Structure* structure, JSValue callback, JSValue context)
|
|
{
|
|
AsyncContextFrame* asyncContextData = new (NotNull, allocateCell<AsyncContextFrame>(vm)) AsyncContextFrame(vm, structure);
|
|
asyncContextData->finishCreation(vm);
|
|
asyncContextData->callback.set(vm, asyncContextData, callback);
|
|
asyncContextData->context.set(vm, asyncContextData, context);
|
|
return asyncContextData;
|
|
}
|
|
|
|
AsyncContextFrame* AsyncContextFrame::create(JSGlobalObject* global, JSValue callback, JSValue context)
|
|
{
|
|
auto& vm = global->vm();
|
|
ASSERT(callback.isCallable());
|
|
auto* structure = jsCast<Zig::GlobalObject*>(global)->AsyncContextFrameStructure();
|
|
AsyncContextFrame* asyncContextData = new (NotNull, allocateCell<AsyncContextFrame>(vm)) AsyncContextFrame(vm, structure);
|
|
asyncContextData->finishCreation(vm);
|
|
asyncContextData->callback.set(vm, asyncContextData, callback);
|
|
asyncContextData->context.set(vm, asyncContextData, context);
|
|
return asyncContextData;
|
|
}
|
|
|
|
JSC::Structure* AsyncContextFrame::createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject)
|
|
{
|
|
return Structure::create(vm, globalObject, jsNull(), TypeInfo(ObjectType, StructureFlags), info());
|
|
}
|
|
|
|
JSValue AsyncContextFrame::withAsyncContextIfNeeded(JSGlobalObject* globalObject, JSValue callback)
|
|
{
|
|
JSValue context = globalObject->m_asyncContextData.get()->getInternalField(0);
|
|
|
|
// If there is no async context, do not snapshot the callback.
|
|
if (context.isUndefined()) {
|
|
return callback;
|
|
}
|
|
|
|
// Construct a low-overhead wrapper
|
|
auto& vm = globalObject->vm();
|
|
return AsyncContextFrame::create(
|
|
vm,
|
|
jsCast<Zig::GlobalObject*>(globalObject)->AsyncContextFrameStructure(),
|
|
callback,
|
|
context);
|
|
}
|
|
|
|
template<typename Visitor>
|
|
void AsyncContextFrame::visitChildrenImpl(JSCell* cell, Visitor& visitor)
|
|
{
|
|
auto* thisObject = jsCast<AsyncContextFrame*>(cell);
|
|
ASSERT_GC_OBJECT_INHERITS(thisObject, info());
|
|
Base::visitChildren(thisObject, visitor);
|
|
visitor.append(thisObject->callback);
|
|
visitor.append(thisObject->context);
|
|
}
|
|
|
|
DEFINE_VISIT_CHILDREN(AsyncContextFrame);
|
|
|
|
extern "C" JSC::EncodedJSValue AsyncContextFrame__withAsyncContextIfNeeded(JSGlobalObject* globalObject, JSC::EncodedJSValue callback)
|
|
{
|
|
return JSValue::encode(AsyncContextFrame::withAsyncContextIfNeeded(globalObject, JSValue::decode(callback)));
|
|
}
|
|
|
|
#define ASYNCCONTEXTFRAME_CALL_IMPL(...) \
|
|
if (!functionObject.isCell()) \
|
|
return jsUndefined(); \
|
|
auto& vm = global->vm(); \
|
|
JSValue restoreAsyncContext; \
|
|
InternalFieldTuple* asyncContextData = nullptr; \
|
|
if (auto* wrapper = jsDynamicCast<AsyncContextFrame*>(functionObject)) { \
|
|
functionObject = jsCast<JSC::JSObject*>(wrapper->callback.get()); \
|
|
asyncContextData = global->m_asyncContextData.get(); \
|
|
restoreAsyncContext = asyncContextData->getInternalField(0); \
|
|
asyncContextData->putInternalField(vm, 0, wrapper->context.get()); \
|
|
} \
|
|
auto result = JSC::profiledCall(__VA_ARGS__); \
|
|
if (asyncContextData) { \
|
|
asyncContextData->putInternalField(vm, 0, restoreAsyncContext); \
|
|
} \
|
|
return result;
|
|
|
|
// JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, const ArgList& args, ASCIILiteral errorMessage)
|
|
// {
|
|
// ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, args, errorMessage);
|
|
// }
|
|
// JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, JSValue thisValue, const ArgList& args, ASCIILiteral errorMessage)
|
|
// {
|
|
// ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, thisValue, args, errorMessage);
|
|
// }
|
|
JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, JSValue thisValue, const ArgList& args)
|
|
{
|
|
if (LIKELY(!global->isAsyncContextTrackingEnabled())) {
|
|
return JSC::profiledCall(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args);
|
|
}
|
|
|
|
ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args);
|
|
}
|
|
JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, JSValue thisValue, const ArgList& args, NakedPtr<Exception>& returnedException)
|
|
{
|
|
if (LIKELY(!global->isAsyncContextTrackingEnabled())) {
|
|
return JSC::profiledCall(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args, returnedException);
|
|
}
|
|
|
|
ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args, returnedException);
|
|
}
|
|
|
|
#undef ASYNCCONTEXTFRAME_CALL_IMPL
|