aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/os/os2/allocators.odin46
-rw-r--r--core/os/os2/env_windows.odin8
-rw-r--r--core/os/os2/file.odin6
-rw-r--r--core/os/os2/file_linux.odin8
-rw-r--r--core/os/os2/file_windows.odin51
-rw-r--r--core/os/os2/path_windows.odin14
-rw-r--r--core/os/os2/stat_windows.odin14
-rw-r--r--core/os/os2/temp_file_windows.odin4
8 files changed, 75 insertions, 76 deletions
diff --git a/core/os/os2/allocators.odin b/core/os/os2/allocators.odin
new file mode 100644
index 000000000..c044e4522
--- /dev/null
+++ b/core/os/os2/allocators.odin
@@ -0,0 +1,46 @@
+//+private
+package os2
+
+import "base:runtime"
+
+file_allocator :: proc() -> runtime.Allocator {
+ return heap_allocator()
+}
+
+temp_allocator_proc :: runtime.arena_allocator_proc
+
+@(private="file", thread_local)
+global_default_temp_allocator_arena: runtime.Arena
+
+temp_allocator :: proc() -> runtime.Allocator {
+ return runtime.Allocator{
+ procedure = temp_allocator_proc,
+ data = &global_default_temp_allocator_arena,
+ }
+}
+
+@(require_results)
+temp_allocator_temp_begin :: proc(loc := #caller_location) -> (temp: runtime.Arena_Temp) {
+ temp = runtime.arena_temp_begin(&global_default_temp_allocator_arena, loc)
+ return
+}
+
+temp_allocator_temp_end :: proc(temp: runtime.Arena_Temp, loc := #caller_location) {
+ runtime.arena_temp_end(temp, loc)
+}
+
+@(fini, private)
+temp_allocator_fini :: proc() {
+ runtime.arena_destroy(&global_default_temp_allocator_arena)
+ global_default_temp_allocator_arena = {}
+}
+
+@(deferred_out=temp_allocator_temp_end)
+TEMP_ALLOCATOR_GUARD :: #force_inline proc(ignore := false, loc := #caller_location) -> (runtime.Arena_Temp, runtime.Source_Code_Location) {
+ if ignore {
+ return {}, loc
+ } else {
+ return temp_allocator_temp_begin(loc), loc
+ }
+}
+
diff --git a/core/os/os2/env_windows.odin b/core/os/os2/env_windows.odin
index 774af9e8f..39694b821 100644
--- a/core/os/os2/env_windows.odin
+++ b/core/os/os2/env_windows.odin
@@ -19,9 +19,9 @@ _lookup_env :: proc(key: string, allocator: runtime.Allocator) -> (value: string
return "", true
}
- _TEMP_ALLOCATOR_GUARD()
+ TEMP_ALLOCATOR_GUARD()
- b := make([]u16, n+1, _temp_allocator())
+ b := make([]u16, n+1, temp_allocator())
n = win32.GetEnvironmentVariableW(wkey, raw_data(b), u32(len(b)))
if n == 0 {
@@ -50,8 +50,8 @@ _unset_env :: proc(key: string) -> bool {
}
_clear_env :: proc() {
- _TEMP_ALLOCATOR_GUARD()
- envs := environ(_temp_allocator())
+ TEMP_ALLOCATOR_GUARD()
+ envs := environ(temp_allocator())
for env in envs {
for j in 1..<len(env) {
if env[j] == '=' {
diff --git a/core/os/os2/file.odin b/core/os/os2/file.odin
index 0efa53537..a0fd48c27 100644
--- a/core/os/os2/file.odin
+++ b/core/os/os2/file.odin
@@ -218,8 +218,8 @@ copy_file :: proc(dst_path, src_path: string) -> Error {
src := open(src_path) or_return
defer close(src)
- info := fstat(src, _file_allocator()) or_return
- defer file_info_delete(info, _file_allocator())
+ info := fstat(src, file_allocator()) or_return
+ defer file_info_delete(info, file_allocator())
if info.is_directory {
return .Invalid_File
}
@@ -229,4 +229,4 @@ copy_file :: proc(dst_path, src_path: string) -> Error {
_, err := io.copy(to_writer(dst), to_reader(src))
return err
-} \ No newline at end of file
+}
diff --git a/core/os/os2/file_linux.odin b/core/os/os2/file_linux.odin
index 61d320184..13b5f2966 100644
--- a/core/os/os2/file_linux.odin
+++ b/core/os/os2/file_linux.odin
@@ -35,10 +35,6 @@ _File :: struct {
allocator: runtime.Allocator,
}
-_file_allocator :: proc() -> runtime.Allocator {
- return heap_allocator()
-}
-
_open :: proc(name: string, flags: File_Flags, perm: File_Mode) -> (^File, Error) {
runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD()
name_cstr := strings.clone_to_cstring(name, context.temp_allocator)
@@ -69,9 +65,9 @@ _open :: proc(name: string, flags: File_Flags, perm: File_Mode) -> (^File, Error
}
_new_file :: proc(fd: uintptr, _: string) -> ^File {
- file := new(File, _file_allocator())
+ file := new(File, file_allocator())
file.impl.fd = int(fd)
- file.impl.allocator = _file_allocator()
+ file.impl.allocator = file_allocator()
file.impl.name = _get_full_path(file.impl.fd, file.impl.allocator)
file.stream = {
data = file,
diff --git a/core/os/os2/file_windows.odin b/core/os/os2/file_windows.odin
index fc3cebaea..4c0f62c7a 100644
--- a/core/os/os2/file_windows.odin
+++ b/core/os/os2/file_windows.odin
@@ -17,49 +17,6 @@ S_IWRITE :: 0o200
_ERROR_BAD_NETPATH :: 53
MAX_RW :: 1<<30
-_file_allocator :: proc() -> runtime.Allocator {
- return heap_allocator()
-}
-
-_temp_allocator_proc :: runtime.arena_allocator_proc
-
-@(private="file", thread_local)
-_global_default_temp_allocator_arena: runtime.Arena
-
-_temp_allocator :: proc() -> runtime.Allocator {
- return runtime.Allocator{
- procedure = _temp_allocator_proc,
- data = &_global_default_temp_allocator_arena,
- }
-}
-
-@(require_results)
-_temp_allocator_temp_begin :: proc(loc := #caller_location) -> (temp: runtime.Arena_Temp) {
- temp = runtime.arena_temp_begin(&_global_default_temp_allocator_arena, loc)
- return
-}
-
-_temp_allocator_temp_end :: proc(temp: runtime.Arena_Temp, loc := #caller_location) {
- runtime.arena_temp_end(temp, loc)
-}
-
-@(fini, private)
-_destroy_temp_allocator_fini :: proc() {
- runtime.arena_destroy(&_global_default_temp_allocator_arena)
- _global_default_temp_allocator_arena = {}
-}
-
-@(deferred_out=_temp_allocator_temp_end)
-_TEMP_ALLOCATOR_GUARD :: #force_inline proc(ignore := false, loc := #caller_location) -> (runtime.Arena_Temp, runtime.Source_Code_Location) {
- if ignore {
- return {}, loc
- } else {
- return _temp_allocator_temp_begin(loc), loc
- }
-}
-
-
-
_File_Kind :: enum u8 {
File,
@@ -162,9 +119,9 @@ _new_file :: proc(handle: uintptr, name: string) -> ^File {
if handle == INVALID_HANDLE {
return nil
}
- f := new(File, _file_allocator())
+ f := new(File, file_allocator())
- f.impl.allocator = _file_allocator()
+ f.impl.allocator = file_allocator()
f.impl.fd = rawptr(handle)
f.impl.name = strings.clone(name, f.impl.allocator)
f.impl.wname = win32.utf8_to_wstring(name, f.impl.allocator)
@@ -583,9 +540,9 @@ _normalize_link_path :: proc(p: []u16, allocator: runtime.Allocator) -> (str: st
return "", _get_platform_error()
}
- _TEMP_ALLOCATOR_GUARD()
+ TEMP_ALLOCATOR_GUARD()
- buf := make([]u16, n+1, _temp_allocator())
+ buf := make([]u16, n+1, temp_allocator())
n = win32.GetFinalPathNameByHandleW(handle, raw_data(buf), u32(len(buf)), win32.VOLUME_NAME_DOS)
if n == 0 {
return "", _get_platform_error()
diff --git a/core/os/os2/path_windows.odin b/core/os/os2/path_windows.odin
index 7be4696d7..f3a45768d 100644
--- a/core/os/os2/path_windows.odin
+++ b/core/os/os2/path_windows.odin
@@ -23,7 +23,7 @@ _mkdir_all :: proc(path: string, perm: File_Mode) -> Error {
fix_root_directory :: proc(p: string) -> (s: string, allocated: bool, err: runtime.Allocator_Error) {
if len(p) == len(`\\?\c:`) {
if is_path_separator(p[0]) && is_path_separator(p[1]) && p[2] == '?' && is_path_separator(p[3]) && p[5] == ':' {
- s = strings.concatenate({p, `\`}, _file_allocator()) or_return
+ s = strings.concatenate({p, `\`}, file_allocator()) or_return
allocated = true
return
}
@@ -31,9 +31,9 @@ _mkdir_all :: proc(path: string, perm: File_Mode) -> Error {
return p, false, nil
}
- _TEMP_ALLOCATOR_GUARD()
+ TEMP_ALLOCATOR_GUARD()
- dir, err := stat(path, _temp_allocator())
+ dir, err := stat(path, temp_allocator())
if err == nil {
if dir.is_directory {
return nil
@@ -54,14 +54,14 @@ _mkdir_all :: proc(path: string, perm: File_Mode) -> Error {
if j > 1 {
new_path, allocated := fix_root_directory(path[:j-1]) or_return
defer if allocated {
- delete(new_path, _file_allocator())
+ delete(new_path, file_allocator())
}
mkdir_all(new_path, perm) or_return
}
err = mkdir(path, perm)
if err != nil {
- dir1, err1 := lstat(path, _temp_allocator())
+ dir1, err1 := lstat(path, temp_allocator())
if err1 == nil && dir1.is_directory {
return nil
}
@@ -127,10 +127,10 @@ _fix_long_path_internal :: proc(path: string) -> string {
return path
}
- _TEMP_ALLOCATOR_GUARD()
+ TEMP_ALLOCATOR_GUARD()
PREFIX :: `\\?`
- path_buf := make([]byte, len(PREFIX)+len(path)+1, _temp_allocator())
+ path_buf := make([]byte, len(PREFIX)+len(path)+1, temp_allocator())
copy(path_buf, PREFIX)
n := len(path)
r, w := 0, len(PREFIX)
diff --git a/core/os/os2/stat_windows.odin b/core/os/os2/stat_windows.odin
index 154a5bbe3..03ad2052f 100644
--- a/core/os/os2/stat_windows.odin
+++ b/core/os/os2/stat_windows.odin
@@ -46,15 +46,15 @@ full_path_from_name :: proc(name: string, allocator: runtime.Allocator) -> (path
if name == "" {
name = "."
}
- _TEMP_ALLOCATOR_GUARD()
+ TEMP_ALLOCATOR_GUARD()
- p := win32.utf8_to_utf16(name, _temp_allocator())
+ p := win32.utf8_to_utf16(name, temp_allocator())
n := win32.GetFullPathNameW(raw_data(p), 0, nil, nil)
if n == 0 {
return "", _get_platform_error()
}
- buf := make([]u16, n+1, _temp_allocator())
+ buf := make([]u16, n+1, temp_allocator())
n = win32.GetFullPathNameW(raw_data(p), u32(len(buf)), raw_data(buf), nil)
if n == 0 {
return "", _get_platform_error()
@@ -131,8 +131,8 @@ _cleanpath_from_handle :: proc(f: ^File, allocator: runtime.Allocator) -> (strin
if n == 0 {
return "", _get_platform_error()
}
- _TEMP_ALLOCATOR_GUARD()
- buf := make([]u16, max(n, 260)+1, _temp_allocator())
+ TEMP_ALLOCATOR_GUARD()
+ buf := make([]u16, max(n, 260)+1, temp_allocator())
n = win32.GetFinalPathNameByHandleW(h, raw_data(buf), u32(len(buf)), 0)
return _cleanpath_from_buf(buf[:n], allocator)
}
@@ -147,8 +147,8 @@ _cleanpath_from_handle_u16 :: proc(f: ^File) -> ([]u16, Error) {
if n == 0 {
return nil, _get_platform_error()
}
- _TEMP_ALLOCATOR_GUARD()
- buf := make([]u16, max(n, 260)+1, _temp_allocator())
+ TEMP_ALLOCATOR_GUARD()
+ buf := make([]u16, max(n, 260)+1, temp_allocator())
n = win32.GetFinalPathNameByHandleW(h, raw_data(buf), u32(len(buf)), 0)
return _cleanpath_strip_prefix(buf[:n]), nil
}
diff --git a/core/os/os2/temp_file_windows.odin b/core/os/os2/temp_file_windows.odin
index c42da84f5..09b5675f2 100644
--- a/core/os/os2/temp_file_windows.odin
+++ b/core/os/os2/temp_file_windows.odin
@@ -17,9 +17,9 @@ _temp_dir :: proc(allocator: runtime.Allocator) -> (string, runtime.Allocator_Er
if n == 0 {
return "", nil
}
- _TEMP_ALLOCATOR_GUARD()
+ TEMP_ALLOCATOR_GUARD()
- b := make([]u16, max(win32.MAX_PATH, n), _temp_allocator())
+ b := make([]u16, max(win32.MAX_PATH, n), temp_allocator())
n = win32.GetTempPathW(u32(len(b)), raw_data(b))
if n == 3 && b[1] == ':' && b[2] == '\\' {