1 Star 0 Fork 0

青文杰 / mongo-go-driver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
collation_options.go 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright (C) MongoDB, Inc. 2017-present.
//
// 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
package options
import "github.com/mongodb/mongo-go-driver/bson"
// CollationOptions allows users to specify language-specific rules for string comparison, such as
// rules for lettercase and accent marks.
type CollationOptions struct {
Locale string `bson:",omitempty"`
CaseLevel bool `bson:",omitempty"`
CaseFirst string `bson:",omitempty"`
Strength int `bson:",omitempty"`
NumericOrdering bool `bson:",omitempty"`
Alternate string `bson:",omitempty"`
MaxVariable string `bson:",omitempty"`
Backwards bool `bson:",omitempty"`
}
func (co *CollationOptions) toDocument() *bson.Document {
doc := bson.NewDocument()
if co.Locale != "" {
doc.Append(bson.C.String("locale", co.Locale))
}
if co.CaseLevel {
doc.Append(bson.C.Boolean("caseLevel", true))
}
if co.CaseFirst != "" {
doc.Append(bson.C.String("caseFirst", co.CaseFirst))
}
if co.Strength != 0 {
doc.Append(bson.C.Int32("strength", int32(co.Strength)))
}
if co.NumericOrdering {
doc.Append(bson.C.Boolean("numericOrdering", true))
}
if co.Alternate != "" {
doc.Append(bson.C.String("alternate", co.Alternate))
}
if co.MaxVariable != "" {
doc.Append(bson.C.String("maxVariable", co.MaxVariable))
}
if co.Backwards {
doc.Append(bson.C.Boolean("backwards", true))
}
return doc
}
// MarshalBSONDocument implements the bson.DocumentMarshaler interface.
func (co *CollationOptions) MarshalBSONDocument() (*bson.Document, error) {
return co.toDocument(), nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qingwenjie/mongo-go-driver.git
git@gitee.com:qingwenjie/mongo-go-driver.git
qingwenjie
mongo-go-driver
mongo-go-driver
v0.0.1

搜索帮助

344bd9b3 5694891 D2dac590 5694891