mirror of
https://github.com/fumiama/dupimage.git
synced 2026-06-05 02:00:32 +08:00
170 lines
3.3 KiB
Go
170 lines
3.3 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"image"
|
|
"os"
|
|
"runtime"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
|
|
_ "image/gif"
|
|
_ "image/jpeg"
|
|
_ "image/png"
|
|
|
|
_ "golang.org/x/image/webp"
|
|
|
|
"github.com/corona10/goimagehash"
|
|
)
|
|
|
|
type imagecheck struct {
|
|
name string
|
|
dh *goimagehash.ImageHash
|
|
}
|
|
|
|
func (ic *imagecheck) String() string {
|
|
return ic.name
|
|
}
|
|
|
|
func main() {
|
|
tht := flag.Uint("t", 5, "duplicate throttle, max is 64")
|
|
dir := flag.String("d", "./", "work directory")
|
|
a := flag.Bool("a", false, "action sort")
|
|
h := flag.Bool("h", false, "display help")
|
|
flag.Parse()
|
|
if *h {
|
|
fmt.Println("Usage:", os.Args[0], "[-adht] ext1 ext2...")
|
|
flag.PrintDefaults()
|
|
fmt.Println(" exts\tmatching extensions")
|
|
os.Exit(0)
|
|
}
|
|
throttle := *tht
|
|
if throttle > 64 {
|
|
panic("invalid throttle")
|
|
}
|
|
exts := flag.Args()
|
|
for i, e := range exts {
|
|
exts[i] = strings.ToLower(e)
|
|
}
|
|
fmt.Println("match extension:", exts)
|
|
err := os.Chdir(*dir)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
imgs, err := os.ReadDir("./")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
action := *a
|
|
chklst := make([]imagecheck, 0, len(imgs))
|
|
fmt.Println("read", len(imgs), "files...")
|
|
wg := sync.WaitGroup{}
|
|
mu := sync.Mutex{}
|
|
part := len(imgs) / runtime.NumCPU()
|
|
wg.Add(runtime.NumCPU())
|
|
for i := 0; i < runtime.NumCPU(); i++ {
|
|
from := i * part
|
|
to := (i + 1) * part
|
|
if to > len(imgs) {
|
|
to = len(imgs)
|
|
}
|
|
isextinlist := func(n string) bool {
|
|
for _, e := range exts {
|
|
if strings.HasSuffix(strings.ToLower(n), e) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
go func(from, to int) {
|
|
for i := from; i < to; i++ {
|
|
img := imgs[i]
|
|
n := img.Name()
|
|
if !img.IsDir() && isextinlist(n) {
|
|
f, err := os.Open(n)
|
|
if err != nil {
|
|
fmt.Println("ERROR:", err)
|
|
continue
|
|
}
|
|
im, _, err := image.Decode(f)
|
|
if err != nil {
|
|
fmt.Println("ERROR:", err)
|
|
_ = f.Close()
|
|
continue
|
|
}
|
|
dh, err := goimagehash.DifferenceHash(im)
|
|
if err != nil {
|
|
fmt.Println("ERROR:", err)
|
|
_ = f.Close()
|
|
continue
|
|
}
|
|
mu.Lock()
|
|
chklst = append(chklst, imagecheck{
|
|
name: n,
|
|
dh: dh,
|
|
})
|
|
fmt.Print("scan: ", len(chklst), " / ", len(imgs), "\r")
|
|
mu.Unlock()
|
|
_ = f.Close()
|
|
}
|
|
}
|
|
wg.Done()
|
|
}(from, to)
|
|
}
|
|
wg.Wait()
|
|
fmt.Println("read file success, comparing...")
|
|
dups := make([][]*imagecheck, len(chklst))
|
|
wg.Add(len(chklst))
|
|
for i := 0; i < len(chklst); i++ {
|
|
go func(i int) {
|
|
for j := len(chklst) - 1; j > i; j-- {
|
|
dis, err := chklst[i].dh.Distance(chklst[j].dh)
|
|
if err != nil {
|
|
fmt.Println("ERROR:", err)
|
|
continue
|
|
}
|
|
if uint(dis) < throttle {
|
|
mu.Lock()
|
|
dups[i] = append(dups[i], &chklst[j])
|
|
mu.Unlock()
|
|
}
|
|
}
|
|
wg.Done()
|
|
}(i)
|
|
}
|
|
wg.Wait()
|
|
fmt.Println("compare file success")
|
|
hasfound := false
|
|
for i, lst := range dups {
|
|
if len(lst) > 0 {
|
|
dups[i] = append(dups[i], &chklst[i])
|
|
hasfound = true
|
|
}
|
|
}
|
|
if hasfound {
|
|
j := 0
|
|
for _, lst := range dups {
|
|
if len(lst) > 0 {
|
|
j++
|
|
fmt.Println("[", j, "] duplicate: ", lst)
|
|
if action {
|
|
newdir := strconv.Itoa(j)
|
|
err = os.MkdirAll(newdir, 0755)
|
|
if err != nil {
|
|
fmt.Println("ERROR:", err)
|
|
continue
|
|
}
|
|
for _, i := range lst {
|
|
err = os.Rename(i.name, newdir+"/"+i.name)
|
|
if err != nil {
|
|
fmt.Println("ERROR:", err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|