-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobs.go
54 lines (48 loc) · 1.24 KB
/
jobs.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
package mapreduce
// Job is a single unit of work to produce a single output during a map reduce process
// MapReduce takes multiple jobs and runs them concurrently on the set of files
// ensuring that files are only opened once per MapReduce, rather than once per job
//
// Each Job has an identifying name, and a Filter that chooses what files it will operate on
// Each matching file will be passed to a Mapper which
type Job struct {
Name string
BatchSize int
Filter
DirectoryFiles Filter
Mapper
Sorter
Reducer
Finalizer
jobIndex int
}
// Jobs are a list of Jobs
type Jobs []Job
// Names returns a list of Job names
func (j Jobs) Names() []string {
n := make([]string, len(j))
for i, job := range j {
n[i] = job.Name
}
return n
}
// Potential returns the list of jobs that could potentially match a path
func (j Jobs) Potential(path string) Jobs {
results := make(Jobs, 0, len(j))
for _, job := range j {
if job.Filter.CouldMatch(path) {
results = append(results, job)
}
}
return results
}
// Matches returns the jobs that match a path
func (j Jobs) Matches(path string) Jobs {
results := make(Jobs, 0, len(j))
for _, job := range j {
if job.Filter.Match(path) {
results = append(results, job)
}
}
return results
}