URL
                    https://opencores.org/ocsvn/openrisc/openrisc/trunk
                
            Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [os/] [dir.go] - Rev 747
Compare with Previous | Blame | View Log
// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.package osimport ("io""syscall""unsafe")//extern opendirfunc libc_opendir(*byte) *syscall.DIR//extern closedirfunc libc_closedir(*syscall.DIR) int// FIXME: pathconf returns long, not int.//extern pathconffunc libc_pathconf(*byte, int) intfunc clen(n []byte) int {for i := 0; i < len(n); i++ {if n[i] == 0 {return i}}return len(n)}var elen intfunc (file *File) readdirnames(n int) (names []string, err error) {if elen == 0 {var dummy syscall.Direntelen = (unsafe.Offsetof(dummy.Name) +libc_pathconf(syscall.StringBytePtr(file.name), syscall.PC_NAME_MAX) +1)}if file.dirinfo == nil {file.dirinfo = new(dirInfo)file.dirinfo.buf = make([]byte, elen)file.dirinfo.dir = libc_opendir(syscall.StringBytePtr(file.name))}entry_dirent := unsafe.Pointer(&file.dirinfo.buf[0]).(*syscall.Dirent)size := nif size < 0 {size = 100n = -1}names = make([]string, 0, size) // Empty with room to grow.dir := file.dirinfo.dirif dir == nil {return names, NewSyscallError("opendir", syscall.GetErrno())}for n != 0 {var result *syscall.Direnti := libc_readdir_r(dir, entry_dirent, &result)if i != 0 {return names, NewSyscallError("readdir_r", i)}if result == nil {break // EOF}var name = string(result.Name[0:clen(result.Name[0:])])if name == "." || name == ".." { // Useless namescontinue}names = append(names, name)n--}if n >= 0 && len(names) == 0 {return names, io.EOF}return names, nil}
