Fast Link Checker for Markdown and HTML in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
709 B

package main
import (
"sync"
"time"
"github.com/valyala/fasthttp"
)
type urlChecker struct {
timeout time.Duration
semaphore semaphore
}
func newURLChecker(t time.Duration, s semaphore) urlChecker {
return urlChecker{t, s}
}
func (c urlChecker) Check(u string) error {
c.semaphore.Request()
defer c.semaphore.Release()
if c.timeout == 0 {
_, _, err := fasthttp.Get(nil, u)
return err
}
_, _, err := fasthttp.GetTimeout(nil, u, c.timeout)
return err
}
func (c urlChecker) CheckMany(us []string, rc chan<- urlResult) {
wg := sync.WaitGroup{}
for _, s := range us {
wg.Add(1)
go func(s string) {
rc <- urlResult{s, c.Check(s)}
wg.Done()
}(s)
}
wg.Wait()
close(rc)
}