You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
3 years ago
|
package mon
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"io"
|
||
|
"time"
|
||
|
|
||
|
"github.com/zeromicro/go-zero/core/syncx"
|
||
|
"go.mongodb.org/mongo-driver/mongo"
|
||
|
mopt "go.mongodb.org/mongo-driver/mongo/options"
|
||
|
)
|
||
|
|
||
|
const defaultTimeout = time.Second
|
||
|
|
||
|
var clientManager = syncx.NewResourceManager()
|
||
|
|
||
|
// ClosableClient wraps *mongo.Client and provides a Close method.
|
||
|
type ClosableClient struct {
|
||
|
*mongo.Client
|
||
|
}
|
||
|
|
||
|
// Close disconnects the underlying *mongo.Client.
|
||
|
func (cs *ClosableClient) Close() error {
|
||
|
return cs.Client.Disconnect(context.Background())
|
||
|
}
|
||
|
|
||
|
// Inject injects a *mongo.Client into the client manager.
|
||
|
// Typically, this is used to inject a *mongo.Client for test purpose.
|
||
|
func Inject(key string, client *mongo.Client) {
|
||
|
clientManager.Inject(key, &ClosableClient{client})
|
||
|
}
|
||
|
|
||
|
func getClient(url string) (*mongo.Client, error) {
|
||
|
val, err := clientManager.GetResource(url, func() (io.Closer, error) {
|
||
|
cli, err := mongo.Connect(context.Background(), mopt.Client().ApplyURI(url))
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
concurrentSess := &ClosableClient{
|
||
|
Client: cli,
|
||
|
}
|
||
|
|
||
|
return concurrentSess, nil
|
||
|
})
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return val.(*ClosableClient).Client, nil
|
||
|
}
|