Last active
August 11, 2016 01:13
-
-
Save poppen/dddc9de2376dc299295dd2de43c39c5f to your computer and use it in GitHub Desktop.
Revisions
-
poppen renamed this gist
Aug 11, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
poppen revised this gist
Aug 11, 2016 . 1 changed file with 22 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package main import ( "fmt" "sync" ) type Fetcher interface { @@ -10,12 +11,21 @@ type Fetcher interface { 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() @@ -26,13 +36,17 @@ func Crawl(url string, depth int, fetcher Fetcher, ret chan string) { 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 } } } @@ -41,7 +55,9 @@ func Crawl(url string, depth int, fetcher Fetcher, ret chan string) { 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) -
poppen created this gist
Aug 11, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,98 @@ package main import ( "fmt" ) 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) } func Crawl(url string, depth int, fetcher Fetcher, ret chan string) { defer close(ret) if depth <= 0 { return } 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 { result[i] = make(chan string) go Crawl(u, depth-1, fetcher, result[i]) } for i := range result { for s := range result[i] { ret <- s } } return } func main() { ch := make(chan string) go Crawl("http://golang.org/", 4, fetcher, 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/", }, }, }