-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathplatform.h
More file actions
77 lines (65 loc) · 1.27 KB
/
platform.h
File metadata and controls
77 lines (65 loc) · 1.27 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* NewPlatform.h
*
* The global platform in which all operations run. A platform holds the
* Javascript environment, on top of which multiple isolates can be running.
*
* Think of a platform as the entire browser, and isolates as the environments
* in each tab. The platform has to be initialized only once.
*
* @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
* @copyright 2025 Copernica BV
*/
/**
* Include guard
*/
#pragma once
/**
* Dependencies
*/
#include <v8.h>
#include <libplatform/libplatform.h>
/**
* Begin of namespace
*/
namespace JS {
/**
* Class definition
*/
class Platform
{
private:
/**
* Pointer to the actual platform
* @var std::unique_ptr<v8::Platform>
*/
std::unique_ptr<v8::Platform> _platform;
/**
* The single one instance
* @var Platform
*/
static Platform *_instance;
private:
/**
* Private constructor (as this is a singleton)
*/
Platform();
/**
* Destructor
*/
virtual ~Platform();
public:
/**
* Get the one and only instance
* @return Platform
*/
static Platform *instance();
/**
* Cleanup the platform instance
*/
static void shutdown();
};
/**
* End of namespace
*/
}