Skip to content

Instantly share code, notes, and snippets.

@muaazsaleem
Created October 23, 2016 07:01
Show Gist options
  • Save muaazsaleem/02ce0d9bd2545367ccb732a8a665836b to your computer and use it in GitHub Desktop.
Save muaazsaleem/02ce0d9bd2545367ccb732a8a665836b 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)
}
type SafeMap struct {
m map[string]bool
mux sync.Mutex
}
func (m *SafeMap) Set(key string) {
m.mux.Lock()
m.m[key] = true
m.mux.Unlock()
}
func (m *SafeMap) Value(key string) bool {
m.mux.Lock()
// Lock so only one goroutine at a time can access the map c.v.
defer m.mux.Unlock()
return m.m[key]
}
// Crawl uses fetcher to recursively crawl
// pages starting with url, to a maximum of depth.
func Crawl(url string, depth int, fetcher Fetcher, crawledUrls *SafeMap) {
var wg sync.WaitGroup
var crawlParallel func(string, int)
crawlParallel = func(url string, depth int) {
defer wg.Done()
if depth <= 0 {
return
}
if crawledUrls.Value(url) {
fmt.Println("Skipping already crawled: ", url)
return
}
body, urls, err := fetcher.Fetch(url)
if err != nil {
fmt.Println(err)
return
}
crawledUrls.Set(url)
fmt.Printf("found: %s %q\n", url, body)
for _, u := range urls {
wg.Add(1)
go crawlParallel(u, depth-1)
}
}
wg.Add(1)
crawlParallel(url, depth)
wg.Wait()
}
func main() {
crawledUrls := SafeMap{m: make(map[string]bool)}
Crawl("http://golang.org/", 4, fetcher, &crawledUrls)
}
// 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