mirror of
https://github.com/minio/mc.git
synced 2025-11-13 12:22:45 +03:00
211 lines
6.5 KiB
Go
211 lines
6.5 KiB
Go
/*
|
||
* Minio Client (C) 2015 Minio, Inc.
|
||
*
|
||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
* you may not use this file except in compliance with the License.
|
||
* You may obtain a copy of the License at
|
||
*
|
||
* http://www.apache.org/licenses/LICENSE-2.0
|
||
*
|
||
* Unless required by applicable law or agreed to in writing, software
|
||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
* See the License for the specific language governing permissions and
|
||
* limitations under the License.
|
||
*/
|
||
|
||
package main
|
||
|
||
import (
|
||
"fmt"
|
||
"path/filepath"
|
||
"strings"
|
||
"sync"
|
||
|
||
"github.com/minio/cli"
|
||
"github.com/minio/mc/pkg/client"
|
||
"github.com/minio/minio/pkg/probe"
|
||
"github.com/tchap/go-patricia/patricia"
|
||
)
|
||
|
||
type mirrorURLs struct {
|
||
SourceContent *client.Content
|
||
TargetContents []*client.Content
|
||
Error *probe.Error `json:"-"`
|
||
}
|
||
|
||
func (m mirrorURLs) isEmpty() bool {
|
||
if m.SourceContent == nil && len(m.TargetContents) == 0 && m.Error == nil {
|
||
return true
|
||
}
|
||
if m.SourceContent.Size == 0 && len(m.TargetContents) == 0 && m.Error == nil {
|
||
return true
|
||
}
|
||
return false
|
||
}
|
||
|
||
//
|
||
// * MIRROR ARGS - VALID CASES
|
||
// =========================
|
||
// mirror(d1..., [](d2)) -> []mirror(d1/f, [](d2/d1/f))
|
||
|
||
// checkMirrorSyntax(URLs []string)
|
||
func checkMirrorSyntax(ctx *cli.Context) {
|
||
if len(ctx.Args()) < 2 || ctx.Args().First() == "help" {
|
||
cli.ShowCommandHelpAndExit(ctx, "mirror", 1) // last argument is exit code.
|
||
}
|
||
|
||
// extract URLs.
|
||
URLs, err := args2URLs(ctx.Args())
|
||
fatalIf(err.Trace(ctx.Args()...), "Unable to parse arguments.")
|
||
|
||
srcURL := URLs[0]
|
||
tgtURLs := URLs[1:]
|
||
|
||
/****** Generic rules *******/
|
||
// Recursive source URL.
|
||
newSrcURL := stripRecursiveURL(srcURL)
|
||
_, srcContent, err := url2Stat(newSrcURL)
|
||
fatalIf(err.Trace(srcURL), "Unable to stat source ‘"+newSrcURL+"’.")
|
||
|
||
if !srcContent.Type.IsDir() {
|
||
fatalIf(errInvalidArgument().Trace(srcContent.Name, srcContent.Type.String()), fmt.Sprintf("Source ‘%s’ is not a folder. Only folders are supported by mirror.", srcURL))
|
||
}
|
||
|
||
if len(tgtURLs) == 0 && tgtURLs == nil {
|
||
fatalIf(errInvalidArgument().Trace(), "Invalid number of target arguments to mirror command.")
|
||
}
|
||
|
||
for _, tgtURL := range tgtURLs {
|
||
// Recursive URLs are not allowed in target.
|
||
if isURLRecursive(tgtURL) {
|
||
fatalIf(errDummy().Trace(), fmt.Sprintf("Recursive option is not supported for target ‘%s’ argument.", tgtURL))
|
||
}
|
||
|
||
url := client.NewURL(tgtURL)
|
||
if url.Host != "" {
|
||
if url.Path == string(url.Separator) {
|
||
fatalIf(errInvalidArgument().Trace(), fmt.Sprintf("Target ‘%s’ does not contain bucket name.", tgtURL))
|
||
}
|
||
}
|
||
|
||
_, content, err := url2Stat(tgtURL)
|
||
fatalIf(err.Trace(tgtURL), "Unable to stat target ‘"+tgtURL+"’.")
|
||
if !content.Type.IsDir() {
|
||
fatalIf(errInvalidArgument().Trace(), "Target ‘"+tgtURL+"’ is not a folder.")
|
||
}
|
||
}
|
||
}
|
||
|
||
func deltaSourceTargets(sourceClnt client.Client, targetClnts []client.Client) <-chan mirrorURLs {
|
||
mirrorURLsCh := make(chan mirrorURLs)
|
||
go func() {
|
||
defer close(mirrorURLsCh)
|
||
sourceTrie := patricia.NewTrie()
|
||
targetTries := make([]*patricia.Trie, len(targetClnts))
|
||
wg := new(sync.WaitGroup)
|
||
|
||
wg.Add(1)
|
||
go func() {
|
||
defer wg.Done()
|
||
for sourceContentCh := range sourceClnt.List(true) {
|
||
if sourceContentCh.Err != nil {
|
||
mirrorURLsCh <- mirrorURLs{Error: sourceContentCh.Err.Trace()}
|
||
return
|
||
}
|
||
if sourceContentCh.Content.Type.IsRegular() {
|
||
sourceTrie.Insert(patricia.Prefix(sourceContentCh.Content.Name), sourceContentCh.Content.Size)
|
||
}
|
||
}
|
||
}()
|
||
|
||
for i, targetClnt := range targetClnts {
|
||
wg.Add(1)
|
||
go func(i int, targetClnt client.Client) {
|
||
defer wg.Done()
|
||
targetTrie := patricia.NewTrie()
|
||
for targetContentCh := range targetClnt.List(true) {
|
||
if targetContentCh.Err != nil {
|
||
mirrorURLsCh <- mirrorURLs{Error: targetContentCh.Err.Trace()}
|
||
continue
|
||
}
|
||
if targetContentCh.Content.Type.IsRegular() {
|
||
targetTrie.Insert(patricia.Prefix(targetContentCh.Content.Name), struct{}{})
|
||
}
|
||
}
|
||
targetTries[i] = targetTrie
|
||
}(i, targetClnt)
|
||
}
|
||
wg.Wait()
|
||
|
||
matchNameCh := make(chan string, 10000)
|
||
go func(matchNameCh chan<- string) {
|
||
itemFunc := func(prefix patricia.Prefix, item patricia.Item) error {
|
||
matchNameCh <- string(prefix)
|
||
return nil
|
||
}
|
||
sourceTrie.Visit(itemFunc)
|
||
defer close(matchNameCh)
|
||
}(matchNameCh)
|
||
for matchName := range matchNameCh {
|
||
sourceContent := new(client.Content)
|
||
var targetContents []*client.Content
|
||
for i, targetTrie := range targetTries {
|
||
if !targetTrie.Match(patricia.Prefix(matchName)) {
|
||
sourceURLDelimited := sourceClnt.URL().String()[:strings.LastIndex(sourceClnt.URL().String(),
|
||
string(sourceClnt.URL().Separator))+1]
|
||
newTargetURLParse := *targetClnts[i].URL()
|
||
newTargetURLParse.Path = filepath.Join(newTargetURLParse.Path, matchName)
|
||
sourceContent.Size = sourceTrie.Get(patricia.Prefix(matchName)).(int64)
|
||
sourceContent.Name = sourceURLDelimited + matchName
|
||
targetContents = append(targetContents, &client.Content{Name: newTargetURLParse.String()})
|
||
}
|
||
}
|
||
mirrorURLsCh <- mirrorURLs{
|
||
SourceContent: sourceContent,
|
||
TargetContents: targetContents,
|
||
}
|
||
}
|
||
}()
|
||
return mirrorURLsCh
|
||
}
|
||
|
||
// prepareMirrorURLs - prepares target and source URLs for mirroring.
|
||
func prepareMirrorURLs(sourceURL string, targetURLs []string) <-chan mirrorURLs {
|
||
mirrorURLsCh := make(chan mirrorURLs)
|
||
|
||
go func() {
|
||
defer close(mirrorURLsCh)
|
||
sourceClnt, err := url2Client(stripRecursiveURL(sourceURL))
|
||
if err != nil {
|
||
mirrorURLsCh <- mirrorURLs{Error: err.Trace(sourceURL)}
|
||
return
|
||
}
|
||
targetClnts := make([]client.Client, len(targetURLs))
|
||
for i, targetURL := range targetURLs {
|
||
targetClnt, targetContent, err := url2Stat(targetURL)
|
||
if err != nil {
|
||
mirrorURLsCh <- mirrorURLs{Error: err.Trace(targetURL)}
|
||
return
|
||
}
|
||
// if one of the targets is not dir exit
|
||
if !targetContent.Type.IsDir() {
|
||
mirrorURLsCh <- mirrorURLs{Error: errInvalidTarget(targetURL).Trace()}
|
||
return
|
||
}
|
||
// special case, be extremely careful before changing this behavior - will lead to data loss
|
||
newTargetURL := strings.TrimSuffix(targetURL, string(targetClnt.URL().Separator)) + string(targetClnt.URL().Separator)
|
||
targetClnt, err = url2Client(newTargetURL)
|
||
if err != nil {
|
||
mirrorURLsCh <- mirrorURLs{Error: err.Trace(newTargetURL)}
|
||
return
|
||
}
|
||
targetClnts[i] = targetClnt
|
||
}
|
||
for sURLs := range deltaSourceTargets(sourceClnt, targetClnts) {
|
||
mirrorURLsCh <- sURLs
|
||
}
|
||
}()
|
||
return mirrorURLsCh
|
||
}
|