refactor: split importer args
Alan Pearce alan@alanpearce.eu
Fri, 14 Feb 2025 01:36:40 +0100
4 files changed, 34 insertions(+), 28 deletions(-)
M internal/importer/importer.go → internal/importer/importer.go
@@ -9,10 +9,6 @@ "go.alanpearce.eu/searchix/internal/nix" "go.alanpearce.eu/x/log" ) -type Importer interface { - Import(context.Context, *index.WriteIndex) (bool, error) -} - type Processor interface { Process(context.Context) (<-chan nix.Importable, <-chan error) }
M internal/importer/main.go → internal/importer/main.go
@@ -143,33 +143,48 @@ return nil } } -func Start( - ctx context.Context, +type Importer struct { + config *config.Config + log *log.Logger + indexer *index.WriteIndex +} + +func New( cfg *config.Config, log *log.Logger, indexer *index.WriteIndex, +) *Importer { + return &Importer{ + config: cfg, + log: log, + indexer: indexer, + } +} + +func (imp *Importer) Start( + ctx context.Context, forceUpdate bool, onlyUpdateSources *[]string, ) error { - if len(cfg.Importer.Sources) == 0 { - log.Info("No sources enabled") + if len(imp.config.Importer.Sources) == 0 { + imp.log.Info("No sources enabled") return nil } - log.Debug("starting importer", "timeout", cfg.Importer.Timeout.Duration) + imp.log.Debug("starting importer", "timeout", imp.config.Importer.Timeout.Duration) importCtx, cancelImport := context.WithTimeout( ctx, - cfg.Importer.Timeout.Duration, + imp.config.Importer.Timeout.Duration, ) defer cancelImport() forceUpdate = forceUpdate || (onlyUpdateSources != nil && len(*onlyUpdateSources) > 0) - meta := indexer.Meta + meta := imp.indexer.Meta - importSource := createSourceImporter(importCtx, log, meta, indexer, forceUpdate) - for name, source := range cfg.Importer.Sources { + importSource := createSourceImporter(importCtx, imp.log, meta, imp.indexer, forceUpdate) + for name, source := range imp.config.Importer.Sources { if onlyUpdateSources != nil && len(*onlyUpdateSources) > 0 { if !slices.Contains(*onlyUpdateSources, name) { continue @@ -177,11 +192,11 @@ } } err := importSource(source) if err != nil { - log.Error("import failed", "source", name, "error", err) + imp.log.Error("import failed", "source", name, "error", err) } } - err := indexer.SaveMeta() + err := imp.indexer.SaveMeta() if err != nil { return errors.Wrap(err, "failed to save metadata") }
M internal/importer/main_test.go → internal/importer/main_test.go
@@ -22,11 +22,9 @@ if err != nil { b.Fatal(err) } - err = Start( + imp := New(&cfg, logger.Named("importer"), write) + err = imp.Start( context.Background(), - &cfg, - logger.Named("importer"), - write, false, &[]string{"nixpkgs"}, )
M searchix.go → searchix.go
@@ -77,11 +77,9 @@ options.Replace, "update", options.Update, ) - err = importer.Start( + imp := importer.New(s.cfg, s.log.Named("importer"), write) + err = imp.Start( ctx, - s.cfg, - s.log.Named("importer"), - write, options.Replace || options.Update, nil, ) @@ -106,11 +104,9 @@ return slices.Contains(cfgEnabledSources, s) }) if len(newSources) > 0 { s.log.Info("adding new sources", "sources", newSources) - err := importer.Start( + imp := importer.New(s.cfg, options.Logger.Named("importer"), write) + err := imp.Start( ctx, - s.cfg, - options.Logger.Named("importer"), - write, false, &newSources, ) @@ -197,7 +193,8 @@ MonitorSlug: monitorSlug, Status: sentry.CheckInStatusInProgress, }, monitorConfig) - err = importer.Start(ctx, s.cfg, s.log.Named("importer"), s.writeIndex, false, nil) + imp := importer.New(s.cfg, s.log.Named("importer"), s.writeIndex) + err = imp.Start(ctx, false, nil) s.wg.Done() if err != nil { s.log.Warn("error updating index", "error", err)