2021-04-19 13:42:47 +08:00
|
|
|
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-10-29 09:31:08 +08:00
|
|
|
package tsoutil
|
|
|
|
|
|
|
|
import (
|
2020-11-12 11:18:23 +08:00
|
|
|
"path"
|
2020-10-29 09:31:08 +08:00
|
|
|
"time"
|
2020-11-12 11:18:23 +08:00
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
etcdkv "github.com/milvus-io/milvus/internal/kv/etcd"
|
2020-10-29 09:31:08 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-04-12 14:11:06 +08:00
|
|
|
logicalBits = 18
|
|
|
|
logicalBitsMask = (1 << logicalBits) - 1
|
2020-10-29 09:31:08 +08:00
|
|
|
)
|
|
|
|
|
2020-11-03 14:53:36 +08:00
|
|
|
func ComposeTS(physical, logical int64) uint64 {
|
2021-04-12 14:11:06 +08:00
|
|
|
return uint64((physical << logicalBits) + logical)
|
2020-10-30 16:27:58 +08:00
|
|
|
}
|
|
|
|
|
2020-10-29 09:31:08 +08:00
|
|
|
// ParseTS parses the ts to (physical,logical).
|
|
|
|
func ParseTS(ts uint64) (time.Time, uint64) {
|
2021-04-12 14:11:06 +08:00
|
|
|
logical := ts & logicalBitsMask
|
|
|
|
physical := ts >> logicalBits
|
2020-10-29 09:31:08 +08:00
|
|
|
physicalTime := time.Unix(int64(physical/1000), int64(physical)%1000*time.Millisecond.Nanoseconds())
|
|
|
|
return physicalTime, logical
|
|
|
|
}
|
2020-11-12 11:18:23 +08:00
|
|
|
|
2021-07-21 18:00:14 +08:00
|
|
|
// ParseHybridTs parses the ts to (physical, logical), physical part is of utc-timestamp format.
|
|
|
|
func ParseHybridTs(ts uint64) (uint64, uint64) {
|
|
|
|
logical := ts & logicalBitsMask
|
|
|
|
physical := ts >> logicalBits
|
|
|
|
return physical, logical
|
|
|
|
}
|
|
|
|
|
2021-06-01 11:04:31 +08:00
|
|
|
// Mod24H parses the ts to millisecond in one day
|
|
|
|
func Mod24H(ts uint64) uint64 {
|
|
|
|
logical := ts & logicalBitsMask
|
|
|
|
physical := ts >> logicalBits
|
|
|
|
physical = physical % (uint64(24 * 60 * 60 * 1000))
|
|
|
|
return (physical << logicalBits) | logical
|
|
|
|
}
|
|
|
|
|
2021-08-13 11:04:09 +08:00
|
|
|
func NewTSOKVBase(etcdEndpoints []string, tsoRoot, subPath string) (*etcdkv.EtcdKV, error) {
|
|
|
|
return etcdkv.NewEtcdKV(etcdEndpoints, path.Join(tsoRoot, subPath))
|
2020-11-12 11:18:23 +08:00
|
|
|
}
|