goduf.go
author Mikael Berthe <mikael@lilotux.net>
Sat, 13 Oct 2018 21:42:11 +0200
changeset 34 b70346ff153d
parent 25 129fd2cee200
child 35 730377b4449f
permissions -rw-r--r--
Split goduf.go into several files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
/*
34
b70346ff153d Split goduf.go into several files
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
     2
 * Copyright (C) 2014-2018 Mikael Berthe <mikael@lilotux.net>
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
 *
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
 * This program is free software; you can redistribute it and/or modify
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
 * it under the terms of the GNU General Public License as published by
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
 * the Free Software Foundation; either version 2 of the License, or (at
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
 * your option) any later version.
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
 *
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful, but
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
 * WITHOUT ANY WARRANTY; without even the implied warranty of
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
 * General Public License for more details.
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    13
 *
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    17
 * USA
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    18
 */
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    19
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    20
// This program (Goduf) is a fast duplicate file finder.
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    21
// Use goduf --help to get the list of available options.
25
129fd2cee200 Move comment
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
    22
//
24
40074e33c579 Add installation command line example
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    23
// Installation:
40074e33c579 Add installation command line example
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    24
//
40074e33c579 Add installation command line example
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    25
// % go get hg.lilotux.net/golang/mikael/goduf
40074e33c579 Add installation command line example
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    26
25
129fd2cee200 Move comment
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
    27
