Skip to content

Commit 2ec1713

Browse files
committed
Refactor V8System constructors/init
1 parent fecae25 commit 2ec1713

File tree

4 files changed

+32
-41
lines changed

4 files changed

+32
-41
lines changed

src/workerd/jsg/jsg.c++

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "jsg.h"
66

7-
#include "libplatform/libplatform.h"
7+
#include <libplatform/libplatform.h>
88
#include "setup.h"
99

1010
#include <workerd/jsg/util.h>
@@ -273,7 +273,7 @@ void Lock::terminateExecution() {
273273

274274
void Lock::pumpMessageLoop() {
275275
auto platform = IsolateBase::from(v8Isolate).getDefaultPlatform();
276-
while (v8::platform::PumpMessageLoop(platform, v8Isolate)) {}
276+
while (v8::platform::PumpMessageLoop(platform, v8Isolate, v8::platform::MessageLoopBehavior::kDoNotWait)) {}
277277
}
278278

279279
Name Lock::newSymbol(kj::StringPtr symbol) {

src/workerd/jsg/jsg.h

-2
Original file line numberDiff line numberDiff line change
@@ -2302,8 +2302,6 @@ class ExternalMemoryAdjustment final {
23022302
// Isolate<TypeWrapper>::Lock. Usually this is only done in top-level code, and the Lock is
23032303
// passed down to everyone else from there. See setup.h for details.
23042304

2305-
class V8System;
2306-
23072305
class Lock {
23082306
public:
23092307
// The underlying V8 isolate, useful for directly calling V8 APIs. Hopefully, this is rarely

src/workerd/jsg/setup.c++

+22-17
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,27 @@ static kj::Own<v8::Platform> userPlatform(v8::Platform& platform) {
7474
return kj::Own<v8::Platform>(&platform, kj::NullDisposer::instance);
7575
}
7676

77-
V8System::V8System(): V8System(defaultPlatform(0), nullptr) {}
78-
V8System::V8System(kj::ArrayPtr<const kj::StringPtr> flags): V8System(defaultPlatform(0), flags) {}
79-
V8System::V8System(v8::Platform& platformParam): V8System(platformParam, nullptr) {}
77+
V8System::V8System(kj::ArrayPtr<const kj::StringPtr> flags) {
78+
auto platform = defaultPlatform(0);
79+
auto defaultPlatformPtr = platform.get();
80+
init(kj::mv(platform), flags, defaultPlatformPtr);
81+
}
82+
8083
V8System::V8System(v8::Platform& platformParam,
8184
kj::ArrayPtr<const kj::StringPtr> flags,
82-
v8::Platform* defaultPlatformPtr)
83-
: V8System(userPlatform(platformParam), flags, defaultPlatformPtr) {}
84-
V8System::V8System(kj::Own<v8::Platform> platformParam,
85+
v8::Platform* defaultPlatformPtr) {
86+
init(userPlatform(platformParam), flags, defaultPlatformPtr);
87+
}
88+
89+
void V8System::init(kj::Own<v8::Platform> platformParam,
8590
kj::ArrayPtr<const kj::StringPtr> flags,
86-
v8::Platform* defaultPlatformPtr)
87-
: platformInner(kj::mv(platformParam)),
88-
platformWrapper(*platformInner),
89-
defaultPlatformPtr_{defaultPlatformPtr} {
90-
if (!defaultPlatformPtr_) {
91-
defaultPlatformPtr_ = platformInner.get();
92-
}
91+
v8::Platform* defaultPlatformPtr) {
92+
platformInner = kj::mv(platformParam);
93+
platformWrapper = kj::heap<V8PlatformWrapper>(*platformInner);
94+
defaultPlatformPtr_ = defaultPlatformPtr;
95+
96+
KJ_ASSERT(defaultPlatformPtr_ != nullptr);
97+
9398
#if V8_HAS_STACK_START_MARKER
9499
v8::StackStartMarker::EnableForProcess();
95100
#endif
@@ -157,9 +162,9 @@ V8System::V8System(kj::Own<v8::Platform> platformParam,
157162
v8::V8::InitializeICUDefaultLocation(nullptr);
158163
#endif
159164

160-
v8::V8::InitializePlatform(&platformWrapper);
165+
v8::V8::InitializePlatform(platformWrapper.get());
161166
v8::V8::Initialize();
162-
cppgc::InitializeProcess(platformWrapper.GetPageAllocator());
167+
cppgc::InitializeProcess(platformWrapper->GetPageAllocator());
163168
v8Initialized = true;
164169
}
165170

@@ -337,8 +342,8 @@ static v8::Isolate* newIsolate(v8::Isolate::CreateParams&& params, v8::CppHeap*
337342

338343
IsolateBase::IsolateBase(
339344
V8System& system, v8::Isolate::CreateParams&& createParams, kj::Own<IsolateObserver> observer)
340-
: defaultPlatform(&system.getDefaultPlatform()),
341-
cppHeap(newCppHeap(const_cast<V8PlatformWrapper*>(&system.platformWrapper))),
345+
: defaultPlatform(system.defaultPlatformPtr_),
346+
cppHeap(newCppHeap(const_cast<V8PlatformWrapper*>(system.platformWrapper.get()))),
342347
ptr(newIsolate(kj::mv(createParams), cppHeap.release())),
343348
envAsyncContextKey(kj::refcounted<AsyncContextFrame::StorageKey>()),
344349
heapTracer(ptr),

src/workerd/jsg/setup.h

+8-20
Original file line numberDiff line numberDiff line change
@@ -42,42 +42,30 @@ kj::Own<v8::Platform> defaultPlatform(uint backgroundThreadCount);
4242
// library.
4343
class V8System {
4444
public:
45-
// Use the default v8::Platform implementation, as if by:
45+
// Uses the default v8::Platform implementation, as if by:
4646
// auto v8Platform = jsg::defaultPlatform();
47-
// auto v8System = V8System(*v8Platform);
48-
V8System();
49-
50-
// `flags` is a list of command-line flags to pass to V8, like "--expose-gc" or
47+
// auto v8System = V8System(*v8Platform, flags);
48+
// (Optional) `flags` is a list of command-line flags to pass to V8, like "--expose-gc" or
5149
// "--single_threaded_gc". An exception will be thrown if any flags are not recognized.
52-
explicit V8System(kj::ArrayPtr<const kj::StringPtr> flags);
53-
54-
// Use a possibly-custom v8::Platform implementation. Use this if you need to override any
55-
// functionality provided by the v8::Platform API.
56-
explicit V8System(v8::Platform& platform);
50+
explicit V8System(kj::ArrayPtr<const kj::StringPtr> flags = nullptr);
5751

5852
// Use a possibly-custom v8::Platform implementation, and apply flags.
5953
explicit V8System(v8::Platform& platform,
6054
kj::ArrayPtr<const kj::StringPtr> flags,
61-
v8::Platform* defaultPlatformPtr = nullptr);
55+
v8::Platform* defaultPlatformPtr);
6256

6357
~V8System() noexcept(false);
6458

6559
typedef void FatalErrorCallback(kj::StringPtr location, kj::StringPtr message);
6660
static void setFatalErrorCallback(FatalErrorCallback* callback);
6761

68-
auto& getDefaultPlatform() {
69-
return *defaultPlatformPtr_;
70-
}
71-
7262
private:
7363
kj::Own<v8::Platform> platformInner;
74-
V8PlatformWrapper platformWrapper;
75-
friend class IsolateBase;
64+
kj::Own<V8PlatformWrapper> platformWrapper;
7665
v8::Platform* defaultPlatformPtr_;
66+
friend class IsolateBase;
7767

78-
explicit V8System(kj::Own<v8::Platform>,
79-
kj::ArrayPtr<const kj::StringPtr>,
80-
v8::Platform* defaultPlatformPtr = nullptr);
68+
void init(kj::Own<v8::Platform>, kj::ArrayPtr<const kj::StringPtr>, v8::Platform*);
8169
};
8270

8371
// Base class of Isolate<T> containing parts that don't need to be templated, to avoid code

0 commit comments

Comments
 (0)