Skip to content

x/sys/unix: file type information from dirents inaccessible #14856

@dbentley

Description

@dbentley

golang.org/x/sys/unix.ReadDirent reads a Dirent that includes the filename and the file type. golang.org/x/sys/unix.ParseDirent parses out the filename.

Linux and OSX include the file type in the Dirent. Go should make this information accessible. This info would let programs skip stat'ing files of the wrong type.

It would not be feasible to change ParseDirent to do so because it would require a type signature change.

If we can agree on a plan, I can (try to) make the code change.

Here's my proposal, but I've never made a change to Go so it may be off-base.

The package unix could offer a func like "ParseDirentFully" that returned a struct or interface that offered all dirent members available. ParseDirent could call ParseDirentFully to return just the name. (The naming could be better, e.g. ParseDirent and ParseNameFromDirent, but that would break existing code) The code in syscall_*.go already casts to the dirent type from the underlying FS, so it could access another member.

(I am using go 1.5.1 on darwin/amd64. I have inspected code on tip and believe this issue still applies)

Metadata

Metadata

Assignees

No one assigned

    Labels

    compiler/runtimeIssues related to the Go compiler and/or runtime.

    Type

    No type

    Projects

    Status

    Triage Backlog

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions