mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
|
package rootcoord
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
||
|
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
|
||
|
"github.com/milvus-io/milvus/internal/util/tsoutil"
|
||
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
||
|
)
|
||
|
|
||
|
// showCollectionTask show collection request task
|
||
|
type showCollectionTask struct {
|
||
|
baseTask
|
||
|
Req *milvuspb.ShowCollectionsRequest
|
||
|
Rsp *milvuspb.ShowCollectionsResponse
|
||
|
}
|
||
|
|
||
|
func (t *showCollectionTask) Prepare(ctx context.Context) error {
|
||
|
if err := CheckMsgType(t.Req.Base.MsgType, commonpb.MsgType_ShowCollections); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// Execute task execution
|
||
|
func (t *showCollectionTask) Execute(ctx context.Context) error {
|
||
|
t.Rsp.Status = succStatus()
|
||
|
ts := t.Req.GetTimeStamp()
|
||
|
if ts == 0 {
|
||
|
ts = typeutil.MaxTimestamp
|
||
|
}
|
||
|
colls, err := t.core.meta.ListCollections(ctx, ts)
|
||
|
if err != nil {
|
||
|
t.Rsp.Status = failStatus(commonpb.ErrorCode_UnexpectedError, err.Error())
|
||
|
return err
|
||
|
}
|
||
|
for _, meta := range colls {
|
||
|
t.Rsp.CollectionNames = append(t.Rsp.CollectionNames, meta.Name)
|
||
|
t.Rsp.CollectionIds = append(t.Rsp.CollectionIds, meta.CollectionID)
|
||
|
t.Rsp.CreatedTimestamps = append(t.Rsp.CreatedTimestamps, meta.CreateTime)
|
||
|
physical, _ := tsoutil.ParseHybridTs(meta.CreateTime)
|
||
|
t.Rsp.CreatedUtcTimestamps = append(t.Rsp.CreatedUtcTimestamps, uint64(physical))
|
||
|
}
|
||
|
return nil
|
||
|
}
|