Minor cleanup

This commit is contained in:
Richard Patel 2018-12-18 15:31:33 +01:00
parent 4b8275c7bf
commit b244cdae80
No known key found for this signature in database
GPG Key ID: C268B2BBDA2ABECB
3 changed files with 11 additions and 13 deletions

View File

@ -21,8 +21,6 @@ var config struct {
Workers int
UserAgent string
Tasks int32
CrawlStats time.Duration
AllocStats time.Duration
Verbose bool
PrintHTTP bool
JobBufferSize int
@ -125,10 +123,6 @@ func readConfig() {
config.JobBufferSize = viper.GetInt(ConfJobBufferSize)
config.CrawlStats = viper.GetDuration(ConfCrawlStats)
config.AllocStats = viper.GetDuration(ConfAllocStats)
config.Verbose = viper.GetBool(ConfVerbose)
if config.Verbose {
logrus.SetLevel(logrus.DebugLevel)

View File

@ -3,6 +3,7 @@ package main
import (
"context"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
"math"
"runtime"
"sync/atomic"
@ -19,11 +20,14 @@ func Stats(c context.Context) {
var crawlTicker <-chan time.Time
var allocTicker <-chan time.Time
if config.CrawlStats != 0 {
crawlTicker = time.NewTicker(config.CrawlStats).C
crawlInterval := viper.GetDuration(ConfCrawlStats)
allocInterval := viper.GetDuration(ConfAllocStats)
if crawlInterval != 0 {
crawlTicker = time.Tick(crawlInterval)
}
if config.AllocStats != 0 {
allocTicker = time.NewTicker(config.AllocStats).C
if allocInterval != 0 {
allocTicker = time.Tick(allocInterval)
}
for {
@ -32,7 +36,7 @@ func Stats(c context.Context) {
startedNow := atomic.LoadUint64(&totalStarted)
perSecond := float64(startedNow - startedLast) /
config.CrawlStats.Seconds()
crawlInterval.Seconds()
// Round to .5
perSecond *= 2

View File

@ -42,7 +42,7 @@ func (w *WorkerContext) Worker(results chan<- File) {
}
func (w *WorkerContext) step(results chan<- File, job Job) {
defer w.finishJob(&job)
defer w.finishJob()
var f File
@ -175,7 +175,7 @@ func (w *WorkerContext) queueJob(job Job) {
}
}
func (w *WorkerContext) finishJob(job *Job) {
func (w *WorkerContext) finishJob() {
w.OD.Wait.Done()
}