Retro68/gcc/libgo/go/os/getwd.go

124 lines
2.5 KiB
Go
Raw Normal View History

2012-03-27 23:13:14 +00:00
// 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 os
import (
2015-08-28 15:33:40 +00:00
"runtime"
2014-09-21 17:33:12 +00:00
"sync"
2012-03-27 23:13:14 +00:00
"syscall"
)
2014-09-21 17:33:12 +00:00
var getwdCache struct {
sync.Mutex
dir string
}
// useSyscallwd determines whether to use the return value of
// syscall.Getwd based on its error.
var useSyscallwd = func(error) bool { return true }
2012-03-27 23:13:14 +00:00
// Getwd returns a rooted path name corresponding to the
// current directory. If the current directory can be
// reached via multiple paths (due to symbolic links),
// Getwd may return any one of them.
2015-08-28 15:33:40 +00:00
func Getwd() (dir string, err error) {
if runtime.GOOS == "windows" {
return syscall.Getwd()
2012-03-27 23:13:14 +00:00
}
2015-08-28 15:33:40 +00:00
// Clumsy but widespread kludge:
// if $PWD is set and matches ".", use it.
2012-03-27 23:13:14 +00:00
dot, err := Stat(".")
if err != nil {
return "", err
}
2015-08-28 15:33:40 +00:00
dir = Getenv("PWD")
if len(dir) > 0 && dir[0] == '/' {
d, err := Stat(dir)
2012-03-27 23:13:14 +00:00
if err == nil && SameFile(dot, d) {
2015-08-28 15:33:40 +00:00
return dir, nil
}
}
// If the operating system provides a Getwd call, use it.
// Otherwise, we're trying to find our way back to ".".
if syscall.ImplementsGetwd {
s, e := syscall.Getwd()
if useSyscallwd(e) {
return s, NewSyscallError("getwd", e)
2012-03-27 23:13:14 +00:00
}
}
2014-09-21 17:33:12 +00:00
// Apply same kludge but to cached dir instead of $PWD.
getwdCache.Lock()
2015-08-28 15:33:40 +00:00
dir = getwdCache.dir
2014-09-21 17:33:12 +00:00
getwdCache.Unlock()
2015-08-28 15:33:40 +00:00
if len(dir) > 0 {
d, err := Stat(dir)
2014-09-21 17:33:12 +00:00
if err == nil && SameFile(dot, d) {
2015-08-28 15:33:40 +00:00
return dir, nil
2014-09-21 17:33:12 +00:00
}
}
2012-03-27 23:13:14 +00:00
// Root is a special case because it has no parent
// and ends in a slash.
root, err := Stat("/")
if err != nil {
// Can't stat root - no hope.
return "", err
}
if SameFile(root, dot) {
return "/", nil
}
// General algorithm: find name in parent
// and then find name of parent. Each iteration
2015-08-28 15:33:40 +00:00
// adds /name to the beginning of dir.
dir = ""
2012-03-27 23:13:14 +00:00
for parent := ".."; ; parent = "../" + parent {
if len(parent) >= 1024 { // Sanity check
return "", syscall.ENAMETOOLONG
}
fd, err := Open(parent)
if err != nil {
return "", err
}
for {
names, err := fd.Readdirnames(100)
if err != nil {
fd.Close()
return "", err
}
for _, name := range names {
d, _ := Lstat(parent + "/" + name)
if SameFile(d, dot) {
2015-08-28 15:33:40 +00:00
dir = "/" + name + dir
2012-03-27 23:13:14 +00:00
goto Found
}
}
}
Found:
pd, err := fd.Stat()
if err != nil {
return "", err
}
fd.Close()
if SameFile(pd, root) {
break
}
// Set up for next round.
dot = pd
}
2014-09-21 17:33:12 +00:00
// Save answer as hint to avoid the expensive path next time.
getwdCache.Lock()
2015-08-28 15:33:40 +00:00
getwdCache.dir = dir
2014-09-21 17:33:12 +00:00
getwdCache.Unlock()
2015-08-28 15:33:40 +00:00
return dir, nil
2012-03-27 23:13:14 +00:00
}