|
|
@ -3,15 +3,12 @@ package mon
|
|
|
|
import (
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/syncx"
|
|
|
|
"github.com/zeromicro/go-zero/core/syncx"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
|
|
mopt "go.mongodb.org/mongo-driver/mongo/options"
|
|
|
|
mopt "go.mongodb.org/mongo-driver/mongo/options"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
const defaultTimeout = time.Second
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var clientManager = syncx.NewResourceManager()
|
|
|
|
var clientManager = syncx.NewResourceManager()
|
|
|
|
|
|
|
|
|
|
|
|
// ClosableClient wraps *mongo.Client and provides a Close method.
|
|
|
|
// ClosableClient wraps *mongo.Client and provides a Close method.
|
|
|
@ -30,9 +27,20 @@ func Inject(key string, client *mongo.Client) {
|
|
|
|
clientManager.Inject(key, &ClosableClient{client})
|
|
|
|
clientManager.Inject(key, &ClosableClient{client})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func getClient(url string) (*mongo.Client, error) {
|
|
|
|
func getClient(url string, opts ...Option) (*mongo.Client, error) {
|
|
|
|
val, err := clientManager.GetResource(url, func() (io.Closer, error) {
|
|
|
|
val, err := clientManager.GetResource(url, func() (io.Closer, error) {
|
|
|
|
cli, err := mongo.Connect(context.Background(), mopt.Client().ApplyURI(url))
|
|
|
|
o := mopt.Client().ApplyURI(url)
|
|
|
|
|
|
|
|
opts = append([]Option{defaultTimeoutOption()}, opts...)
|
|
|
|
|
|
|
|
for _, opt := range opts {
|
|
|
|
|
|
|
|
opt(o)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cli, err := mongo.Connect(context.Background(), o)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
err = cli.Ping(context.Background(), nil)
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|