2014-11-13 15:36:05 -05:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package archive
|
|
|
|
|
|
|
|
import (
|
2015-05-01 18:01:10 -04:00
|
|
|
"archive/tar"
|
2015-02-17 15:27:07 -05:00
|
|
|
"fmt"
|
2015-03-05 20:15:11 -05:00
|
|
|
"os"
|
2015-08-10 18:21:30 -04:00
|
|
|
"path/filepath"
|
2015-02-17 15:27:07 -05:00
|
|
|
"strings"
|
2015-08-24 17:07:22 -04:00
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/longpath"
|
2014-11-13 15:36:05 -05:00
|
|
|
)
|
|
|
|
|
2015-08-10 18:21:30 -04:00
|
|
|
// fixVolumePathPrefix does platform specific processing to ensure that if
|
|
|
|
// the path being passed in is not in a volume path format, convert it to one.
|
|
|
|
func fixVolumePathPrefix(srcPath string) string {
|
2015-08-24 17:07:22 -04:00
|
|
|
return longpath.AddPrefix(srcPath)
|
2015-08-10 18:21:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// getWalkRoot calculates the root path when performing a TarWithOptions.
|
2015-12-13 11:00:39 -05:00
|
|
|
// We use a separate function as this is platform specific.
|
2015-08-10 18:21:30 -04:00
|
|
|
func getWalkRoot(srcPath string, include string) string {
|
|
|
|
return filepath.Join(srcPath, include)
|
|
|
|
}
|
|
|
|
|
2015-09-04 08:56:45 -04:00
|
|
|
// CanonicalTarNameForPath returns platform-specific filepath
|
2015-02-17 15:27:07 -05:00
|
|
|
// 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
|
2015-05-07 18:14:11 -04:00
|
|
|
// into forward slashes. Since windows does not allow '/' or '\'
|
2015-02-17 15:27:07 -05:00
|
|
|
// in file names, it is mostly safe to replace however we must
|
|
|
|
// check just in case
|
|
|
|
if strings.Contains(p, "/") {
|
2015-05-07 18:14:11 -04:00
|
|
|
return "", fmt.Errorf("Windows path contains forward slash: %s", p)
|
2015-02-17 15:27:07 -05:00
|
|
|
}
|
2015-03-05 20:15:11 -05:00
|
|
|
return strings.Replace(p, string(os.PathSeparator), "/", -1), nil
|
|
|
|
|
2015-02-17 15:27:07 -05:00
|
|
|
}
|
|
|
|
|
2015-03-03 21:40:16 -05:00
|
|
|
// chmodTarEntry is used to adjust the file permissions used in tar header based
|
|
|
|
// on the platform the archival is done.
|
|
|
|
func chmodTarEntry(perm os.FileMode) os.FileMode {
|
2015-03-15 13:19:15 -04:00
|
|
|
perm &= 0755
|
2015-03-03 21:40:16 -05:00
|
|
|
// Add the x bit: make everything +x from windows
|
2015-03-15 13:19:15 -04:00
|
|
|
perm |= 0111
|
2015-03-03 21:40:16 -05:00
|
|
|
|
|
|
|
return perm
|
|
|
|
}
|
|
|
|
|
2015-10-12 15:11:22 -04:00
|
|
|
func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, stat interface{}) (inode uint64, err error) {
|
2014-11-13 15:36:05 -05:00
|
|
|
// do nothing. no notion of Rdev, Inode, Nlink in stat on Windows
|
|
|
|
return
|
|
|
|
}
|
2015-05-07 18:14:11 -04:00
|
|
|
|
|
|
|
// handleTarTypeBlockCharFifo is an OS-specific helper function used by
|
|
|
|
// createTarFile to handle the following types of header: Block; Char; Fifo
|
|
|
|
func handleTarTypeBlockCharFifo(hdr *tar.Header, path string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleLChmod(hdr *tar.Header, path string, hdrInfo os.FileInfo) error {
|
|
|
|
return nil
|
|
|
|
}
|
2015-10-08 11:51:41 -04:00
|
|
|
|
|
|
|
func getFileUIDGID(stat interface{}) (int, int, error) {
|
|
|
|
// no notion of file ownership mapping yet on Windows
|
|
|
|
return 0, 0, nil
|
|
|
|
}
|