package main
129fd2cee200 Move comment
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
    28
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    29
import (
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    30
	"crypto/sha1"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    31
	"encoding/hex"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    32
	"errors"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    33
	"flag"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    34
	"fmt"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    35
	"io"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    36
	"os"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    37
	"path/filepath"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    38
	"sort"
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    39
)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    40
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    41
const medsumBytes = 128
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    42
const minSizePartialChecksum = 49152 // Should be > 3*medsumBytes
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    43
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    44
type sumType int
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    45
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    46
const (
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
    47
	noChecksum sumType = iota
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
    48
	fullChecksum
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    49
	partialChecksum
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    50
)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    51
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    52
type fileObj struct {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    53
	//Unique   bool
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    54
	FilePath string
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    55
	os.FileInfo
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    56
	PartialHash []byte
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    57
	Hash        []byte
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
    58
	needHash    sumType
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    59
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    60
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
    61
// FileObjList is only exported so that we can have a sort interface on inodes.
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    62
type FileObjList []*fileObj
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
    63
type foListList []FileObjList
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    64
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    65
type dataT struct {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    66
	totalSize   uint64
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    67
	cmpt        uint
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
    68
	sizeGroups  map[int64]*FileObjList
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    69
	emptyFiles  FileObjList
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    70
	ignoreCount int
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    71
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    72
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    73
var data dataT
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    74
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
    75
// Implement my own logger
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    76
var myLog myLogT
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    77
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
    78
// visit is called for every file and directory.
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
    79
// We check the file object is correct (regular, readable...) and add
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
    80
// it to the data.sizeGroups hash.
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    81
func visit(path string, f os.FileInfo, err error) error {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    82
	if err != nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    83
		if f == nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    84
			return err
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    85
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    86
		if f.IsDir() {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    87
			myLog.Println(-1, "Warning: cannot process directory:",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    88
				path)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    89
			return filepath.SkipDir
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    90
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    91
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    92
		myLog.Println(-1, "Ignoring ", path, " - ", err)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    93
		data.ignoreCount++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    94
		return nil
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    95
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    96
	if f.IsDir() {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    97
		return nil
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    98
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    99
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   100
	if mode := f.Mode(); mode&os.ModeType != 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   101
		if mode&os.ModeSymlink != 0 {
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   102
			myLog.Println(6, "Ignoring symbolic link", path)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   103
		} else {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   104
			myLog.Println(0, "Ignoring special file", path)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   105
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   106
		data.ignoreCount++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   107
		return nil
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   108
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   109
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   110
	data.cmpt++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   111
	data.totalSize += uint64(f.Size())
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   112
	fo := &fileObj{FilePath: path, FileInfo: f}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   113
	if _, ok := data.sizeGroups[f.Size()]; !ok {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   114
		data.sizeGroups[f.Size()] = new(FileObjList)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   115
	}
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   116
	*data.sizeGroups[f.Size()] = append(*data.sizeGroups[f.Size()], fo)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   117
	return nil
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   118
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   119
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   120
// Checksum computes the file's complete SHA1 hash.
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   121
func (fo *fileObj) Checksum() error {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   122
	file, err := os.Open(fo.FilePath)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   123
	if err != nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   124
		return err
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   125
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   126
	defer file.Close()
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   127
	hash := sha1.New()
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   128
	if size, err := io.Copy(hash, file); size != fo.Size() || err != nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   129
		if err == nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   130
			return errors.New("failed to read the whole file: " +
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   131
				fo.FilePath)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   132
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   133
		return err
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   134
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   135
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   136
	fo.Hash = hash.Sum(nil)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   137
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   138
	return nil
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   139
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   140
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   141
// partialChecksum computes the file's partial SHA1 hash (first and last bytes).
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   142
func (fo *fileObj) partialChecksum() error {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   143
	file, err := os.Open(fo.FilePath)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   144
	if err != nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   145
		return err
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   146
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   147
	defer file.Close()
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   148
	hash := sha1.New()
19
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   149
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   150
	// Read first bytes and last bytes from file
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   151
	for i := 0; i < 2; i++ {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   152
		if _, err := io.CopyN(hash, file, medsumBytes); err != nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   153
			if err == nil {
19
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   154
				const errmsg = "failed to read bytes from file: "
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   155
				return errors.New(errmsg + fo.FilePath)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   156
			}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   157
			return err
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   158
		}
19
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   159
		if i == 0 { // Seek to end of file
3389a17fc0d2 Remove duplicated code
Mikael Berthe <mikael@lilotux.net>
parents: 16
diff changeset
   160
			file.Seek(0-medsumBytes, 2)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   161
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   162
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   163
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   164
	fo.PartialHash = hash.Sum(nil)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   165
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   166
	return nil
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   167
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   168
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   169
// Sum computes the file's SHA1 hash, partial or full according to sType.
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   170
func (fo *fileObj) Sum(sType sumType) error {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   171
	if sType == partialChecksum {
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   172
		return fo.partialChecksum()
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   173
	} else if sType == fullChecksum {
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   174
		return fo.Checksum()
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   175
	} else if sType == noChecksum {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   176
		return nil
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   177
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   178
	panic("Internal error: Invalid sType")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   179
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   180
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   181
// dispCount display statistics to the user.
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   182
func (data *dataT) dispCount() { // It this still useful?
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   183
	if myLog.verbosity < 4 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   184
		return
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   185
	}
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   186
	var c1, c1b, c2 int
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   187
	var s1 string
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   188
	for _, scListP := range data.sizeGroups {
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   189
		c1 += len(*scListP)
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   190
		c2++
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   191
	}
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   192
	c1b = len(data.emptyFiles)
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   193
	if c1b > 0 {
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   194
		s1 = fmt.Sprintf("+%d", c1b)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   195
	}
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   196
	myLog.Printf(4, "  Current countdown: %d  [%d%s/%d]\n",
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   197
		c1+c1b, c1, s1, c2)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   198
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   199
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   200
// checksum returns the requested checksum as a string.
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   201
// If the checksum has not been pre-computed, it is calculated now.
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   202
func (fo fileObj) checksum(sType sumType) (string, error) {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   203
	var hbytes []byte
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   204
	if sType == partialChecksum {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   205
		hbytes = fo.PartialHash
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   206
	} else if sType == fullChecksum {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   207
		hbytes = fo.Hash
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   208
	} else {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   209
		panic("Internal error: Invalid sType")
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   210
	}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   211
	if hbytes == nil {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   212
		if err := fo.Sum(sType); err != nil {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   213
			return "", err
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   214
		}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   215
		if sType == partialChecksum {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   216
			hbytes = fo.PartialHash
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   217
		} else if sType == fullChecksum {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   218
			hbytes = fo.Hash
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   219
		}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   220
	}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   221
	return hex.EncodeToString(hbytes), nil
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   222
}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   223
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   224
// computeSheduledChecksums calculates the checksums for all the files
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   225
// from the fileLists slice items (the kind of hash is taken from the
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   226
// needHash field).
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   227
func computeSheduledChecksums(fileLists ...foListList) {
10
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   228
	var bigFileList FileObjList
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   229
	// Merge the lists of FileObjList lists and create a unique list
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   230
	// of file objects.
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   231
	for _, foll := range fileLists {
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   232
		for _, fol := range foll {
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   233
			bigFileList = append(bigFileList, fol...)
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   234
		}
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   235
	}
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   236
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   237
	// Sort the list for better efficiency
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   238
	sort.Sort(ByInode(bigFileList))
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   239
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   240
	// Compute checksums
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   241
	for _, fo := range bigFileList {
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   242
		if err := fo.Sum(fo.needHash); err != nil {
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   243
			myLog.Println(0, "Error:", err)
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   244
		}
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   245
		fo.needHash = noChecksum
10
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   246
	}
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   247
}
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   248
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   249
func (fileList FileObjList) scheduleChecksum(sType sumType) {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   250
	for _, fo := range fileList {
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   251
		fo.needHash = sType
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   252
	}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   253
}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   254
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   255
// findDupesChecksums splits the fileObj list into several lists with the
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   256
// same sType hash.
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   257
func (fileList FileObjList) findDupesChecksums(sType sumType, dryRun bool) foListList {
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   258
	var dupeList foListList
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   259
	var scheduleFull foListList
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   260
	hashes := make(map[string]FileObjList)
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   261
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   262
	// Sort the list for better efficiency
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   263
	sort.Sort(ByInode(fileList))
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   264
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   265
	if sType == fullChecksum && dryRun {
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   266
		fileList.scheduleChecksum(fullChecksum)
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   267
		return append(dupeList, fileList)
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   268
	}
7
68375cc98f98 Refactor checksum functions to reduce code duplication
Mikael Berthe <mikael@lilotux.net>
parents: 6
diff changeset
   269
	// Compute checksums
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   270
	for _, fo := range fileList {
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   271
		hash, err := fo.checksum(sType)
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   272
		if err != nil {
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   273
			myLog.Println(0, "Error:", err)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   274
			continue
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   275
		}
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   276
		hashes[hash] = append(hashes[hash], fo)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   277
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   278
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   279
	// Let's de-dupe now...
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   280
	for _, l := range hashes {
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   281
		if len(l) < 2 {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   282
			continue
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   283
		}
7
68375cc98f98 Refactor checksum functions to reduce code duplication
Mikael Berthe <mikael@lilotux.net>
parents: 6
diff changeset
   284
		if sType == partialChecksum {
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   285
			scheduleFull = append(scheduleFull, l)
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   286
		} else { // full checksums -> we're done
7
68375cc98f98 Refactor checksum functions to reduce code duplication
Mikael Berthe <mikael@lilotux.net>
parents: 6
diff changeset
   287
			dupeList = append(dupeList, l)
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   288
			myLog.Printf(5, "  . found %d new duplicates\n", len(l))
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   289
		}
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   290
	}
9
5b58342459eb Small optimization
Mikael Berthe <mikael@lilotux.net>
parents: 8
diff changeset
   291
	if sType == partialChecksum && len(scheduleFull) > 0 {
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   292
		//computeSheduledChecksums(scheduleFull)
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   293
		for _, l := range scheduleFull {
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   294
			r := l.findDupesChecksums(fullChecksum, dryRun)
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   295
			dupeList = append(dupeList, r...)
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   296
		}
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   297
		if dryRun {
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   298
			return scheduleFull
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   299
		}
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   300
	}
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   301
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   302
	return dupeList
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   303
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   304
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   305
// findDupes() uses checksums to find file duplicates
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   306
func (data *dataT) findDupes(skipPartial bool) foListList {
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   307
	var dupeList foListList
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   308
	var schedulePartial foListList
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   309
	var schedulePartial2 foListList
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   310
	var scheduleFull foListList
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   311
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   312
	for size, sgListP := range data.sizeGroups {
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   313
		// We skip partial checksums for small files or if requested
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   314
		if size > minSizePartialChecksum && !skipPartial {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   315
			sgListP.scheduleChecksum(partialChecksum)
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   316
			schedulePartial = append(schedulePartial, *sgListP)
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   317
		} else {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   318
			sgListP.scheduleChecksum(fullChecksum)
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   319
			scheduleFull = append(scheduleFull, *sgListP)
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   320
		}
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   321
	}
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   322
10
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   323
	computeSheduledChecksums(schedulePartial, scheduleFull)
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   324
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   325
	for _, l := range schedulePartial {
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   326
		r := l.findDupesChecksums(partialChecksum, true) // dry-run
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   327
		schedulePartial2 = append(schedulePartial2, r...)
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   328
	}
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   329
	computeSheduledChecksums(schedulePartial2)
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   330
	for _, l := range schedulePartial {
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   331
		r := l.findDupesChecksums(partialChecksum, false)
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   332
		dupeList = append(dupeList, r...)
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   333
	}
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   334
	for _, l := range scheduleFull {
22
46681d21157a Experimental optimization
Mikael Berthe <mikael@lilotux.net>
parents: 21
diff changeset
   335
		r := l.findDupesChecksums(fullChecksum, false)
8
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   336
		dupeList = append(dupeList, r...)
25ad96511395 Schedule checksum computations so that we reduce hard drive seeks
Mikael Berthe <mikael@lilotux.net>
parents: 7
diff changeset
   337
	}
6
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   338
	return dupeList
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   339
}
6740350569d3 Cosmetics - move function
Mikael Berthe <mikael@lilotux.net>
parents: 5
diff changeset
   340
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   341
// dropEmptyFiles removes the empty files from the main map, since we don't
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   342
// have to do any processing about them.
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   343
// If ignoreEmpty is false, the empty file list is saved in data.emptyFiles.
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   344
func (data *dataT) dropEmptyFiles(ignoreEmpty bool) (emptyCount int) {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   345
	sgListP, ok := data.sizeGroups[0]
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   346
	if ok == false {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   347
		return // no empty files
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   348
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   349
	if !ignoreEmpty {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   350
		if len(*sgListP) > 1 {
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   351
			data.emptyFiles = *sgListP
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   352
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   353
		delete(data.sizeGroups, 0)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   354
		return
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   355
	}
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   356
	emptyCount = len(*sgListP)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   357
	delete(data.sizeGroups, 0)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   358
	return
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   359
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   360
2
55098d552ae2 s/createSizeHash/initialCleanup/
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   361
// initialCleanup() removes files with unique size as well as hard links
55098d552ae2 s/createSizeHash/initialCleanup/
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   362
func (data *dataT) initialCleanup() (hardLinkCount, uniqueSizeCount int) {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   363
	for s, sgListP := range data.sizeGroups {
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   364
		if len(*sgListP) < 2 {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   365
			delete(data.sizeGroups, s)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   366
			uniqueSizeCount++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   367
			continue
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   368
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   369
10
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   370
		// We can't look for hard links if the O.S. does not support
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   371
		// them...
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   372
		if !OSHasInodes() {
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   373
			continue
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   374
		}
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   375
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   376
		var hardlinksFound bool
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   377
10
1ee01b135e0e Reduce code duplication related to computeSheduledChecksums()
Mikael Berthe <mikael@lilotux.net>
parents: 9
diff changeset
   378
		// Check for hard links
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   379
		// Remove unique dev/inodes
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   380
		// Instead of this loop, another way would be to use the field
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   381
		// "Unique" of the fileObj to mark them to be discarded
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   382
		// and remove them all at the end.
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   383
		// TODO: Should we also check for duplicate paths?
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   384
		for {
15
4e3a67dc70a0 Cosmetics (go fmt and comments...)
Mikael Berthe <mikael@lilotux.net>
parents: 14
diff changeset
   385
			type devinode struct{ dev, ino uint64 }
12
15e3580cfb8d Fix hard link detection
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   386
			devinodes := make(map[devinode]bool)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   387
			var hardLinkIndex int
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   388
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   389
			for i, fo := range *sgListP {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   390
				dev, ino := GetDevIno(fo)
15
4e3a67dc70a0 Cosmetics (go fmt and comments...)
Mikael Berthe <mikael@lilotux.net>
parents: 14
diff changeset
   391
				di := devinode{dev, ino}
12
15e3580cfb8d Fix hard link detection
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   392
				if _, hlink := devinodes[di]; hlink {
15e3580cfb8d Fix hard link detection
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   393
					hardLinkIndex = i
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   394
					hardLinkCount++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   395
					hardlinksFound = true
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   396
					break
12
15e3580cfb8d Fix hard link detection
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   397
				} else {
15e3580cfb8d Fix hard link detection
Mikael Berthe <mikael@lilotux.net>
parents: 10
diff changeset
   398
					devinodes[di] = true
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   399
				}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   400
			}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   401
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   402
			if hardLinkIndex == 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   403
				break
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   404
			}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   405
			i := hardLinkIndex
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   406
			// Remove hardink
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   407
			copy((*sgListP)[i:], (*sgListP)[i+1:])
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   408
			(*sgListP)[len(*sgListP)-1] = nil
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   409
			*sgListP = (*sgListP)[:len(*sgListP)-1]
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   410
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   411
		// We have found hard links in this size group,
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   412
		// maybe we can remove it
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   413
		if hardlinksFound {
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   414
			if len(*sgListP) < 2 {
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   415
				delete(data.sizeGroups, s)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   416
				uniqueSizeCount++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   417
				continue
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   418
			}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   419
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   420
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   421
	return
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   422
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   423
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   424
// formatSize returns the size in a string with a human-readable format.
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   425
func formatSize(sizeBytes uint64, short bool) string {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   426
	var units = map[int]string{
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   427
		0: "B",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   428
		1: "KiB",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   429
		2: "MiB",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   430
		3: "GiB",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   431
		4: "TiB",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   432
		5: "PiB",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   433
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   434
	humanSize := sizeBytes
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   435
	var n int
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   436
	for n < len(units)-1 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   437
		if humanSize < 10000 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   438
			break
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   439
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   440
		humanSize /= 1024
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   441
		n++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   442
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   443
	if n < 1 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   444
		return fmt.Sprintf("%d bytes", sizeBytes)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   445
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   446
	if short {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   447
		return fmt.Sprintf("%d %s", humanSize, units[n])
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   448
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   449
	return fmt.Sprintf("%d bytes (%d %s)", sizeBytes, humanSize, units[n])
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   450
}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   451
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   452
// It all starts here.
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   453
func main() {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   454
	var verbose bool
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   455
	var summary bool
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   456
	var skipPartial bool
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   457
	var ignoreEmpty bool
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   458
23
9ce0f2e2a33f Add an assertion on constant variables
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   459
	// Assertion on constant values
9ce0f2e2a33f Add an assertion on constant variables
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   460
	if minSizePartialChecksum <= 2*medsumBytes {
34
b70346ff153d Split goduf.go into several files
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   461
		myLog.Fatal("Internal error: assert minSizePartialChecksum > 2*medsumBytes")
23
9ce0f2e2a33f Add an assertion on constant variables
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   462
	}
9ce0f2e2a33f Add an assertion on constant variables
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   463
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   464
	// Command line parameters parsingg
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   465
	flag.BoolVar(&verbose, "verbose", false, "Be verbose (verbosity=1)")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   466
	flag.BoolVar(&verbose, "v", false, "See --verbose")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   467
	flag.BoolVar(&summary, "summary", false, "Do not display the duplicate list")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   468
	flag.BoolVar(&summary, "s", false, "See --summary")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   469
	flag.BoolVar(&skipPartial, "skip-partial", false, "Skip partial checksums")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   470
	flag.IntVar(&myLog.verbosity, "verbosity", 0,
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   471
		"Set verbosity level (1-6)")
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   472
	flag.IntVar(&myLog.verbosity, "vl", 0, "See verbosity")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   473
	timings := flag.Bool("timings", false, "Set detailed log timings")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   474
	flag.BoolVar(&ignoreEmpty, "no-empty", false, "Ignore empty files")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   475
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   476
	flag.Parse()
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   477
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   478
	// Set verbosity: --verbose=true == --verbosity=1
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   479
	if myLog.verbosity > 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   480
		verbose = true
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   481
	} else if verbose == true {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   482
		myLog.verbosity = 1
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   483
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   484
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   485
	if len(flag.Args()) == 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   486
		// TODO: more helpful usage statement
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   487
		myLog.Println(-1, "Usage:", os.Args[0],
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   488
			"[options] base_directory|file...")
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   489
		os.Exit(0)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   490
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   491
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   492
	// Change log format for benchmarking
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   493
	if *timings {
34
b70346ff153d Split goduf.go into several files
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   494
		myLog.SetBenchFlags()
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   495
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   496
14
ea4286b6c4b1 Get rid of the now useless sizeClass structure
Mikael Berthe <mikael@lilotux.net>
parents: 13
diff changeset
   497
	data.sizeGroups = make(map[int64]*FileObjList)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   498
	myLog.Println(1, "* Reading file metadata")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   499
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   500
	for _, root := range flag.Args() {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   501
		if err := filepath.Walk(root, visit); err != nil {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   502
			myLog.Printf(-1, "* Error: could not read file tree:\n")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   503
			myLog.Printf(-1, "> %v\n", err)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   504
			os.Exit(1)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   505
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   506
	}
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   507
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   508
	// Count empty files and drop them if they should be ignored
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   509
	emptyCount := data.dropEmptyFiles(ignoreEmpty)
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   510
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   511
	// Display a small report
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   512
	if verbose {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   513
		if data.ignoreCount > 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   514
			myLog.Printf(1, "  %d special files were ignored\n",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   515
				data.ignoreCount)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   516
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   517
		myLog.Println(2, "  Initial counter:", data.cmpt, "files")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   518
		myLog.Println(2, "  Total size:", formatSize(data.totalSize,
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   519
			false))
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   520
		if emptyCount > 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   521
			myLog.Printf(1, "  %d empty files were ignored\n",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   522
				emptyCount)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   523
		}
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   524
		data.dispCount()
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   525
		myLog.Println(3, "* Number of size groups:", len(data.sizeGroups))
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   526
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   527
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   528
	// Remove unique sizes and hard links
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   529
	myLog.Println(1, "* Removing files with unique size and hard links...")
2
55098d552ae2 s/createSizeHash/initialCleanup/
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
   530
	hardLinkCount, uniqueSizeCount := data.initialCleanup()
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   531
	if verbose {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   532
		myLog.Printf(2, "  Dropped %d files with unique size\n",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   533
			uniqueSizeCount)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   534
		myLog.Printf(2, "  Dropped %d hard links\n", hardLinkCount)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   535
		myLog.Println(3, "* Number of size groups:", len(data.sizeGroups))
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   536
		data.dispCount()
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   537
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   538
20
f7ce9d750e83 Better documentation
Mikael Berthe <mikael@lilotux.net>
parents: 19
diff changeset
   539
	// Get the final list of dupes, using checksums
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   540
	myLog.Println(1, "* Computing checksums...")
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   541
	var result foListList
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   542
	if len(data.emptyFiles) > 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   543
		result = append(result, data.emptyFiles)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   544
	}
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   545
	result = append(result, data.findDupes(skipPartial)...)
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   546
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   547
	myLog.Println(3, "* Number of match groups:", len(result))
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   548
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   549
	// Done!  Dump dupes
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   550
	if len(result) > 0 && !summary {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   551
		myLog.Println(1, "* Dupes:")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   552
	}
21
dee0e0c1ad10 Improve file sorting
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   553
dee0e0c1ad10 Improve file sorting
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   554
	// Sort files by path inside each group
dee0e0c1ad10 Improve file sorting
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   555
	for _, l := range result {
dee0e0c1ad10 Improve file sorting
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   556
		sort.Sort(byFilePathName(l))
dee0e0c1ad10 Improve file sorting
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   557
	}
dee0e0c1ad10 Improve file sorting
Mikael Berthe <mikael@lilotux.net>
parents: 20
diff changeset
   558
	// Sort groups by increasing size (of the duplicated files)
16
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   559
	sort.Sort(byGroupFileSize(result))
cc0ee80cf216 Sort results
Mikael Berthe <mikael@lilotux.net>
parents: 15
diff changeset
   560
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   561
	var dupeSize uint64
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   562
	data.cmpt = 0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   563
	for i, l := range result {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   564
		size := uint64(l[0].Size())
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   565
		// We do not count the size of the 1st item
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   566
		// so we get only duplicate size.
5
887c21c26cc8 Refactor the checksum part
Mikael Berthe <mikael@lilotux.net>
parents: 2
diff changeset
   567
		dupeSize += size * uint64(len(l)-1)
0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   568
		if !summary {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   569
			fmt.Printf("\nGroup #%d (%d files * %v):\n", i+1,
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   570
				len(l), formatSize(size, true))
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   571
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   572
		for _, f := range l {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   573
			if !summary {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   574
				fmt.Println(f.FilePath)
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   575
			}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   576
			data.cmpt++
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   577
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   578
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   579
	summaryLevel := 1 // Default verbosity for the summary line
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   580
	if summary == false {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   581
		// Add a trailing newline
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   582
		if len(result) > 0 {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   583
			fmt.Println("")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   584
		}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   585
	} else {
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   586
		// The summary is requested so we lower the verbosity level
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   587
		summaryLevel = 0
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   588
	}
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   589
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   590
	myLog.Println(summaryLevel, "Final count:", data.cmpt,
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   591
		"duplicate files in", len(result), "sets")
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   592
	myLog.Println(summaryLevel, "Redundant data size:",
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   593
		formatSize(dupeSize, false))
a5642cd03cef Goduf - initial version-controlled revision
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
   594
}