2014-11-13 15:36:05 -05:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package archive
|
|
|
|
|
|
|
|
import (
|
2015-02-17 15:27:07 -05:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2014-11-13 15:36:05 -05:00
|
|
|
"github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar"
|
|
|
|
)
|
|
|
|
|
2015-02-17 15:27:07 -05:00
|
|
|
// canonicalTarNameForPath returns platform-specific filepath
|
|
|
|
// to canonical posix-style path for tar archival. p is relative
|
|
|
|
// path.
|
2015-02-24 22:43:29 -05:00
|
|
|
func CanonicalTarNameForPath(p string) (string, error) {
|
2015-02-17 15:27:07 -05:00
|
|
|
// windows: convert windows style relative path with backslashes
|
|
|
|
// into forward slashes. since windows does not allow '/' or '\'
|
|
|
|
// in file names, it is mostly safe to replace however we must
|
|
|
|
// check just in case
|
|
|
|
if strings.Contains(p, "/") {
|
|
|
|
return "", fmt.Errorf("windows path contains forward slash: %s", p)
|
|
|
|
}
|
|
|
|
return strings.Replace(p, "\\", "/", -1), nil
|
|
|
|
}
|
|
|
|
|
2014-11-13 15:36:05 -05:00
|
|
|
func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, stat interface{}) (nlink uint32, inode uint64, err error) {
|
|
|
|
// do nothing. no notion of Rdev, Inode, Nlink in stat on Windows
|
|
|
|
return
|
|
|
|
}
|