-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cloudflare:main' into main
- Loading branch information
Showing
18 changed files
with
431 additions
and
54 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 |
This file contains 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 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 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
Oops, something went wrong.