mirror of
https://github.com/miniflux/v2.git
synced 2025-09-15 18:57:04 +00:00
Move internal packages to an internal folder
For reference: https://go.dev/doc/go1.4#internalpackages
This commit is contained in:
parent
c234903255
commit
168a870c02
433 changed files with 1121 additions and 1123 deletions
35
internal/worker/pool.go
Normal file
35
internal/worker/pool.go
Normal file
|
@ -0,0 +1,35 @@
|
|||
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package worker // import "miniflux.app/v2/internal/worker"
|
||||
|
||||
import (
|
||||
"miniflux.app/v2/internal/model"
|
||||
"miniflux.app/v2/internal/storage"
|
||||
)
|
||||
|
||||
// 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(store *storage.Storage, nbWorkers int) *Pool {
|
||||
workerPool := &Pool{
|
||||
queue: make(chan model.Job),
|
||||
}
|
||||
|
||||
for i := 0; i < nbWorkers; i++ {
|
||||
worker := &Worker{id: i, store: store}
|
||||
go worker.Run(workerPool.queue)
|
||||
}
|
||||
|
||||
return workerPool
|
||||
}
|
46
internal/worker/worker.go
Normal file
46
internal/worker/worker.go
Normal file
|
@ -0,0 +1,46 @@
|
|||
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package worker // import "miniflux.app/v2/internal/worker"
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"miniflux.app/v2/internal/config"
|
||||
"miniflux.app/v2/internal/logger"
|
||||
"miniflux.app/v2/internal/metric"
|
||||
"miniflux.app/v2/internal/model"
|
||||
feedHandler "miniflux.app/v2/internal/reader/handler"
|
||||
"miniflux.app/v2/internal/storage"
|
||||
)
|
||||
|
||||
// Worker refreshes a feed in the background.
|
||||
type Worker struct {
|
||||
id int
|
||||
store *storage.Storage
|
||||
}
|
||||
|
||||
// Run wait for a job and refresh the given feed.
|
||||
func (w *Worker) Run(c chan model.Job) {
|
||||
logger.Debug("[Worker] #%d started", w.id)
|
||||
|
||||
for {
|
||||
job := <-c
|
||||
logger.Debug("[Worker #%d] Received feed #%d for user #%d", w.id, job.FeedID, job.UserID)
|
||||
|
||||
startTime := time.Now()
|
||||
refreshErr := feedHandler.RefreshFeed(w.store, job.UserID, job.FeedID, false)
|
||||
|
||||
if config.Opts.HasMetricsCollector() {
|
||||
status := "success"
|
||||
if refreshErr != nil {
|
||||
status = "error"
|
||||
}
|
||||
metric.BackgroundFeedRefreshDuration.WithLabelValues(status).Observe(time.Since(startTime).Seconds())
|
||||
}
|
||||
|
||||
if refreshErr != nil {
|
||||
logger.Error("[Worker] Refreshing the feed #%d returned this error: %v", job.FeedID, refreshErr)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue