-
Notifications
You must be signed in to change notification settings - Fork 1
/
fileFinder.go
125 lines (102 loc) · 2.11 KB
/
fileFinder.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
)
type FileInfo struct {
os.FileInfo
dir string
}
type fileCollection struct {
Movies []FileInfo
Subs []FileInfo
Err error
}
func extractFiles(files []FileInfo) fileCollection {
movies := make([]FileInfo, 0)
subs := make([]FileInfo, 0)
movieExtensions := map[string]bool{
".avi": true,
".mkv": true,
".mp4": true,
".ts": true,
}
subExtensions := map[string]bool{
".srt": true,
".sub": true,
".sbv": true,
}
for _, file := range files {
ext := filepath.Ext(file.Name())
if _, ok := movieExtensions[ext]; ok {
movies = append(movies, file)
} else if _, okSub := subExtensions[ext]; okSub {
subs = append(subs, file)
} else {
fmt.Println("Skipping file", file.Name(), "Unknown extension!")
}
}
fc := fileCollection{
movies,
subs,
nil,
}
return fc
}
// directory scanner used in "-r" flag
func rDirectoryScanner(dir string) (chan []FileInfo, error) {
files, err := ioutil.ReadDir(dir)
if err != nil {
return nil, err
}
fileChan := make(chan []FileInfo)
directoriesToScan := make([]string, 0)
go func() {
fileCollection := make([]FileInfo, 0)
for _, file := range files {
if file.IsDir() {
directoriesToScan = append(
directoriesToScan,
dir+string(os.PathSeparator)+file.Name(),
)
} else {
fileInfo := FileInfo{
file,
dir,
}
fileCollection = append(fileCollection, fileInfo)
}
}
fileChan <- fileCollection
for _, rDir := range directoriesToScan {
rChan, _ := rDirectoryScanner(rDir)
for rFileChanData := range rChan {
fileChan <- rFileChanData
}
}
close(fileChan)
}()
return fileChan, nil
}
func directoryScanner(dir string) (chan []FileInfo, error) {
files, err := ioutil.ReadDir(dir)
if err != nil {
return nil, err
}
fileChan := make(chan []FileInfo)
go func() {
fileCollection := make([]FileInfo, 0)
for _, file := range files {
fileInfo := FileInfo{
file,
dir,
}
fileCollection = append(fileCollection, fileInfo)
}
fileChan <- fileCollection
close(fileChan)
}()
return fileChan, nil
}