Skip to content

Instantly share code, notes, and snippets.

@mrfade
Created October 23, 2022 00:11
Show Gist options
  • Save mrfade/d2b97e1e4e76b9b07f8b9890292854a4 to your computer and use it in GitHub Desktop.
Save mrfade/d2b97e1e4e76b9b07f8b9890292854a4 to your computer and use it in GitHub Desktop.
A Tour of Go Exercise: Web Crawler
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)
}
// Crawl uses fetcher to recursively crawl
// pages starting with url, to a maximum of depth.
func Crawl(url string, depth int, fetcher Fetcher) {
links := make(map[string]bool)
var mu sync.Mutex
var wg sync.WaitGroup
wg.Add(1)
go _crawl("https://golang.org/", 4, fetcher, links, &mu, &wg)
wg.Wait()
}
func _crawl(url string, depth int, fetcher Fetcher, links map[string]bool, mu *sync.Mutex, wg *sync.WaitGroup) {
defer wg.Done()
if depth <= 0 {
return
}
mu.Lock()
if _, ok := links[url]; ok {
mu.Unlock()
return
}
links[url] = true
mu.Unlock()
body, urls, err := fetcher.Fetch(url)
if err != nil {
fmt.Println(err)
return
}
fmt.Printf("found: %s %q\n", url, body)
for _, u := range urls {
wg.Add(1)
go _crawl(u, depth-1, fetcher, links, mu, wg)
}
return
}
func main() {
Crawl("https://golang.org/", 4, fetcher)
}
// 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{
"https://golang.org/": &fakeResult{
"The Go Programming Language",
[]string{
"https://golang.org/pkg/",
"https://golang.org/cmd/",
},
},
"https://golang.org/pkg/": &fakeResult{
"Packages",
[]string{
"https://golang.org/",
"https://golang.org/cmd/",
"https://golang.org/pkg/fmt/",
"https://golang.org/pkg/os/",
},
},
"https://golang.org/pkg/fmt/": &fakeResult{
"Package fmt",
[]string{
"https://golang.org/",
"https://golang.org/pkg/",
},
},
"https://golang.org/pkg/os/": &fakeResult{
"Package os",
[]string{
"https://golang.org/",
"https://golang.org/pkg/",
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment