forked from ipfs-search/ipfs-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
209 lines (169 loc) · 4.04 KB
/
main.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
Search engine for IPFS using Elasticsearch, RabbitMQ and Tika.
*/
package main
import (
"fmt"
"github.com/ipfs-search/ipfs-search/crawler"
"github.com/ipfs-search/ipfs-search/indexer"
"github.com/ipfs-search/ipfs-search/queue"
"github.com/ipfs/go-ipfs-api"
"golang.org/x/net/context"
"gopkg.in/olivere/elastic.v5"
"gopkg.in/urfave/cli.v1"
"log"
"os"
"time"
)
// TODO: Read this from configuration file.
const (
ipfsAPI = "localhost:5001"
hashWorkers = 140
fileWorkers = 120
ipfsTimeout = 360 * time.Duration(time.Second)
hashWait = time.Duration(100 * time.Millisecond)
fileWait = hashWait
)
func main() {
// Prefix logging with filename and line number: "d.go:23"
// log.SetFlags(log.Lshortfile)
// Logging w/o prefix
log.SetFlags(0)
app := cli.NewApp()
app.Name = "ipfs-search"
app.Usage = "IPFS search engine."
app.Commands = []cli.Command{
{
Name: "add",
Aliases: []string{"a"},
Usage: "add `HASH` to crawler queue",
Action: add,
},
{
Name: "crawl",
Aliases: []string{"c"},
Usage: "start crawler",
Action: crawl,
},
}
app.Run(os.Args)
}
func getElastic() (*elastic.Client, error) {
el, err := elastic.NewClient()
if err != nil {
return nil, err
}
exists, err := el.IndexExists("ipfs").Do(context.TODO())
if err != nil {
return nil, err
}
if !exists {
// Index does not exist yet, create
el.CreateIndex("ipfs")
}
return el, nil
}
func add(c *cli.Context) error {
if c.NArg() != 1 {
return cli.NewExitError("Please supply one hash as argument.", 1)
}
hash := c.Args().Get(0)
fmt.Printf("Adding hash '%s' to queue\n", hash)
ch, err := queue.NewChannel()
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
defer ch.Close()
queue, err := queue.NewTaskQueue(ch, "hashes")
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
err = queue.AddTask(map[string]interface{}{
"hash": hash,
})
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
return nil
}
func crawl(c *cli.Context) error {
// For now, assume gateway running on default host:port
sh := shell.NewShell(ipfsAPI)
// Set 1 minute timeout on IPFS requests
sh.SetTimeout(ipfsTimeout)
el, err := getElastic()
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
addCh, err := queue.NewChannel()
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
defer addCh.Close()
hq, err := queue.NewTaskQueue(addCh, "hashes")
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
fq, err := queue.NewTaskQueue(addCh, "files")
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
id := indexer.NewIndexer(el)
crawli := crawler.NewCrawler(sh, id, fq, hq)
errc := make(chan error, 1)
for i := 0; i < hashWorkers; i++ {
// Now create queues and channel for workers
ch, err := queue.NewChannel()
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
defer ch.Close()
hq, err := queue.NewTaskQueue(ch, "hashes")
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
hq.StartConsumer(func(params interface{}) error {
args := params.(*crawler.Args)
return crawli.CrawlHash(
args.Hash,
args.Name,
args.ParentHash,
args.ParentName,
)
}, &crawler.Args{}, errc)
// Start workers timeout/hash time apart
time.Sleep(hashWait)
}
for i := 0; i < fileWorkers; i++ {
ch, err := queue.NewChannel()
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
defer ch.Close()
fq, err := queue.NewTaskQueue(ch, "files")
if err != nil {
return cli.NewExitError(err.Error(), 1)
}
fq.StartConsumer(func(params interface{}) error {
args := params.(*crawler.Args)
return crawli.CrawlFile(
args.Hash,
args.Name,
args.ParentHash,
args.ParentName,
args.Size,
)
}, &crawler.Args{}, errc)
// Start workers timeout/hash time apart
time.Sleep(fileWait)
}
// sigs := make(chan os.Signal, 1)
// signal.Notify(sigs, syscall.SIGQUIT)
log.Printf(" [*] Waiting for messages. To exit press CTRL+C")
for {
select {
case err = <-errc:
log.Printf("%T: %v", err, err)
}
}
}