summaryrefslogtreecommitdiffstats
path: root/gin/v8_initializer.h
blob: ad3ed6e30a3ca791cdcd4f32face32c50942e474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef GIN_V8_INITIALIZER_H_
#define GIN_V8_INITIALIZER_H_

#include "base/files/file.h"
#include "gin/array_buffer.h"
#include "gin/gin_export.h"
#include "gin/public/isolate_holder.h"
#include "gin/public/v8_platform.h"
#include "v8/include/v8.h"

namespace gin {

class GIN_EXPORT V8Initializer {
 public:
  static const int kV8SnapshotBasePathKey;
  static const char kNativesFileName[];
  static const char kSnapshotFileName[];

  // This should be called by IsolateHolder::Initialize().
  static void Initialize(gin::IsolateHolder::ScriptMode mode,
                         v8::ArrayBuffer::Allocator* allocator);

  // Get address and size information for currently loaded snapshot.
  // If no snapshot is loaded, the return values are null for addresses
  // and 0 for sizes.
  static void GetV8ExternalSnapshotData(const char** natives_data_out,
                                        int* natives_size_out,
                                        const char** snapshot_data_out,
                                        int* snapshot_size_out);

#if defined(V8_USE_EXTERNAL_STARTUP_DATA)

  // Load V8 snapshot from user provided platform file descriptors.
  // The offset and size arguments, if non-zero, specify the portions
  // of the files to be loaded. This methods returns true on success
  // (or if snapshot is already loaded), false otherwise.
  static bool LoadV8SnapshotFromFD(base::PlatformFile natives_fd,
                                   int64 natives_offset,
                                   int64 natives_size,
                                   base::PlatformFile snapshot_fd,
                                   int64 snapshot_offset,
                                   int64 snapshot_size);

  // Load V8 snapshot from default resources. Returns true on success or
  // snapshot is already loaded, false otherwise.
  static bool LoadV8Snapshot();

#endif  // V8_USE_EXTERNAL_STARTUP_DATA
};

}  // namespace gin

#endif  // GIN_V8_INITIALIZER_H_