12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //+private
- package os2
- import "core:time"
- import "base:runtime"
- import "core:sys/linux"
- import "core:path/filepath"
- _fstat :: proc(f: ^File, allocator: runtime.Allocator) -> (File_Info, Error) {
- return _fstat_internal(f.impl.fd, allocator)
- }
- _fstat_internal :: proc(fd: linux.Fd, allocator: runtime.Allocator) -> (File_Info, Error) {
- s: linux.Stat
- errno := linux.fstat(fd, &s)
- if errno != .NONE {
- return {}, _get_platform_error(errno)
- }
- // TODO: As of Linux 4.11, the new statx syscall can retrieve creation_time
- fi := File_Info {
- fullpath = _get_full_path(fd, allocator),
- name = "",
- size = i64(s.size),
- mode = 0,
- is_directory = linux.S_ISDIR(s.mode),
- modification_time = time.Time {i64(s.mtime.time_sec) * i64(time.Second) + i64(s.mtime.time_nsec)},
- access_time = time.Time {i64(s.atime.time_sec) * i64(time.Second) + i64(s.atime.time_nsec)},
- creation_time = time.Time{i64(s.ctime.time_sec) * i64(time.Second) + i64(s.ctime.time_nsec)}, // regular stat does not provide this
- }
- fi.creation_time = fi.modification_time
- fi.name = filepath.base(fi.fullpath)
- return fi, nil
- }
- // NOTE: _stat and _lstat are using _fstat to avoid a race condition when populating fullpath
- _stat :: proc(name: string, allocator: runtime.Allocator) -> (fi: File_Info, err: Error) {
- TEMP_ALLOCATOR_GUARD()
- name_cstr := temp_cstring(name) or_return
- fd, errno := linux.open(name_cstr, {})
- if errno != .NONE {
- return {}, _get_platform_error(errno)
- }
- defer linux.close(fd)
- return _fstat_internal(fd, allocator)
- }
- _lstat :: proc(name: string, allocator: runtime.Allocator) -> (fi: File_Info, err: Error) {
- TEMP_ALLOCATOR_GUARD()
- name_cstr := temp_cstring(name) or_return
- fd, errno := linux.open(name_cstr, {.PATH, .NOFOLLOW})
- if errno != .NONE {
- return {}, _get_platform_error(errno)
- }
- defer linux.close(fd)
- return _fstat_internal(fd, allocator)
- }
- _same_file :: proc(fi1, fi2: File_Info) -> bool {
- return fi1.fullpath == fi2.fullpath
- }
|