File tree 4 files changed +28
-9
lines changed
4 files changed +28
-9
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,12 @@ The options when creating a script are:
41
41
- ` cachedData ` : an optional ` Buffer ` with V8's code cache data for the supplied
42
42
source. When supplied ` cachedDataRejected ` value will be set to either
43
43
` true ` or ` false ` depending on acceptance of the data by V8.
44
- - ` produceCachedData ` : if ` true ` and no ` cachedData ` is present - a ` Buffer `
45
- with V8's code cache data will be produced and stored in ` cachedData ` property
46
- of the returned ` vm.Script ` instance.
44
+ - ` produceCachedData ` : if ` true ` and no ` cachedData ` is present - V8 tries to
45
+ produce code cache data for ` code ` . Upon success, a ` Buffer ` with V8's code
46
+ cache data will be produced and stored in ` cachedData ` property of the
47
+ returned ` vm.Script ` instance. ` cachedDataProduced ` value will be set to
48
+ either ` true ` or ` false ` depending on whether code cache data is produced
49
+ successfully.
47
50
48
51
### script.runInContext(contextifiedSandbox[ , options] )
49
52
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ namespace node {
62
62
V (bytes_string, " bytes" ) \
63
63
V (bytes_parsed_string, " bytesParsed" ) \
64
64
V (cached_data_string, " cachedData" ) \
65
+ V (cached_data_produced_string, " cachedDataProduced" ) \
65
66
V (cached_data_rejected_string, " cachedDataRejected" ) \
66
67
V (callback_string, " callback" ) \
67
68
V (change_string, " change" ) \
Original file line number Diff line number Diff line change @@ -544,11 +544,17 @@ class ContextifyScript : public BaseObject {
544
544
Boolean::New (env->isolate (), source.GetCachedData ()->rejected ));
545
545
} else if (compile_options == ScriptCompiler::kProduceCodeCache ) {
546
546
const ScriptCompiler::CachedData* cached_data = source.GetCachedData ();
547
- MaybeLocal<Object> buf = Buffer::Copy (
548
- env,
549
- reinterpret_cast <const char *>(cached_data->data ),
550
- cached_data->length );
551
- args.This ()->Set (env->cached_data_string (), buf.ToLocalChecked ());
547
+ bool cached_data_produced = cached_data != nullptr ;
548
+ if (cached_data_produced) {
549
+ MaybeLocal<Object> buf = Buffer::Copy (
550
+ env,
551
+ reinterpret_cast <const char *>(cached_data->data ),
552
+ cached_data->length );
553
+ args.This ()->Set (env->cached_data_string (), buf.ToLocalChecked ());
554
+ }
555
+ args.This ()->Set (
556
+ env->cached_data_produced_string (),
557
+ Boolean::New (env->isolate (), cached_data_produced));
552
558
}
553
559
}
554
560
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function produce(source) {
12
12
const script = new vm . Script ( source , {
13
13
produceCachedData : true
14
14
} ) ;
15
- assert ( script . cachedData instanceof Buffer ) ;
15
+ assert ( ! script . cachedDataProduced || script . cachedData instanceof Buffer ) ;
16
16
17
17
return script . cachedData ;
18
18
}
@@ -31,6 +31,15 @@ function testProduceConsume() {
31
31
}
32
32
testProduceConsume ( ) ;
33
33
34
+ function testProduceMultiple ( ) {
35
+ const source = getSource ( 'original' ) ;
36
+
37
+ produce ( source ) ;
38
+ produce ( source ) ;
39
+ produce ( source ) ;
40
+ }
41
+ testProduceMultiple ( ) ;
42
+
34
43
function testRejectInvalid ( ) {
35
44
const source = getSource ( 'invalid' ) ;
36
45
You can’t perform that action at this time.
0 commit comments