mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Add nakedret, unconvert, wastedassign, stylecheck and nolintlint linters to improve code readability - nakedret - https://github.com/alexkohler/nakedret - nakedret is a Go static analysis tool to find naked returns in functions greater than a specified function length. - unconvert - https://github.com/mdempsky/unconvert - Remove unnecessary type conversions - wastedassign - https://github.com/sanposhiho/wastedassign - wastedassign finds wasted assignment statements. - notlintlint - Reports ill-formed or insufficient nolint directives - stylecheck - https://staticcheck.io/docs/checks/#ST - keep style consistent - excluded: [ST1003 - Poorly chosen identifier](https://staticcheck.io/docs/checks/#ST1003) and [ST1005 - Incorrectly formatted error string](https://staticcheck.io/docs/checks/#ST1005)
		
			
				
	
	
		
			80 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package nosql
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"strconv"
 | 
						|
	"sync"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/process"
 | 
						|
 | 
						|
	"github.com/go-redis/redis/v8"
 | 
						|
	"github.com/syndtr/goleveldb/leveldb"
 | 
						|
)
 | 
						|
 | 
						|
var manager *Manager
 | 
						|
 | 
						|
// Manager is the nosql connection manager
 | 
						|
type Manager struct {
 | 
						|
	ctx      context.Context
 | 
						|
	finished context.CancelFunc
 | 
						|
	mutex    sync.Mutex
 | 
						|
 | 
						|
	RedisConnections   map[string]*redisClientHolder
 | 
						|
	LevelDBConnections map[string]*levelDBHolder
 | 
						|
}
 | 
						|
 | 
						|
type redisClientHolder struct {
 | 
						|
	redis.UniversalClient
 | 
						|
	name  []string
 | 
						|
	count int64
 | 
						|
}
 | 
						|
 | 
						|
func (r *redisClientHolder) Close() error {
 | 
						|
	return manager.CloseRedisClient(r.name[0])
 | 
						|
}
 | 
						|
 | 
						|
type levelDBHolder struct {
 | 
						|
	name  []string
 | 
						|
	count int64
 | 
						|
	db    *leveldb.DB
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	_ = GetManager()
 | 
						|
}
 | 
						|
 | 
						|
// GetManager returns a Manager and initializes one as singleton is there's none yet
 | 
						|
func GetManager() *Manager {
 | 
						|
	if manager == nil {
 | 
						|
		ctx, _, finished := process.GetManager().AddTypedContext(context.Background(), "Service: NoSQL", process.SystemProcessType, false)
 | 
						|
		manager = &Manager{
 | 
						|
			ctx:                ctx,
 | 
						|
			finished:           finished,
 | 
						|
			RedisConnections:   make(map[string]*redisClientHolder),
 | 
						|
			LevelDBConnections: make(map[string]*levelDBHolder),
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return manager
 | 
						|
}
 | 
						|
 | 
						|
func valToTimeDuration(vs []string) (result time.Duration) {
 | 
						|
	var err error
 | 
						|
	for _, v := range vs {
 | 
						|
		result, err = time.ParseDuration(v)
 | 
						|
		if err != nil {
 | 
						|
			var val int
 | 
						|
			val, err = strconv.Atoi(v)
 | 
						|
			result = time.Duration(val)
 | 
						|
		}
 | 
						|
		if err == nil {
 | 
						|
			return
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return result
 | 
						|
}
 |