mirror of
https://github.com/miniflux/v2.git
synced 2025-08-31 18:31:01 +00:00
Replace daemon and scheduler package with service package
This commit is contained in:
parent
ca45765c46
commit
487852f07e
16 changed files with 287 additions and 275 deletions
10
worker/doc.go
Normal file
10
worker/doc.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
||||
// Use of this source code is governed by the Apache 2.0
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
/*
|
||||
|
||||
Package worker implements the background workers.
|
||||
|
||||
*/
|
||||
package worker // import "miniflux.app/worker"
|
36
worker/pool.go
Normal file
36
worker/pool.go
Normal file
|
@ -0,0 +1,36 @@
|
|||
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
||||
// Use of this source code is governed by the Apache 2.0
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package worker // import "miniflux.app/worker"
|
||||
|
||||
import (
|
||||
"miniflux.app/model"
|
||||
"miniflux.app/reader/feed"
|
||||
)
|
||||
|
||||
// Pool handles a pool of workers.
|
||||
type Pool struct {
|
||||
queue chan model.Job
|
||||
}
|
||||
|
||||
// Push send a list of jobs to the queue.
|
||||
func (p *Pool) Push(jobs model.JobList) {
|
||||
for _, job := range jobs {
|
||||
p.queue <- job
|
||||
}
|
||||
}
|
||||
|
||||
// NewPool creates a pool of background workers.
|
||||
func NewPool(feedHandler *feed.Handler, nbWorkers int) *Pool {
|
||||
workerPool := &Pool{
|
||||
queue: make(chan model.Job),
|
||||
}
|
||||
|
||||
for i := 0; i < nbWorkers; i++ {
|
||||
worker := &Worker{id: i, feedHandler: feedHandler}
|
||||
go worker.Run(workerPool.queue)
|
||||
}
|
||||
|
||||
return workerPool
|
||||
}
|
32
worker/worker.go
Normal file
32
worker/worker.go
Normal file
|
@ -0,0 +1,32 @@
|
|||
// Copyright 2017 Frédéric Guillot. All rights reserved.
|
||||
// Use of this source code is governed by the Apache 2.0
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package worker // import "miniflux.app/worker"
|
||||
|
||||
import (
|
||||
"miniflux.app/logger"
|
||||
"miniflux.app/model"
|
||||
"miniflux.app/reader/feed"
|
||||
)
|
||||
|
||||
// Worker refreshes a feed in the background.
|
||||
type Worker struct {
|
||||
id int
|
||||
feedHandler *feed.Handler
|
||||
}
|
||||
|
||||
// Run wait for a job and refresh the given feed.
|
||||
func (w *Worker) Run(c chan model.Job) {
|
||||
logger.Info("[Worker] #%d started", w.id)
|
||||
|
||||
for {
|
||||
job := <-c
|
||||
logger.Debug("[Worker #%d] got userID=%d, feedID=%d", w.id, job.UserID, job.FeedID)
|
||||
|
||||
err := w.feedHandler.RefreshFeed(job.UserID, job.FeedID)
|
||||
if err != nil {
|
||||
logger.Error("[Worker] %v", err)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue