-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrie.go
63 lines (52 loc) · 1.13 KB
/
trie.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
package main
import (
"sync"
)
//trie--------------------------------------------------------
type trie struct {
Info string `json:"i"` //root:version path:last update time
Root *item `json:"r"`
smap *safemap
}
func new_trie(path, info string) *trie {
t := &trie{
Root: new_item(path),
Info: info,
smap: new_safemap(),
}
err := t.scan()
if err != nil {
panic(err.Error())
}
return t
}
func (this *trie) scan() error {
if this == nil {
panic("the trie is nil")
}
t, err := this.Root.scan(this.smap)
if this.Info == "time" {
this.Info = stamptime(t)
}
return err
}
//similar
func (this *trie) similar(query string, arr *[]*pointer) {
for _, v := range this.Root.Children {
v.similar(query, arr, this.smap)
}
}
//new2
func (this *trie) query(pkg string, folds *int32, wg *sync.WaitGroup, c_pkg_gofile chan<- string) {
if this == nil {
panic("the trie is nil")
}
if this.smap == nil {
this.smap = new_safemap()
this.Root.rebuild_map(this.smap)
}
go func() {
defer wg.Done()
this.Root.query(pkg, folds, this.smap, c_pkg_gofile)
}()
}