12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- //+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) {
- impl := (^File_Impl)(f.impl)
- return _fstat_internal(impl.fd, allocator)
- }
- _fstat_internal :: proc(fd: linux.Fd, allocator: runtime.Allocator) -> (fi: File_Info, err: Error) {
- s: linux.Stat
- errno := linux.fstat(fd, &s)
- if errno != .NONE {
- return {}, _get_platform_error(errno)
- }
- type := File_Type.Regular
- switch s.mode & linux.S_IFMT {
- case linux.S_IFBLK: type = .Block_Device
- case linux.S_IFCHR: type = .Character_Device
- case linux.S_IFDIR: type = .Directory
- case linux.S_IFIFO: type = .Named_Pipe
- case linux.S_IFLNK: type = .Symlink
- case linux.S_IFREG: type = .Regular
- case linux.S_IFSOCK: type = .Socket
- }
- mode := int(0o7777 & transmute(u32)s.mode)
- // TODO: As of Linux 4.11, the new statx syscall can retrieve creation_time
- fi = File_Info {
- fullpath = _get_full_path(fd, allocator) or_return,
- name = "",
- inode = u128(u64(s.ino)),
- size = i64(s.size),
- mode = mode,
- type = type,
- 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
- }
- // 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
- }
|