mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Result of running `perl -p -i -e 's#interface\{\}#any#g' **/*` and `make fmt`.
Basically the same [as golang did](2580d0e08d).
		
	
		
			
				
	
	
		
			180 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			180 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2018 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package bleve
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	indexer_internal "code.gitea.io/gitea/modules/indexer/internal"
 | 
						|
	inner_bleve "code.gitea.io/gitea/modules/indexer/internal/bleve"
 | 
						|
	"code.gitea.io/gitea/modules/indexer/issues/internal"
 | 
						|
 | 
						|
	"github.com/blevesearch/bleve/v2"
 | 
						|
	"github.com/blevesearch/bleve/v2/analysis/analyzer/custom"
 | 
						|
	"github.com/blevesearch/bleve/v2/analysis/token/camelcase"
 | 
						|
	"github.com/blevesearch/bleve/v2/analysis/token/lowercase"
 | 
						|
	"github.com/blevesearch/bleve/v2/analysis/token/unicodenorm"
 | 
						|
	"github.com/blevesearch/bleve/v2/analysis/tokenizer/unicode"
 | 
						|
	"github.com/blevesearch/bleve/v2/mapping"
 | 
						|
	"github.com/blevesearch/bleve/v2/search/query"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	issueIndexerAnalyzer      = "issueIndexer"
 | 
						|
	issueIndexerDocType       = "issueIndexerDocType"
 | 
						|
	issueIndexerLatestVersion = 3
 | 
						|
)
 | 
						|
 | 
						|
// numericEqualityQuery a numeric equality query for the given value and field
 | 
						|
func numericEqualityQuery(value int64, field string) *query.NumericRangeQuery {
 | 
						|
	f := float64(value)
 | 
						|
	tru := true
 | 
						|
	q := bleve.NewNumericRangeInclusiveQuery(&f, &f, &tru, &tru)
 | 
						|
	q.SetField(field)
 | 
						|
	return q
 | 
						|
}
 | 
						|
 | 
						|
func newMatchPhraseQuery(matchPhrase, field, analyzer string) *query.MatchPhraseQuery {
 | 
						|
	q := bleve.NewMatchPhraseQuery(matchPhrase)
 | 
						|
	q.FieldVal = field
 | 
						|
	q.Analyzer = analyzer
 | 
						|
	return q
 | 
						|
}
 | 
						|
 | 
						|
const unicodeNormalizeName = "unicodeNormalize"
 | 
						|
 | 
						|
