| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package cli // import "miniflux.app/v2/internal/cli"
- import (
- "log/slog"
- "sync"
- "time"
- "miniflux.app/v2/internal/config"
- "miniflux.app/v2/internal/model"
- feedHandler "miniflux.app/v2/internal/reader/handler"
- "miniflux.app/v2/internal/storage"
- )
- func refreshFeeds(store *storage.Storage) {
- var wg sync.WaitGroup
- startTime := time.Now()
- // Generate a batch of feeds for any user that has feeds to refresh.
- jobs, err := store.NewBatchBuilder().
- WithBatchSize(config.Opts.BatchSize()).
- WithErrorLimit(config.Opts.PollingParsingErrorLimit()).
- WithoutDisabledFeeds().
- WithNextCheckExpired().
- WithLimitPerHost(config.Opts.PollingLimitPerHost()).
- FetchJobs()
- if err != nil {
- slog.Error("Unable to fetch jobs from database", slog.Any("error", err))
- return
- }
- slog.Debug("Feed URLs in this batch", slog.Any("feed_urls", jobs.FeedURLs()))
- nbJobs := len(jobs)
- jobQueue := make(chan model.Job, nbJobs)
- slog.Info("Starting a pool of workers",
- slog.Int("nb_workers", config.Opts.WorkerPoolSize()),
- )
- for i := range config.Opts.WorkerPoolSize() {
- wg.Add(1)
- go func(workerID int) {
- defer wg.Done()
- for job := range jobQueue {
- slog.Info("Refreshing feed",
- slog.Int64("feed_id", job.FeedID),
- slog.Int64("user_id", job.UserID),
- slog.Int("worker_id", workerID),
- )
- if localizedError := feedHandler.RefreshFeed(store, job.UserID, job.FeedID, false); localizedError != nil {
- slog.Warn("Unable to refresh feed",
- slog.Int64("feed_id", job.FeedID),
- slog.Int64("user_id", job.UserID),
- slog.Any("error", localizedError.Error()),
- )
- }
- }
- }(i)
- }
- for _, job := range jobs {
- jobQueue <- job
- }
- close(jobQueue)
- wg.Wait()
- slog.Info("Refreshed a batch of feeds",
- slog.Int("nb_feeds", nbJobs),
- slog.String("duration", time.Since(startTime).String()),
- )
- }
|