Server : LiteSpeed System : Linux in-mum-web1112.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u451330669 ( 451330669) PHP Version : 8.2.27 Disable Function : NONE Directory : /opt/go/pkg/mod/github.com/prometheus/alertmanager@v0.26.0/cluster/ |
// Copyright 2020 Prometheus Team
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cluster
import (
"crypto/tls"
"fmt"
"sync"
"time"
lru "github.com/hashicorp/golang-lru/v2"
"github.com/pkg/errors"
)
const capacity = 1024
type connectionPool struct {
mtx sync.Mutex
cache *lru.Cache[string, *tlsConn]
tlsConfig *tls.Config
}
func newConnectionPool(tlsClientCfg *tls.Config) (*connectionPool, error) {
cache, err := lru.NewWithEvict(
capacity, func(_ string, conn *tlsConn) {
conn.Close()
},
)
if err != nil {
return nil, errors.Wrap(err, "failed to create new LRU")
}
return &connectionPool{
cache: cache,
tlsConfig: tlsClientCfg,
}, nil
}
// borrowConnection returns a *tlsConn from the pool. The connection does not
// need to be returned to the pool because each connection has its own locking.
func (pool *connectionPool) borrowConnection(addr string, timeout time.Duration) (*tlsConn, error) {
pool.mtx.Lock()
defer pool.mtx.Unlock()
if pool.cache == nil {
return nil, errors.New("connection pool closed")
}
key := fmt.Sprintf("%s/%d", addr, int64(timeout))
conn, exists := pool.cache.Get(key)
if exists && conn.alive() {
return conn, nil
}
conn, err := dialTLSConn(addr, timeout, pool.tlsConfig)
if err != nil {
return nil, err
}
pool.cache.Add(key, conn)
return conn, nil
}
func (pool *connectionPool) shutdown() {
pool.mtx.Lock()
defer pool.mtx.Unlock()
if pool.cache == nil {
return
}
pool.cache.Purge()
pool.cache = nil
}