-
Notifications
You must be signed in to change notification settings - Fork 622
use internal setImmediate/clearImmediate fns for node:timers #3382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,7 @@ | ||
| import type { | ||
| setImmediate as setImmediateImpl, | ||
| clearImmediate as clearImmediateImpl, | ||
| } from 'node:timers'; | ||
|
|
||
| export const setImmediate: typeof setImmediateImpl; | ||
| export const clearImmediate: typeof clearImmediateImpl; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,27 @@ | ||
| #include "timers.h" | ||
|
|
||
| #include <workerd/api/global-scope.h> | ||
| #include <workerd/jsg/jsg.h> | ||
|
|
||
| namespace workerd::api::node { | ||
|
|
||
| // The setImmediate/clearImmediate methods are only exposed on globalThis if the | ||
| // node_compat_v2 flag is set. However, we want them exposed via `node:timers` | ||
| // generally when just the original node_compat is enabled. Therefore, we provide | ||
| // this alternative route to the implementations on ServiceWorkerGlobalScope. | ||
| jsg::Ref<Immediate> TimersUtil::setImmediate(jsg::Lock& js, | ||
| jsg::Function<void(jsg::Arguments<jsg::Value>)> function, | ||
| jsg::Arguments<jsg::Value> args) { | ||
| auto context = js.v8Context(); | ||
| auto& global = | ||
| jsg::extractInternalPointer<ServiceWorkerGlobalScope, true>(context, context->Global()); | ||
| return global.setImmediate(js, kj::mv(function), kj::mv(args)); | ||
| } | ||
|
|
||
| void TimersUtil::clearImmediate(jsg::Lock& js, kj::Maybe<jsg::Ref<Immediate>> maybeImmediate) { | ||
| auto context = js.v8Context(); | ||
| auto& global = | ||
| jsg::extractInternalPointer<ServiceWorkerGlobalScope, true>(context, context->Global()); | ||
| global.clearImmediate(kj::mv(maybeImmediate)); | ||
| } | ||
| } // namespace workerd::api::node | ||
This file contains hidden or 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,34 @@ | ||
| // Copyright (c) 2017-2022 Cloudflare, Inc. | ||
| // Licensed under the Apache 2.0 license found in the LICENSE file or at: | ||
| // https://opensource.org/licenses/Apache-2.0 | ||
| #pragma once | ||
|
|
||
| #include <workerd/jsg/jsg.h> | ||
|
|
||
| #include <kj/string.h> | ||
|
|
||
| namespace workerd::api { | ||
|
|
||
| class Immediate; | ||
|
|
||
| namespace node { | ||
| class TimersUtil final: public jsg::Object { | ||
| public: | ||
| TimersUtil() = default; | ||
| TimersUtil(jsg::Lock&, const jsg::Url&) {} | ||
|
|
||
| jsg::Ref<Immediate> setImmediate(jsg::Lock& js, | ||
| jsg::Function<void(jsg::Arguments<jsg::Value>)> function, | ||
| jsg::Arguments<jsg::Value> args); | ||
| void clearImmediate(jsg::Lock& js, kj::Maybe<jsg::Ref<Immediate>> immediate); | ||
|
|
||
| JSG_RESOURCE_TYPE(TimersUtil) { | ||
| JSG_METHOD(setImmediate); | ||
| JSG_METHOD(clearImmediate); | ||
| } | ||
| }; | ||
|
|
||
| #define EW_NODE_TIMERS_ISOLATE_TYPES api::node::TimersUtil | ||
| } // namespace node | ||
|
|
||
| } // namespace workerd::api |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.