SectrPrototype/code/filesystem.odin

66 lines
1.5 KiB
Odin
Raw Normal View History

// TODO(Ed) : Move this to a grime package
2024-01-21 20:38:02 -08:00
package sectr
import "core:fmt"
import "core:os"
import "core:runtime"
2024-01-22 00:47:53 -08:00
copy_file_sync :: proc( path_src, path_dst: string ) -> b32
2024-01-21 20:38:02 -08:00
{
2024-01-22 00:47:53 -08:00
file_size : i64
2024-01-21 20:38:02 -08:00
{
path_info, result := os.stat( path_src, context.temp_allocator )
if result != os.ERROR_NONE {
logf("Could not get file info: %v", result, LogLevel.Error )
2024-01-21 20:38:02 -08:00
return false
}
file_size = path_info.size
}
src_content, result := os.read_entire_file( path_src, context.temp_allocator )
if ! result {
logf( "Failed to read file to copy: %v", path_src, LogLevel.Error )
2024-01-21 20:38:02 -08:00
runtime.debug_trap()
return false
}
result = os.write_entire_file( path_dst, src_content, false )
if ! result {
logf( "Failed to copy file: %v", path_dst, LogLevel.Error )
2024-01-21 20:38:02 -08:00
runtime.debug_trap()
return false
}
2024-01-22 00:47:53 -08:00
return true
}
file_exists :: proc ( file_path : string ) -> b32 {
path_info, result := os.stat( file_path, context.temp_allocator )
if result != os.ERROR_NONE {
return false
}
return true;
}
is_file_locked :: proc( file_path : string ) -> b32 {
2024-01-22 00:47:53 -08:00
handle, err := os.open(file_path, os.O_RDONLY)
if err != os.ERROR_NONE {
// If the error indicates the file is in use, return true.
return true
}
// If the file opens successfully, close it and return false.
os.close(handle)
return false
2024-01-21 20:38:02 -08:00
}
rewind :: proc ( file : os.Handle ) {
os.seek( file, 0, 0 )
}
read_looped :: proc ( file : os.Handle, data : []byte ) {
total_read, result_code := os.read( file, data )
if result_code == os.ERROR_HANDLE_EOF {
rewind( file )
}
}