Last active
August 11, 2016 01:13
-
-
Save poppen/dddc9de2376dc299295dd2de43c39c5f to your computer and use it in GitHub Desktop.
Exercise: Web Crawler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
type Fetcher interface { | |
// Fetch returns the body of URL and | |
// a slice of URLs found on that page. | |
Fetch(url string) (body string, urls []string, err error) | |
} | |
type SafeCounter struct { | |
fetched map[string]int | |
mux sync.Mutex | |
} | |
func Crawl(url string, depth int, fetcher Fetcher, counter SafeCounter, ret chan string) { | |
defer close(ret) | |
if depth <= 0 { | |
return | |
} | |
counter.mux.Lock() | |
counter.fetched[url] = 1 | |
counter.mux.Unlock() | |
body, urls, err := fetcher.Fetch(url) | |
if err != nil { | |
ret <- err.Error() | |
return | |
} | |
ret <- fmt.Sprintf("found: %s %q", url, body) | |
result := make([]chan string, len(urls)) | |
for i, u := range urls { | |
if _, ok := counter.fetched[u]; ok == false { | |
result[i] = make(chan string) | |
go Crawl(u, depth-1, fetcher, counter, result[i]) | |
} | |
} | |
for i := range result { | |
if result[i] != nil { | |
for s := range result[i] { | |
ret <- s | |
} | |
} | |
} | |
return | |
} | |
func main() { | |
ch := make(chan string) | |
s := SafeCounter{} | |
s.fetched = make(map[string]int) | |
go Crawl("http://golang.org/", 4, fetcher, s, ch) | |
for s := range ch { | |
fmt.Println(s) | |
} | |
} | |
// fakeFetcher is Fetcher that returns canned results. | |
type fakeFetcher map[string]*fakeResult | |
type fakeResult struct { | |
body string | |
urls []string | |
} | |
func (f fakeFetcher) Fetch(url string) (string, []string, error) { | |
if res, ok := f[url]; ok { | |
return res.body, res.urls, nil | |
} | |
return "", nil, fmt.Errorf("not found: %s", url) | |
} | |
// fetcher is a populated fakeFetcher. | |
var fetcher = fakeFetcher{ | |
"http://golang.org/": &fakeResult{ | |
"The Go Programming Language", | |
[]string{ | |
"http://golang.org/pkg/", | |
"http://golang.org/cmd/", | |
}, | |
}, | |
"http://golang.org/pkg/": &fakeResult{ | |
"Packages", | |
[]string{ | |
"http://golang.org/", | |
"http://golang.org/cmd/", | |
"http://golang.org/pkg/fmt/", | |
"http://golang.org/pkg/os/", | |
}, | |
}, | |
"http://golang.org/pkg/fmt/": &fakeResult{ | |
"Package fmt", | |
[]string{ | |
"http://golang.org/", | |
"http://golang.org/pkg/", | |
}, | |
}, | |
"http://golang.org/pkg/os/": &fakeResult{ | |
"Package os", | |
[]string{ | |
"http://golang.org/", | |
"http://golang.org/pkg/", | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment