mirror of https://github.com/docker/cli.git
Merge pull request #4137 from cpuguy83/fix_cp_no_tty
Improve docker cp progress output
This commit is contained in:
commit
8e6ac62d53
|
@ -1,15 +1,20 @@
|
||||||
package container
|
package container
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
"os/signal"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync/atomic"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/docker/cli/cli"
|
"github.com/docker/cli/cli"
|
||||||
"github.com/docker/cli/cli/command"
|
"github.com/docker/cli/cli/command"
|
||||||
|
"github.com/docker/cli/cli/streams"
|
||||||
"github.com/docker/docker/api/types"
|
"github.com/docker/docker/api/types"
|
||||||
"github.com/docker/docker/pkg/archive"
|
"github.com/docker/docker/pkg/archive"
|
||||||
"github.com/docker/docker/pkg/system"
|
"github.com/docker/docker/pkg/system"
|
||||||
|
@ -48,26 +53,73 @@ type cpConfig struct {
|
||||||
// copying files to/from a container.
|
// copying files to/from a container.
|
||||||
type copyProgressPrinter struct {
|
type copyProgressPrinter struct {
|
||||||
io.ReadCloser
|
io.ReadCloser
|
||||||
toContainer bool
|
total *int64
|
||||||
total *float64
|
|
||||||
writer io.Writer
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
copyToContainerHeader = "Copying to container - "
|
||||||
|
copyFromContainerHeader = "Copying from container - "
|
||||||
|
copyProgressUpdateThreshold = 75 * time.Millisecond
|
||||||
|
)
|
||||||
|
|
||||||
func (pt *copyProgressPrinter) Read(p []byte) (int, error) {
|
func (pt *copyProgressPrinter) Read(p []byte) (int, error) {
|
||||||
n, err := pt.ReadCloser.Read(p)
|
n, err := pt.ReadCloser.Read(p)
|
||||||
*pt.total += float64(n)
|
atomic.AddInt64(pt.total, int64(n))
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
if err == nil {
|
func copyProgress(ctx context.Context, dst io.Writer, header string, total *int64) (func(), <-chan struct{}) {
|
||||||
fmt.Fprint(pt.writer, aec.Restore)
|
done := make(chan struct{})
|
||||||
fmt.Fprint(pt.writer, aec.EraseLine(aec.EraseModes.All))
|
if !streams.NewOut(dst).IsTerminal() {
|
||||||
if pt.toContainer {
|
close(done)
|
||||||
fmt.Fprintln(pt.writer, "Copying to container - "+units.HumanSize(*pt.total))
|
return func() {}, done
|
||||||
} else {
|
|
||||||
fmt.Fprintln(pt.writer, "Copying from container - "+units.HumanSize(*pt.total))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return n, err
|
fmt.Fprint(dst, aec.Save)
|
||||||
|
fmt.Fprint(dst, "Preparing to copy...")
|
||||||
|
|
||||||
|
restore := func() {
|
||||||
|
fmt.Fprint(dst, aec.Restore)
|
||||||
|
fmt.Fprint(dst, aec.EraseLine(aec.EraseModes.All))
|
||||||
|
}
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
defer close(done)
|
||||||
|
fmt.Fprint(dst, aec.Hide)
|
||||||
|
defer fmt.Fprint(dst, aec.Show)
|
||||||
|
|
||||||
|
fmt.Fprint(dst, aec.Restore)
|
||||||
|
fmt.Fprint(dst, aec.EraseLine(aec.EraseModes.All))
|
||||||
|
fmt.Fprint(dst, header)
|
||||||
|
|
||||||
|
var last int64
|
||||||
|
fmt.Fprint(dst, progressHumanSize(last))
|
||||||
|
|
||||||
|
buf := bytes.NewBuffer(nil)
|
||||||
|
ticker := time.NewTicker(copyProgressUpdateThreshold)
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return
|
||||||
|
case <-ticker.C:
|
||||||
|
n := atomic.LoadInt64(total)
|
||||||
|
if n == last {
|
||||||
|
// Don't write to the terminal, if we don't need to.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write to the buffer first to avoid flickering and context switching
|
||||||
|
fmt.Fprint(buf, aec.Column(uint(len(header)+1)))
|
||||||
|
fmt.Fprint(buf, aec.EraseLine(aec.EraseModes.Tail))
|
||||||
|
fmt.Fprint(buf, progressHumanSize(n))
|
||||||
|
|
||||||
|
buf.WriteTo(dst)
|
||||||
|
buf.Reset()
|
||||||
|
last += n
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
return restore, done
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewCopyCommand creates a new `docker cp` command
|
// NewCopyCommand creates a new `docker cp` command
|
||||||
|
@ -113,6 +165,10 @@ func NewCopyCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func progressHumanSize(n int64) string {
|
||||||
|
return units.HumanSizeWithPrecision(float64(n), 3)
|
||||||
|
}
|
||||||
|
|
||||||
func runCopy(dockerCli command.Cli, opts copyOptions) error {
|
func runCopy(dockerCli command.Cli, opts copyOptions) error {
|
||||||
srcContainer, srcPath := splitCpArg(opts.source)
|
srcContainer, srcPath := splitCpArg(opts.source)
|
||||||
destContainer, destPath := splitCpArg(opts.destination)
|
destContainer, destPath := splitCpArg(opts.destination)
|
||||||
|
@ -193,6 +249,9 @@ func copyFromContainer(ctx context.Context, dockerCli command.Cli, copyConfig cp
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ctx, cancel := signal.NotifyContext(ctx, os.Interrupt)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
content, stat, err := client.CopyFromContainer(ctx, copyConfig.container, srcPath)
|
content, stat, err := client.CopyFromContainer(ctx, copyConfig.container, srcPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -211,13 +270,11 @@ func copyFromContainer(ctx context.Context, dockerCli command.Cli, copyConfig cp
|
||||||
RebaseName: rebaseName,
|
RebaseName: rebaseName,
|
||||||
}
|
}
|
||||||
|
|
||||||
var copiedSize float64
|
var copiedSize int64
|
||||||
if !copyConfig.quiet {
|
if !copyConfig.quiet {
|
||||||
content = ©ProgressPrinter{
|
content = ©ProgressPrinter{
|
||||||
ReadCloser: content,
|
ReadCloser: content,
|
||||||
toContainer: false,
|
total: &copiedSize,
|
||||||
writer: dockerCli.Err(),
|
|
||||||
total: &copiedSize,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -231,12 +288,12 @@ func copyFromContainer(ctx context.Context, dockerCli command.Cli, copyConfig cp
|
||||||
return archive.CopyTo(preArchive, srcInfo, dstPath)
|
return archive.CopyTo(preArchive, srcInfo, dstPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Fprint(dockerCli.Err(), aec.Save)
|
restore, done := copyProgress(ctx, dockerCli.Err(), copyFromContainerHeader, &copiedSize)
|
||||||
fmt.Fprintln(dockerCli.Err(), "Preparing to copy...")
|
|
||||||
res := archive.CopyTo(preArchive, srcInfo, dstPath)
|
res := archive.CopyTo(preArchive, srcInfo, dstPath)
|
||||||
fmt.Fprint(dockerCli.Err(), aec.Restore)
|
cancel()
|
||||||
fmt.Fprint(dockerCli.Err(), aec.EraseLine(aec.EraseModes.All))
|
<-done
|
||||||
fmt.Fprintln(dockerCli.Err(), "Successfully copied", units.HumanSize(copiedSize), "to", dstPath)
|
restore()
|
||||||
|
fmt.Fprintln(dockerCli.Err(), "Successfully copied", progressHumanSize(copiedSize), "to", dstPath)
|
||||||
|
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
@ -293,7 +350,7 @@ func copyToContainer(ctx context.Context, dockerCli command.Cli, copyConfig cpCo
|
||||||
var (
|
var (
|
||||||
content io.ReadCloser
|
content io.ReadCloser
|
||||||
resolvedDstPath string
|
resolvedDstPath string
|
||||||
copiedSize float64
|
copiedSize int64
|
||||||
)
|
)
|
||||||
|
|
||||||
if srcPath == "-" {
|
if srcPath == "-" {
|
||||||
|
@ -337,10 +394,8 @@ func copyToContainer(ctx context.Context, dockerCli command.Cli, copyConfig cpCo
|
||||||
content = preparedArchive
|
content = preparedArchive
|
||||||
if !copyConfig.quiet {
|
if !copyConfig.quiet {
|
||||||
content = ©ProgressPrinter{
|
content = ©ProgressPrinter{
|
||||||
ReadCloser: content,
|
ReadCloser: content,
|
||||||
toContainer: true,
|
total: &copiedSize,
|
||||||
writer: dockerCli.Err(),
|
|
||||||
total: &copiedSize,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -354,12 +409,13 @@ func copyToContainer(ctx context.Context, dockerCli command.Cli, copyConfig cpCo
|
||||||
return client.CopyToContainer(ctx, copyConfig.container, resolvedDstPath, content, options)
|
return client.CopyToContainer(ctx, copyConfig.container, resolvedDstPath, content, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Fprint(dockerCli.Err(), aec.Save)
|
ctx, cancel := signal.NotifyContext(ctx, os.Interrupt)
|
||||||
fmt.Fprintln(dockerCli.Err(), "Preparing to copy...")
|
restore, done := copyProgress(ctx, dockerCli.Err(), copyToContainerHeader, &copiedSize)
|
||||||
res := client.CopyToContainer(ctx, copyConfig.container, resolvedDstPath, content, options)
|
res := client.CopyToContainer(ctx, copyConfig.container, resolvedDstPath, content, options)
|
||||||
fmt.Fprint(dockerCli.Err(), aec.Restore)
|
cancel()
|
||||||
fmt.Fprint(dockerCli.Err(), aec.EraseLine(aec.EraseModes.All))
|
<-done
|
||||||
fmt.Fprintln(dockerCli.Err(), "Successfully copied", units.HumanSize(copiedSize), "to", copyConfig.container+":"+dstInfo.Path)
|
restore()
|
||||||
|
fmt.Fprintln(dockerCli.Err(), "Successfully copied", progressHumanSize(copiedSize), "to", copyConfig.container+":"+dstInfo.Path)
|
||||||
|
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue