|
|
@ -59,6 +59,7 @@ func (repo *Repository) updateIndexerStatus(sha string) error { |
|
|
|
type repoIndexerOperation struct { |
|
|
|
type repoIndexerOperation struct { |
|
|
|
repo *Repository |
|
|
|
repo *Repository |
|
|
|
deleted bool |
|
|
|
deleted bool |
|
|
|
|
|
|
|
watchers []chan<- error |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var repoIndexerOperationQueue chan repoIndexerOperation |
|
|
|
var repoIndexerOperationQueue chan repoIndexerOperation |
|
|
@ -312,26 +313,30 @@ func nonGenesisChanges(repo *Repository, revision string) (*repoChanges, error) |
|
|
|
func processRepoIndexerOperationQueue() { |
|
|
|
func processRepoIndexerOperationQueue() { |
|
|
|
for { |
|
|
|
for { |
|
|
|
op := <-repoIndexerOperationQueue |
|
|
|
op := <-repoIndexerOperationQueue |
|
|
|
|
|
|
|
var err error |
|
|
|
if op.deleted { |
|
|
|
if op.deleted { |
|
|
|
if err := indexer.DeleteRepoFromIndexer(op.repo.ID); err != nil { |
|
|
|
if err = indexer.DeleteRepoFromIndexer(op.repo.ID); err != nil { |
|
|
|
log.Error("DeleteRepoFromIndexer: %v", err) |
|
|
|
log.Error("DeleteRepoFromIndexer: %v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
if err := updateRepoIndexer(op.repo); err != nil { |
|
|
|
if err = updateRepoIndexer(op.repo); err != nil { |
|
|
|
log.Error("updateRepoIndexer: %v", err) |
|
|
|
log.Error("updateRepoIndexer: %v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
for _, watcher := range op.watchers { |
|
|
|
|
|
|
|
watcher <- err |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// DeleteRepoFromIndexer remove all of a repository's entries from the indexer
|
|
|
|
// DeleteRepoFromIndexer remove all of a repository's entries from the indexer
|
|
|
|
func DeleteRepoFromIndexer(repo *Repository) { |
|
|
|
func DeleteRepoFromIndexer(repo *Repository, watchers ...chan<- error) { |
|
|
|
addOperationToQueue(repoIndexerOperation{repo: repo, deleted: true}) |
|
|
|
addOperationToQueue(repoIndexerOperation{repo: repo, deleted: true, watchers: watchers}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// UpdateRepoIndexer update a repository's entries in the indexer
|
|
|
|
// UpdateRepoIndexer update a repository's entries in the indexer
|
|
|
|
func UpdateRepoIndexer(repo *Repository) { |
|
|
|
func UpdateRepoIndexer(repo *Repository, watchers ...chan<- error) { |
|
|
|
addOperationToQueue(repoIndexerOperation{repo: repo, deleted: false}) |
|
|
|
addOperationToQueue(repoIndexerOperation{repo: repo, deleted: false, watchers: watchers}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func addOperationToQueue(op repoIndexerOperation) { |
|
|
|
func addOperationToQueue(op repoIndexerOperation) { |
|
|
|