2009-04-07 01:40:07 -06: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.
|
|
|
|
|
2011-04-19 17:57:05 -06:00
|
|
|
// Package path implements utility routines for manipulating slash-separated
|
|
|
|
// filename paths.
|
2009-04-07 01:40:07 -06:00
|
|
|
package path
|
|
|
|
|
2009-10-19 12:48:04 -06:00
|
|
|
import (
|
2009-12-15 16:40:16 -07:00
|
|
|
"strings"
|
2009-10-19 12:48:04 -06:00
|
|
|
)
|
2009-04-07 01:40:07 -06:00
|
|
|
|
|
|
|
// Clean returns the shortest path name equivalent to path
|
|
|
|
// by purely lexical processing. It applies the following rules
|
|
|
|
// iteratively until no further processing can be done:
|
|
|
|
//
|
2009-04-07 22:53:39 -06:00
|
|
|
// 1. Replace multiple slashes with a single slash.
|
2009-04-07 01:40:07 -06:00
|
|
|
// 2. Eliminate each . path name element (the current directory).
|
2009-04-07 22:53:39 -06:00
|
|
|
// 3. Eliminate each inner .. path name element (the parent directory)
|
2009-04-07 01:40:07 -06:00
|
|
|
// along with the non-.. element that precedes it.
|
|
|
|
// 4. Eliminate .. elements that begin a rooted path:
|
|
|
|
// that is, replace "/.." by "/" at the beginning of a path.
|
|
|
|
//
|
|
|
|
// If the result of this process is an empty string, Clean
|
|
|
|
// returns the string ".".
|
|
|
|
//
|
|
|
|
// See also Rob Pike, ``Lexical File Names in Plan 9 or
|
|
|
|
// Getting Dot-Dot right,''
|
|
|
|
// http://plan9.bell-labs.com/sys/doc/lexnames.html
|
|
|
|
func Clean(path string) string {
|
|
|
|
if path == "" {
|
2009-11-09 13:07:39 -07:00
|
|
|
return "."
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
|
2009-12-15 16:40:16 -07:00
|
|
|
rooted := path[0] == '/'
|
|
|
|
n := len(path)
|
2009-04-07 01:40:07 -06:00
|
|
|
|
|
|
|
// Invariants:
|
|
|
|
// reading from path; r is index of next byte to process.
|
|
|
|
// writing to buf; w is index of next byte to write.
|
|
|
|
// dotdot is index in buf where .. must stop, either because
|
|
|
|
// it is the leading slash or it is a leading ../../.. prefix.
|
2010-02-25 17:01:29 -07:00
|
|
|
buf := []byte(path)
|
2009-12-15 16:40:16 -07:00
|
|
|
r, w, dotdot := 0, 0, 0
|
2009-04-07 01:40:07 -06:00
|
|
|
if rooted {
|
2009-11-09 13:07:39 -07:00
|
|
|
r, w, dotdot = 1, 1, 1
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for r < n {
|
|
|
|
switch {
|
|
|
|
case path[r] == '/':
|
|
|
|
// empty path element
|
2009-11-09 13:07:39 -07:00
|
|
|
r++
|
2009-04-07 01:40:07 -06:00
|
|
|
case path[r] == '.' && (r+1 == n || path[r+1] == '/'):
|
|
|
|
// . element
|
2009-11-09 13:07:39 -07:00
|
|
|
r++
|
2009-04-07 01:40:07 -06:00
|
|
|
case path[r] == '.' && path[r+1] == '.' && (r+2 == n || path[r+2] == '/'):
|
|
|
|
// .. element: remove to last /
|
2009-12-15 16:40:16 -07:00
|
|
|
r += 2
|
2009-04-07 01:40:07 -06:00
|
|
|
switch {
|
|
|
|
case w > dotdot:
|
|
|
|
// can backtrack
|
2009-12-15 16:40:16 -07:00
|
|
|
w--
|
2009-04-07 01:40:07 -06:00
|
|
|
for w > dotdot && buf[w] != '/' {
|
2009-11-09 13:07:39 -07:00
|
|
|
w--
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
case !rooted:
|
|
|
|
// cannot backtrack, but not rooted, so append .. element.
|
|
|
|
if w > 0 {
|
2009-12-15 16:40:16 -07:00
|
|
|
buf[w] = '/'
|
|
|
|
w++
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
buf[w] = '.'
|
|
|
|
w++
|
|
|
|
buf[w] = '.'
|
|
|
|
w++
|
|
|
|
dotdot = w
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
// real path element.
|
|
|
|
// add slash if needed
|
|
|
|
if rooted && w != 1 || !rooted && w != 0 {
|
2009-12-15 16:40:16 -07:00
|
|
|
buf[w] = '/'
|
|
|
|
w++
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
// copy element
|
|
|
|
for ; r < n && path[r] != '/'; r++ {
|
2009-12-15 16:40:16 -07:00
|
|
|
buf[w] = path[r]
|
|
|
|
w++
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Turn empty string into "."
|
|
|
|
if w == 0 {
|
2009-12-15 16:40:16 -07:00
|
|
|
buf[w] = '.'
|
|
|
|
w++
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
|
2009-12-15 16:40:16 -07:00
|
|
|
return string(buf[0:w])
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
|
2010-11-30 18:17:45 -07:00
|
|
|
// Split splits path immediately following the final path separator,
|
2009-04-07 01:40:07 -06:00
|
|
|
// separating it into a directory and file name component.
|
2010-11-30 18:17:45 -07:00
|
|
|
// If there is no separator in path, Split returns an empty dir and
|
2009-04-07 01:40:07 -06:00
|
|
|
// file set to path.
|
|
|
|
func Split(path string) (dir, file string) {
|
2011-03-06 15:33:23 -07:00
|
|
|
i := strings.LastIndex(path, "/")
|
2010-11-30 18:17:45 -07:00
|
|
|
return path[:i+1], path[i+1:]
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
|
2010-03-11 17:40:32 -07:00
|
|
|
// Join joins any number of path elements into a single path, adding a
|
2010-02-05 03:39:33 -07:00
|
|
|
// separating slash if necessary. All empty strings are ignored.
|
|
|
|
func Join(elem ...string) string {
|
|
|
|
for i, e := range elem {
|
|
|
|
if e != "" {
|
|
|
|
return Clean(strings.Join(elem[i:], "/"))
|
|
|
|
}
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
2010-02-05 03:39:33 -07:00
|
|
|
return ""
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ext returns the file name extension used by path.
|
|
|
|
// The extension is the suffix beginning at the final dot
|
|
|
|
// in the final slash-separated element of path;
|
|
|
|
// it is empty if there is no dot.
|
|
|
|
func Ext(path string) string {
|
2009-11-09 22:23:52 -07:00
|
|
|
for i := len(path) - 1; i >= 0 && path[i] != '/'; i-- {
|
2009-04-07 01:40:07 -06:00
|
|
|
if path[i] == '.' {
|
2009-11-20 12:45:05 -07:00
|
|
|
return path[i:]
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
|
|
|
}
|
2009-12-15 16:40:16 -07:00
|
|
|
return ""
|
2009-04-07 01:40:07 -06:00
|
|
|
}
|
2009-10-19 12:48:04 -06:00
|
|
|
|
2011-03-06 15:33:23 -07:00
|
|
|
// Base returns the last element of path.
|
|
|
|
// Trailing slashes are removed before extracting the last element.
|
|
|
|
// If the path is empty, Base returns ".".
|
|
|
|
// If the path consists entirely of slashes, Base returns "/".
|
|
|
|
func Base(path string) string {
|
|
|
|
if path == "" {
|
2010-06-09 20:59:22 -06:00
|
|
|
return "."
|
|
|
|
}
|
|
|
|
// Strip trailing slashes.
|
2011-03-06 15:33:23 -07:00
|
|
|
for len(path) > 0 && path[len(path)-1] == '/' {
|
|
|
|
path = path[0 : len(path)-1]
|
2010-06-09 20:59:22 -06:00
|
|
|
}
|
|
|
|
// Find the last element
|
2011-03-06 15:33:23 -07:00
|
|
|
if i := strings.LastIndex(path, "/"); i >= 0 {
|
|
|
|
path = path[i+1:]
|
2010-06-09 20:59:22 -06:00
|
|
|
}
|
|
|
|
// If empty now, it had only slashes.
|
2011-03-06 15:33:23 -07:00
|
|
|
if path == "" {
|
2010-06-09 20:59:22 -06:00
|
|
|
return "/"
|
|
|
|
}
|
2011-03-06 15:33:23 -07:00
|
|
|
return path
|
2010-06-09 20:59:22 -06:00
|
|
|
}
|
2010-09-08 23:42:43 -06:00
|
|
|
|
|
|
|
// IsAbs returns true if the path is absolute.
|
|
|
|
func IsAbs(path string) bool {
|
2011-03-06 15:33:23 -07:00
|
|
|
return len(path) > 0 && path[0] == '/'
|
2010-09-08 23:42:43 -06:00
|
|
|
}
|