mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 07:08:48 +00:00
Remove implicit allocator usage in core:dynlib
This commit is contained in:
+4
-12
@@ -16,15 +16,12 @@ Library :: distinct rawptr
|
|||||||
Loads a dynamic library from the filesystem. The paramater `global_symbols` makes the symbols in the loaded
|
Loads a dynamic library from the filesystem. The paramater `global_symbols` makes the symbols in the loaded
|
||||||
library available to resolve references in subsequently loaded libraries.
|
library available to resolve references in subsequently loaded libraries.
|
||||||
|
|
||||||
The paramater `global_symbols` is only used for the platforms `linux`, `darwin`, `freebsd` and `openbsd`.
|
The parameter `global_symbols` is only used for the platforms `linux`, `darwin`, `freebsd` and `openbsd`.
|
||||||
On `windows` this paramater is ignored.
|
On `windows` this paramater is ignored.
|
||||||
|
|
||||||
The underlying behaviour is platform specific.
|
The underlying behaviour is platform specific.
|
||||||
On `linux`, `darwin`, `freebsd` and `openbsd` refer to `dlopen`.
|
On `linux`, `darwin`, `freebsd` and `openbsd` refer to `dlopen`.
|
||||||
On `windows` refer to `LoadLibraryW`.
|
On `windows` refer to `LoadLibraryW`. Also temporarily needs an allocator to convert a string.
|
||||||
|
|
||||||
**Implicit Allocators**
|
|
||||||
`context.temp_allocator`
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
import "core:dynlib"
|
import "core:dynlib"
|
||||||
@@ -79,10 +76,7 @@ Loads the address of a procedure/variable from a dynamic library.
|
|||||||
|
|
||||||
The underlying behaviour is platform specific.
|
The underlying behaviour is platform specific.
|
||||||
On `linux`, `darwin`, `freebsd` and `openbsd` refer to `dlsym`.
|
On `linux`, `darwin`, `freebsd` and `openbsd` refer to `dlsym`.
|
||||||
On `windows` refer to `GetProcAddress`.
|
On `windows` refer to `GetProcAddress`. Also temporarily needs an allocator to convert a string.
|
||||||
|
|
||||||
**Implicit Allocators**
|
|
||||||
`context.temp_allocator`
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
import "core:dynlib"
|
import "core:dynlib"
|
||||||
@@ -177,9 +171,7 @@ initialize_symbols :: proc(
|
|||||||
return count, count > 0
|
return count, count > 0
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
// Returns an error message for the last failed procedure call.
|
||||||
Returns an error message for the last failed procedure call.
|
|
||||||
*/
|
|
||||||
last_error :: proc() -> string {
|
last_error :: proc() -> string {
|
||||||
return _last_error()
|
return _last_error()
|
||||||
}
|
}
|
||||||
@@ -4,14 +4,12 @@ package dynlib
|
|||||||
|
|
||||||
import win32 "core:sys/windows"
|
import win32 "core:sys/windows"
|
||||||
import "core:strings"
|
import "core:strings"
|
||||||
import "base:runtime"
|
|
||||||
import "core:reflect"
|
import "core:reflect"
|
||||||
|
|
||||||
_load_library :: proc(path: string, global_symbols := false) -> (Library, bool) {
|
_load_library :: proc(path: string, global_symbols := false, allocator := context.temp_allocator) -> (Library, bool) {
|
||||||
// NOTE(bill): 'global_symbols' is here only for consistency with POSIX which has RTLD_GLOBAL
|
// NOTE(bill): 'global_symbols' is here only for consistency with POSIX which has RTLD_GLOBAL
|
||||||
|
wide_path := win32.utf8_to_wstring(path, allocator)
|
||||||
runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD()
|
defer free(wide_path, allocator)
|
||||||
wide_path := win32.utf8_to_wstring(path, context.temp_allocator)
|
|
||||||
handle := cast(Library)win32.LoadLibraryW(wide_path)
|
handle := cast(Library)win32.LoadLibraryW(wide_path)
|
||||||
return handle, handle != nil
|
return handle, handle != nil
|
||||||
}
|
}
|
||||||
@@ -21,9 +19,9 @@ _unload_library :: proc(library: Library) -> bool {
|
|||||||
return bool(ok)
|
return bool(ok)
|
||||||
}
|
}
|
||||||
|
|
||||||
_symbol_address :: proc(library: Library, symbol: string) -> (ptr: rawptr, found: bool) {
|
_symbol_address :: proc(library: Library, symbol: string, allocator := context.temp_allocator) -> (ptr: rawptr, found: bool) {
|
||||||
runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD()
|
c_str := strings.clone_to_cstring(symbol, allocator)
|
||||||
c_str := strings.clone_to_cstring(symbol, context.temp_allocator)
|
defer delete(c_str, allocator)
|
||||||
ptr = win32.GetProcAddress(cast(win32.HMODULE)library, c_str)
|
ptr = win32.GetProcAddress(cast(win32.HMODULE)library, c_str)
|
||||||
found = ptr != nil
|
found = ptr != nil
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user