Sane C++ Libraries
C++ Platform Abstraction Libraries
Loading...
Searching...
No Matches
Plugin.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "../Common/CompilerMacrosExport.h"
5#ifndef SC_EXPORT_LIBRARY_PLUGIN
6#define SC_EXPORT_LIBRARY_PLUGIN 0
7#endif
8#define SC_PLUGIN_LIBRARY_EXPORT SC_COMPILER_LIBRARY_EXPORT(SC_EXPORT_LIBRARY_PLUGIN)
9
10#include "../Common/Assert.h"
11#include "../Common/Function.h"
12#include "../Common/IGrowableBufferStringPath.h"
13#include "../Common/PlatformMacrosType.h"
14#include "../Common/PrimitiveDefinitions.h"
15#include "Internal/DynamicLibrary.h"
16namespace SC
17{
18SC_DECLARE_ASSERT_PROVIDER(PluginAssert, SC_PLUGIN_LIBRARY_EXPORT);
19
20#define SC_PLUGIN_ASSERT_RELEASE(e) SC_ASSERT_PROVIDER_RELEASE(SC::PluginAssert, e)
21#define SC_PLUGIN_ASSERT_DEBUG(e) SC_ASSERT_PROVIDER_DEBUG(SC::PluginAssert, e)
22#define SC_PLUGIN_TRUST_RESULT(expression) SC_PLUGIN_ASSERT_RELEASE(expression)
23
24struct PluginDefinition;
25struct PluginScanner;
26struct PluginFile;
27struct PluginIdentity;
28struct PluginDynamicLibrary;
29struct PluginCompiler;
30struct PluginCompilerEnvironment;
31struct PluginSysroot;
32struct PluginRegistry;
33template <int N>
34using FixedString = detail::StringNativeFixed<N>;
35using PluginIdentifier = FixedString<64>;
36using PluginBuildOption = FixedString<32>;
37
38template <typename T, size_t N>
40{
41 constexpr size_t size() const { return numValues; }
42 constexpr void clear() { numValues = 0; }
43
44 operator Span<const T>() const { return {values, numValues}; }
45
46 template <typename U>
47 [[nodiscard]] constexpr bool contains(const U& value, size_t* outIndex = nullptr) const
48 {
49 for (size_t idx = 0; idx < numValues; ++idx)
50 {
51 if (values[idx] == value)
52 {
53 if (outIndex)
54 *outIndex = idx;
55 return true;
56 }
57 }
58 return false;
59 }
60
61 [[nodiscard]] constexpr bool isEmpty() const { return numValues == 0; }
62
63 [[nodiscard]] constexpr bool push_back(const T& value)
64 {
65 if (numValues < N)
66 {
67 values[numValues++] = value;
68 return true;
69 }
70 return false;
71 }
72
73 constexpr T* begin() { return values; }
74 constexpr T* end() { return values + numValues; }
75 constexpr T& operator[](size_t idx) { return values[idx]; }
76 constexpr const T* begin() const { return values; }
77 constexpr const T* end() const { return values + numValues; }
78 constexpr const T& operator[](size_t idx) const { return values[idx]; }
79
80 private:
81 T values[N];
82 size_t numValues = 0;
83};
84
89
92
95{
96 StringPath absolutePath;
97};
98
101{
102 PluginIdentifier identifier;
103 FixedString<64> name;
104 FixedString<16> version;
105
109 bool operator==(const PluginIdentity& other) const { return identifier.view() == other.identifier.view(); }
110};
111
114{
116
117 FixedString<256> description;
118 FixedString<64> category;
119 StringPath directory;
120
124
127 PluginFile& getMainPluginFile() { return files[pluginFileIndex]; }
128
131 const PluginFile& getMainPluginFile() const { return files[pluginFileIndex]; }
132
137 [[nodiscard]] static bool find(StringSpan text, StringSpan& extracted);
138
143 [[nodiscard]] static bool parse(StringSpan text, PluginDefinition& pluginDefinition);
144
148 Result getDynamicLibraryAbsolutePath(StringPath& fullDynamicPath) const;
149
153 Result getDynamicLibraryPDBAbsolutePath(StringPath& fullDynamicPath) const;
154
155 private:
156 size_t pluginFileIndex = 0;
157 friend struct PluginScanner;
158};
159
162{
169 template <typename T>
170 static Result scanDirectory(StringSpan directory, Span<PluginDefinition> definitionsStorage, T& tempFileBuffer,
171 Span<PluginDefinition>& foundDefinitions)
172 {
173 return scanDirectory(directory, definitionsStorage, GrowableBuffer<T>{tempFileBuffer}, foundDefinitions);
174 }
175
176 private:
177 static Result scanDirectory(StringSpan directory, Span<PluginDefinition> definitionsStorage,
178 IGrowableBuffer&& tempFileBuffer, Span<PluginDefinition>& foundDefinitions);
179 struct ScannerState;
180};
181
184{
191 Result compile(const PluginDefinition& definition, const PluginSysroot& sysroot,
192 const PluginCompilerEnvironment& environment, Span<char>& compilerLog) const;
193
201 Result link(const PluginDefinition& definition, const PluginSysroot& sysroot,
202 const PluginCompilerEnvironment& environment, StringSpan executablePath, Span<char>& linkerLog) const;
203
205 enum class Type
206 {
207 ClangCompiler,
208 GnuCompiler,
209 MicrosoftCompiler
210 };
211 Type type = Type::ClangCompiler;
212 StringPath compilerPath;
213 StringPath linkerPath;
214
216
219
223 [[nodiscard]] static Result findBestCompiler(PluginCompiler& compiler);
224
225 private:
226 mutable native_char_t buffer[4096];
227
228 Result compileFile(const PluginDefinition& definition, const PluginSysroot& sysroot,
229 const PluginCompilerEnvironment& compilerEnvironment, StringSpan sourceFile,
230 StringSpan objectFile, Span<char>& compilerLog) const;
231 struct CompilerFinder;
232};
233
248
251{
252 StringSpan cFlags;
253 StringSpan ldFlags;
254
255 private:
256 struct Internal;
257 friend struct PluginCompiler;
258};
261{
263 SystemDynamicLibrary dynamicLibrary;
265 uint32_t numReloads;
266
267 char errorStorage[1024 * 8] = {};
268 StringSpan lastErrorLog;
269
273 template <typename T>
274 [[nodiscard]] bool queryInterface(T*& outInterface) const
275 {
276 if (pluginQueryInterface and instance != nullptr)
277 {
278 return pluginQueryInterface(instance, T::InterfaceHash, reinterpret_cast<void**>(&outInterface));
279 }
280 return false;
281 }
282
284
285 private:
286 void* instance = nullptr;
287 bool (*pluginInit)(void*& instance) = nullptr;
288 bool (*pluginClose)(void* instance) = nullptr;
289
290 bool (*pluginQueryInterface)(void* instance, uint32_t hash, void** instanceInterface) = nullptr;
291
292 friend struct PluginRegistry;
293 Result load(const PluginCompiler& compiler, const PluginSysroot& sysroot, StringSpan executablePath);
294 Result unload(bool releaseDebuggerFiles);
295};
296
299{
301 void init(Span<PluginDynamicLibrary> librariesStorage);
302
304 Result close();
305
309 Result replaceDefinitions(Span<PluginDefinition>&& definitions);
310
312 enum class LoadMode
313 {
314 Load = 0,
315 Reload = 1,
316 };
317
325 Result loadPlugin(StringSpan identifier, const PluginCompiler& compiler, const PluginSysroot& sysroot,
326 StringSpan executablePath, LoadMode loadMode = LoadMode::Load);
327
331 Result unloadPlugin(StringSpan identifier);
332
336 Result removeAllBuildProducts(StringSpan identifier);
337
341 [[nodiscard]] PluginDynamicLibrary* findPlugin(StringSpan identifier);
342
344 [[nodiscard]] size_t getNumberOfEntries() const { return libraries.sizeInElements(); }
345
347 [[nodiscard]] const PluginIdentifier& getIdentifierAt(size_t index) const
348 {
349 return libraries[index].definition.identity.identifier;
350 }
351
353 [[nodiscard]] const PluginDynamicLibrary& getPluginDynamicLibraryAt(size_t index) { return libraries[index]; }
354
359 void getPluginsToReloadBecauseOf(StringSpan relativePath, TimeMs tolerance,
360 Function<void(const PluginIdentifier&)> onPlugin);
361
362 private:
363 Result unloadPlugin(StringSpan identifier, bool releaseDebuggerFiles);
364
365 Span<PluginDynamicLibrary> storage;
366 Span<PluginDynamicLibrary> libraries;
367};
368
370} // namespace SC
Definition Plugin.h:40
Reads and holds CFLAGS and LDFLAGS environment variables, mainly to pass down sysroot location.
Definition Plugin.h:251
Compiles a plugin to a dynamic library.
Definition Plugin.h:184
StringPath linkerPath
Path to the linker.
Definition Plugin.h:213
Result link(const PluginDefinition &definition, const PluginSysroot &sysroot, const PluginCompilerEnvironment &environment, StringSpan executablePath, Span< char > &linkerLog) const
Links a Definition into a dynamic library, with symbols from executablePath
FixedVector< StringPath, 8 > includePaths
Path to include directories used to compile plugin.
Definition Plugin.h:215
Type type
Compile Type.
Definition Plugin.h:211
FixedVector< StringPath, 8 > compilerLibraryPaths
Path to compiler library directories.
Definition Plugin.h:218
Type
Compiler type (clang/gcc/msvc)
Definition Plugin.h:206
static Result findBestCompiler(PluginCompiler &compiler)
Look for best compiler on current system.
FixedVector< StringPath, 8 > compilerIncludePaths
Path to compiler include directories.
Definition Plugin.h:217
Result compile(const PluginDefinition &definition, const PluginSysroot &sysroot, const PluginCompilerEnvironment &environment, Span< char > &compilerLog) const
Compiles a Definition to an object file.
StringPath compilerPath
Path to the compiler.
Definition Plugin.h:212
Plugin description, category, dependencies, files and directory location.
Definition Plugin.h:114
StringPath directory
Path to the directory holding the plugin.
Definition Plugin.h:119
FixedVector< PluginFile, 10 > files
Source files that compose this plugin.
Definition Plugin.h:123
static bool find(StringSpan text, StringSpan &extracted)
Extracts the plugin definition (SC_BEGIN_PLUGIN / SC_END_PLUGIN) comment from a .cpp file.
PluginIdentity identity
Uniquely identifier a plugin.
Definition Plugin.h:115
FixedString< 256 > description
Long description of plugin.
Definition Plugin.h:117
const PluginFile & getMainPluginFile() const
Get main plugin file, holding plugin definition.
Definition Plugin.h:131
FixedVector< PluginIdentifier, 8 > dependencies
Dependencies necessary to load this plugin.
Definition Plugin.h:121
Result getDynamicLibraryAbsolutePath(StringPath &fullDynamicPath) const
Gets absolute path of where compiled dynamic library will exist after plugin is compiled.
FixedString< 64 > category
Category where plugin belongs to.
Definition Plugin.h:118
static bool parse(StringSpan text, PluginDefinition &pluginDefinition)
Parses an extracted plugin definition text.
Result getDynamicLibraryPDBAbsolutePath(StringPath &fullDynamicPath) const
Gets absolute path of where compiled Program Database File will exist after plugin is compiled.
PluginFile & getMainPluginFile()
Get main plugin file, holding plugin definition.
Definition Plugin.h:127
FixedVector< PluginBuildOption, 8 > build
Build options.
Definition Plugin.h:122
A plugin dynamic library loaded from a SC::PluginRegistry.
Definition Plugin.h:261
SystemDynamicLibrary dynamicLibrary
System handle of plugin's dynamic library.
Definition Plugin.h:263
TimeMs lastLoadTime
Last time when this plugin was last loaded.
Definition Plugin.h:264
StringSpan lastErrorLog
Last error log of compiler / linker (if any)
Definition Plugin.h:268
PluginDefinition definition
Definition of the loaded plugin.
Definition Plugin.h:262
uint32_t numReloads
Number of times that the plugin has been hot-reloaded.
Definition Plugin.h:265
bool queryInterface(T *&outInterface) const
Try to obtain a given interface as exported by a plugin through SC_PLUGIN_EXPORT_INTERFACES macro.
Definition Plugin.h:274
char errorStorage[1024 *8]
Storage for last error log (below)
Definition Plugin.h:267
Holds path to a given plugin source file.
Definition Plugin.h:95
StringPath absolutePath
Absolute path to a plugin source file.
Definition Plugin.h:96
Represents the unique signature / identity of a Plugin.
Definition Plugin.h:101
bool operator==(const PluginIdentity &other) const
Compares two plugins on Identity::identifier.
Definition Plugin.h:109
PluginIdentifier identifier
Unique string identifying the plugin.
Definition Plugin.h:102
FixedString< 64 > name
Plugin name.
Definition Plugin.h:103
FixedString< 16 > version
Plugin version (x.y.z)
Definition Plugin.h:104
Holds a registry of plugins, loading and compiling them on the fly.
Definition Plugin.h:299
LoadMode
Instructs loadPlugin to Load or Reload the plugin.
Definition Plugin.h:313
PluginDynamicLibrary * findPlugin(StringSpan identifier)
Find a PluginDynamicLibrary in the registry with a given identifier.
void init(Span< PluginDynamicLibrary > librariesStorage)
Init a PluginRegistry with some given storage.
size_t getNumberOfEntries() const
Returns the total number of registry entries (counting both loaded and unloaded plugins)
Definition Plugin.h:344
void getPluginsToReloadBecauseOf(StringSpan relativePath, TimeMs tolerance, Function< void(const PluginIdentifier &)> onPlugin)
Enumerates all plugins that must be reloaded when relativePath is modified.
const PluginDynamicLibrary & getPluginDynamicLibraryAt(size_t index)
Returns the PluginIdentifier corresponding to the index entry of the registry.
Definition Plugin.h:353
Result loadPlugin(StringSpan identifier, const PluginCompiler &compiler, const PluginSysroot &sysroot, StringSpan executablePath, LoadMode loadMode=LoadMode::Load)
Loads a plugin with given identifier, compiling it with given PluginCompiler.
Result unloadPlugin(StringSpan identifier)
Unloads an already loaded plugin by its identifier.
Result close()
Unregisters all plugins.
const PluginIdentifier & getIdentifierAt(size_t index) const
Returns the PluginIdentifier corresponding to the index entry of the registry.
Definition Plugin.h:347
Result replaceDefinitions(Span< PluginDefinition > &&definitions)
Appends the definitions to registry.
Result removeAllBuildProducts(StringSpan identifier)
Removes all temporary build products of the Plugin with given identifier.
Scans a directory for PluginDefinition.
Definition Plugin.h:162
static Result scanDirectory(StringSpan directory, Span< PluginDefinition > definitionsStorage, T &tempFileBuffer, Span< PluginDefinition > &foundDefinitions)
Scans a directory for PluginDefinition.
Definition Plugin.h:170
Holds include and library paths for a system toolchain, used to let plugins link to libc and libc++.
Definition Plugin.h:236
FixedVector< StringPath, 8 > includePaths
Path to system include directories.
Definition Plugin.h:237
StringPath isysroot
Path to sysroot include (optional)
Definition Plugin.h:240
static Result findBestSysroot(PluginCompiler::Type compiler, PluginSysroot &sysroot)
Finds a reasonable sysroot for the given compiler.
FixedVector< StringPath, 8 > libraryPaths
Path to system library directories.
Definition Plugin.h:238