func addUnicodeNormalizeTokenFilter(m *mapping.IndexMappingImpl) error {
 | 
						|
	return m.AddCustomTokenFilter(unicodeNormalizeName, map[string]any{
 | 
						|
		"type": unicodenorm.Name,
 | 
						|
		"form": unicodenorm.NFC,
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
const maxBatchSize = 16
 | 
						|
 | 
						|
// IndexerData an update to the issue indexer
 | 
						|
type IndexerData internal.IndexerData
 | 
						|
 | 
						|
// Type returns the document type, for bleve's mapping.Classifier interface.
 | 
						|
func (i *IndexerData) Type() string {
 | 
						|
	return issueIndexerDocType
 | 
						|
}
 | 
						|
 | 
						|
// generateIssueIndexMapping generates the bleve index mapping for issues
 | 
						|
func generateIssueIndexMapping() (mapping.IndexMapping, error) {
 | 
						|
	mapping := bleve.NewIndexMapping()
 | 
						|
	docMapping := bleve.NewDocumentMapping()
 | 
						|
 | 
						|
	numericFieldMapping := bleve.NewNumericFieldMapping()
 | 
						|
	numericFieldMapping.Store = false
 | 
						|
	numericFieldMapping.IncludeInAll = false
 | 
						|
	docMapping.AddFieldMappingsAt("repo_id", numericFieldMapping)
 | 
						|
 | 
						|
	textFieldMapping := bleve.NewTextFieldMapping()
 | 
						|
	textFieldMapping.Store = false
 | 
						|
	textFieldMapping.IncludeInAll = false
 | 
						|
	docMapping.AddFieldMappingsAt("title", textFieldMapping)
 | 
						|
	docMapping.AddFieldMappingsAt("content", textFieldMapping)
 | 
						|
	docMapping.AddFieldMappingsAt("comments", textFieldMapping)
 | 
						|
 | 
						|
	if err := addUnicodeNormalizeTokenFilter(mapping); err != nil {
 | 
						|
		return nil, err
 | 
						|
	} else if err = mapping.AddCustomAnalyzer(issueIndexerAnalyzer, map[string]any{
 | 
						|
		"type":          custom.Name,
 | 
						|
		"char_filters":  []string{},
 | 
						|
		"tokenizer":     unicode.Name,
 | 
						|
		"token_filters": []string{unicodeNormalizeName, camelcase.Name, lowercase.Name},
 | 
						|
	}); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	mapping.DefaultAnalyzer = issueIndexerAnalyzer
 | 
						|
	mapping.AddDocumentMapping(issueIndexerDocType, docMapping)
 | 
						|
	mapping.AddDocumentMapping("_all", bleve.NewDocumentDisabledMapping())
 | 
						|
	mapping.DefaultMapping = bleve.NewDocumentDisabledMapping() // disable default mapping, avoid indexing unexpected structs
 | 
						|
 | 
						|
	return mapping, nil
 | 
						|
}
 | 
						|
 | 
						|
var _ internal.Indexer = &Indexer{}
 | 
						|
 | 
						|
// Indexer implements Indexer interface
 | 
						|
type Indexer struct {
 | 
						|
	inner                    *inner_bleve.Indexer
 | 
						|
	indexer_internal.Indexer // do not composite inner_bleve.Indexer directly to avoid exposing too much
 | 
						|
}
 | 
						|
 | 
						|
// NewIndexer creates a new bleve local indexer
 | 
						|
func NewIndexer(indexDir string) *Indexer {
 | 
						|
	inner := inner_bleve.NewIndexer(indexDir, issueIndexerLatestVersion, generateIssueIndexMapping)
 | 
						|
	return &Indexer{
 | 
						|
		Indexer: inner,
 | 
						|
		inner:   inner,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Index will save the index data
 | 
						|
func (b *Indexer) Index(_ context.Context, issues []*internal.IndexerData) error {
 | 
						|
	batch := inner_bleve.NewFlushingBatch(b.inner.Indexer, maxBatchSize)
 | 
						|
	for _, issue := range issues {
 | 
						|
		if err := batch.Index(indexer_internal.Base36(issue.ID), (*IndexerData)(issue)); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return batch.Flush()
 | 
						|
}
 | 
						|
 | 
						|
// Delete deletes indexes by ids
 | 
						|
func (b *Indexer) Delete(_ context.Context, ids ...int64) error {
 | 
						|
	batch := inner_bleve.NewFlushingBatch(b.inner.Indexer, maxBatchSize)
 | 
						|
	for _, id := range ids {
 | 
						|
		if err := batch.Delete(indexer_internal.Base36(id)); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return batch.Flush()
 | 
						|
}
 | 
						|
 | 
						|
// Search searches for issues by given conditions.
 | 
						|
// Returns the matching issue IDs
 | 
						|
func (b *Indexer) Search(ctx context.Context, keyword string, repoIDs []int64, limit, start int) (*internal.SearchResult, error) {
 | 
						|
	var repoQueriesP []*query.NumericRangeQuery
 | 
						|
	for _, repoID := range repoIDs {
 | 
						|
		repoQueriesP = append(repoQueriesP, numericEqualityQuery(repoID, "repo_id"))
 | 
						|
	}
 | 
						|
	repoQueries := make([]query.Query, len(repoQueriesP))
 | 
						|
	for i, v := range repoQueriesP {
 | 
						|
		repoQueries[i] = query.Query(v)
 | 
						|
	}
 | 
						|
 | 
						|
	indexerQuery := bleve.NewConjunctionQuery(
 | 
						|
		bleve.NewDisjunctionQuery(repoQueries...),
 | 
						|
		bleve.NewDisjunctionQuery(
 | 
						|
			newMatchPhraseQuery(keyword, "title", issueIndexerAnalyzer),
 | 
						|
			newMatchPhraseQuery(keyword, "content", issueIndexerAnalyzer),
 | 
						|
			newMatchPhraseQuery(keyword, "comments", issueIndexerAnalyzer),
 | 
						|
		))
 | 
						|
	search := bleve.NewSearchRequestOptions(indexerQuery, limit, start, false)
 | 
						|
	search.SortBy([]string{"-_score"})
 | 
						|
 | 
						|
	result, err := b.inner.Indexer.SearchInContext(ctx, search)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	ret := internal.SearchResult{
 | 
						|
		Hits: make([]internal.Match, 0, len(result.Hits)),
 | 
						|
	}
 | 
						|
	for _, hit := range result.Hits {
 | 
						|
		id, err := indexer_internal.ParseBase36(hit.ID)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		ret.Hits = append(ret.Hits, internal.Match{
 | 
						|
			ID: id,
 | 
						|
		})
 | 
						|
	}
 | 
						|
	return &ret, nil
 | 
						|
}
 |