Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/extension/gdextension_library_loader.h
9898 views
1
/**************************************************************************/
2
/* gdextension_library_loader.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include <functional>
34
35
#include "core/extension/gdextension_loader.h"
36
#include "core/io/config_file.h"
37
#include "core/os/shared_object.h"
38
39
class GDExtensionLibraryLoader : public GDExtensionLoader {
40
GDSOFTCLASS(GDExtensionLibraryLoader, GDExtensionLoader);
41
42
friend class GDExtensionManager;
43
friend class GDExtension;
44
45
private:
46
String resource_path;
47
48
void *library = nullptr; // pointer if valid.
49
String library_path;
50
String entry_symbol;
51
52
bool is_static_library = false;
53
54
#ifdef TOOLS_ENABLED
55
bool is_reloadable = false;
56
#endif
57
58
Vector<SharedObject> library_dependencies;
59
60
HashMap<String, String> class_icon_paths;
61
62
#ifdef TOOLS_ENABLED
63
uint64_t resource_last_modified_time = 0;
64
uint64_t library_last_modified_time = 0;
65
66
void update_last_modified_time(uint64_t p_resource_last_modified_time, uint64_t p_library_last_modified_time) {
67
resource_last_modified_time = p_resource_last_modified_time;
68
library_last_modified_time = p_library_last_modified_time;
69
}
70
#endif
71
72
public:
73
static String find_extension_library(const String &p_path, Ref<ConfigFile> p_config, std::function<bool(String)> p_has_feature, PackedStringArray *r_tags = nullptr);
74
static Vector<SharedObject> find_extension_dependencies(const String &p_path, Ref<ConfigFile> p_config, std::function<bool(String)> p_has_feature);
75
76
virtual Error open_library(const String &p_path) override;
77
virtual Error initialize(GDExtensionInterfaceGetProcAddress p_get_proc_address, const Ref<GDExtension> &p_extension, GDExtensionInitialization *r_initialization) override;
78
virtual void close_library() override;
79
virtual bool is_library_open() const override;
80
virtual bool has_library_changed() const override;
81
virtual bool library_exists() const override;
82
83
Error parse_gdextension_file(const String &p_path);
84
};
85
86