84 lines
2.2 KiB
Go
84 lines
2.2 KiB
Go
/*
|
||
Copyright 2020 The Qmgo Authors.
|
||
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.
|
||
*/
|
||
|
||
package qmgo
|
||
|
||
import (
|
||
"math"
|
||
"strconv"
|
||
"strings"
|
||
"time"
|
||
|
||
"go.mongodb.org/mongo-driver/bson/primitive"
|
||
)
|
||
|
||
// Now return Millisecond current time
|
||
func Now() time.Time {
|
||
return time.Unix(0, time.Now().UnixNano()/1e6*1e6)
|
||
}
|
||
|
||
// NewObjectID generates a new ObjectID.
|
||
// Watch out: the way it generates objectID is different from mgo
|
||
func NewObjectID() primitive.ObjectID {
|
||
return primitive.NewObjectID()
|
||
}
|
||
|
||
// SplitSortField handle sort symbol: "+"/"-" in front of field
|
||
// if "+", return sort as 1
|
||
// if "-", return sort as -1
|
||
func SplitSortField(field string) (key string, sort int32) {
|
||
sort = 1
|
||
key = field
|
||
|
||
if len(field) != 0 {
|
||
switch field[0] {
|
||
case '+':
|
||
key = strings.TrimPrefix(field, "+")
|
||
sort = 1
|
||
case '-':
|
||
key = strings.TrimPrefix(field, "-")
|
||
sort = -1
|
||
}
|
||
}
|
||
|
||
return key, sort
|
||
}
|
||
|
||
// CompareVersions compares two version number strings (i.e. positive integers separated by
|
||
// periods). Comparisons are done to the lesser precision of the two versions. For example, 3.2 is
|
||
// considered equal to 3.2.11, whereas 3.2.0 is considered less than 3.2.11.
|
||
//
|
||
// Returns a positive int if version1 is greater than version2, a negative int if version1 is less
|
||
// than version2, and 0 if version1 is equal to version2.
|
||
func CompareVersions(v1 string, v2 string) (int, error) {
|
||
n1 := strings.Split(v1, ".")
|
||
n2 := strings.Split(v2, ".")
|
||
|
||
for i := 0; i < int(math.Min(float64(len(n1)), float64(len(n2)))); i++ {
|
||
i1, err := strconv.Atoi(n1[i])
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
i2, err := strconv.Atoi(n2[i])
|
||
if err != nil {
|
||
return 0, err
|
||
}
|
||
difference := i1 - i2
|
||
if difference != 0 {
|
||
return difference, nil
|
||
}
|
||
}
|
||
|
||
return 0, nil
|
||
}
|