You've already forked VptPassiveAdapter
- 添加 CacheConfig 结构体定义文件列表缓存的TTL和最大条目数 - 在RecordConfig中集成Cache配置项 - 为AliOSS和S3适配器实现统一的文件列表缓存机制 - 移除原有的sync.Map缓存实现和定时清理逻辑 - 引入go-cache依赖库实现专业的缓存管理功能 - 使用LRU算法控制缓存大小避免内存泄漏 - 通过singleflight实现缓存穿透保护和并发控制 - 更新配置文件添加缓存相关配置项 - 在.gitignore中添加.exe文件忽略规则
158 lines
4.6 KiB
Go
158 lines
4.6 KiB
Go
package fs
|
|
|
|
import (
|
|
"ZhenTuLocalPassiveAdapter/config"
|
|
"ZhenTuLocalPassiveAdapter/dto"
|
|
"ZhenTuLocalPassiveAdapter/logger"
|
|
"ZhenTuLocalPassiveAdapter/util"
|
|
"context"
|
|
"fmt"
|
|
"github.com/aws/aws-sdk-go-v2/credentials"
|
|
"go.uber.org/zap"
|
|
"path"
|
|
"sort"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/aws"
|
|
"github.com/aws/aws-sdk-go-v2/service/s3"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/codes"
|
|
)
|
|
|
|
type S3Adapter struct {
|
|
StorageConfig config.StorageConfig
|
|
s3Client *s3.Client
|
|
}
|
|
|
|
func (s *S3Adapter) getClient() (*s3.Client, error) {
|
|
if s.s3Client == nil {
|
|
const defaultRegion = "us-east-1"
|
|
resolver := aws.EndpointResolverFunc(func(service, region string) (aws.Endpoint, error) {
|
|
return aws.Endpoint{
|
|
PartitionID: "aws",
|
|
URL: s.StorageConfig.S3.Endpoint, // or where ever you ran minio
|
|
SigningRegion: defaultRegion,
|
|
HostnameImmutable: true,
|
|
}, nil
|
|
})
|
|
creds := credentials.NewStaticCredentialsProvider(s.StorageConfig.S3.AkId, s.StorageConfig.S3.AkSec, "")
|
|
cfg := aws.Config{
|
|
Credentials: creds,
|
|
Region: defaultRegion,
|
|
EndpointResolver: resolver,
|
|
}
|
|
s.s3Client = s3.NewFromConfig(cfg)
|
|
}
|
|
return s.s3Client, nil
|
|
}
|
|
|
|
func (s *S3Adapter) GetFileList(ctx context.Context, dirPath string, relDt time.Time) ([]dto.File, error) {
|
|
_, span := tracer.Start(ctx, "GetFileList_s3")
|
|
defer span.End()
|
|
|
|
span.SetAttributes(attribute.String("path", dirPath))
|
|
span.SetAttributes(attribute.String("relativeDate", relDt.Format("2006-01-02")))
|
|
if s.StorageConfig.S3.Bucket == "" {
|
|
span.SetAttributes(attribute.String("error", "未配置S3存储桶"))
|
|
span.SetStatus(codes.Error, "未配置S3存储桶")
|
|
return nil, fmt.Errorf("未配置S3存储桶")
|
|
}
|
|
|
|
cacheKey := fmt.Sprintf("%s_%s", dirPath, relDt.Format("2006-01-02"))
|
|
fileListCache := getS3FileListCache()
|
|
if cachedFiles, ok := fileListCache.Get(cacheKey); ok {
|
|
logger.Debug("获取已缓存列表", zap.String("cacheKey", cacheKey))
|
|
span.SetAttributes(attribute.Bool("cache.hit", true))
|
|
span.SetAttributes(attribute.Int("file.count", len(cachedFiles)))
|
|
span.SetStatus(codes.Ok, "文件读取成功")
|
|
return cachedFiles, nil
|
|
}
|
|
|
|
fileList, hit, shared, err := fileListCache.GetOrLoad(cacheKey, func() ([]dto.File, error) {
|
|
listObjectsInput := &s3.ListObjectsV2Input{
|
|
Bucket: aws.String(s.StorageConfig.S3.Bucket),
|
|
Prefix: aws.String(path.Join(s.StorageConfig.S3.Prefix, dirPath)),
|
|
MaxKeys: aws.Int32(1000),
|
|
}
|
|
|
|
client, err := s.getClient()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var resultFiles []dto.File
|
|
var continuationToken *string
|
|
|
|
for {
|
|
if continuationToken != nil {
|
|
listObjectsInput.ContinuationToken = continuationToken
|
|
}
|
|
|
|
result, err := client.ListObjectsV2(context.TODO(), listObjectsInput)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, object := range result.Contents {
|
|
key := *object.Key
|
|
if !util.IsVideoFile(path.Base(key)) {
|
|
continue
|
|
}
|
|
startTime, stopTime, err := util.ParseStartStopTime(path.Base(key), relDt)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
if stopTime.IsZero() {
|
|
stopTime = startTime
|
|
}
|
|
if startTime.Equal(stopTime) {
|
|
stopTime = stopTime.Add(time.Second * time.Duration(config.Config.Record.Duration))
|
|
}
|
|
presignClient := s3.NewPresignClient(client)
|
|
request, err := presignClient.PresignGetObject(context.TODO(), &s3.GetObjectInput{
|
|
Bucket: aws.String(s.StorageConfig.S3.Bucket),
|
|
Key: aws.String(key),
|
|
}, func(presignOptions *s3.PresignOptions) {
|
|
presignOptions.Expires = 10 * time.Minute
|
|
})
|
|
if err != nil {
|
|
logger.Error("生成预签名URL失败", zap.Error(err))
|
|
continue
|
|
}
|
|
resultFiles = append(resultFiles, dto.File{
|
|
BasePath: s.StorageConfig.S3.Bucket,
|
|
Name: path.Base(key),
|
|
Path: path.Dir(key),
|
|
Url: request.URL,
|
|
StartTime: startTime,
|
|
EndTime: stopTime,
|
|
})
|
|
}
|
|
|
|
if !*result.IsTruncated {
|
|
break
|
|
}
|
|
continuationToken = result.NextContinuationToken
|
|
}
|
|
|
|
sort.Slice(resultFiles, func(i, j int) bool {
|
|
return resultFiles[i].StartTime.Before(resultFiles[j].StartTime)
|
|
})
|
|
return resultFiles, nil
|
|
})
|
|
if err != nil {
|
|
span.SetAttributes(attribute.String("error", err.Error()))
|
|
span.SetStatus(codes.Error, "文件列表读取失败")
|
|
return nil, err
|
|
}
|
|
|
|
span.SetAttributes(attribute.Bool("cache.shared", shared))
|
|
span.SetAttributes(attribute.Int("file.count", len(fileList)))
|
|
span.SetStatus(codes.Ok, "文件读取成功")
|
|
|
|
if !hit && !shared {
|
|
logger.Debug("缓存文件列表", zap.String("cacheKey", cacheKey))
|
|
}
|
|
return fileList, nil
|
|
}
|