mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
48 lines
932 B
Go
48 lines
932 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package fs
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func copyFile(source, target string) error {
|
|
if err := unix.Clonefileat(unix.AT_FDCWD, source, unix.AT_FDCWD, target, unix.CLONE_NOFOLLOW); err != nil {
|
|
if err != unix.EINVAL && err != unix.EXDEV {
|
|
return err
|
|
}
|
|
} else {
|
|
return nil
|
|
}
|
|
|
|
src, err := os.Open(source)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to open source %s", source)
|
|
}
|
|
defer src.Close()
|
|
tgt, err := os.Create(target)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to open target %s", target)
|
|
}
|
|
defer tgt.Close()
|
|
|
|
return copyFileContent(tgt, src)
|
|
}
|
|
|
|
func copyFileContent(dst, src *os.File) error {
|
|
buf := bufferPool.Get().(*[]byte)
|
|
_, err := io.CopyBuffer(dst, src, *buf)
|
|
bufferPool.Put(buf)
|
|
|
|
return err
|
|
}
|
|
|
|
func mknod(dst string, mode uint32, rDev int) error {
|
|
return unix.Mknod(dst, uint32(mode), rDev)
|
|
}
|