本文整理匯總了Golang中datamodel/protobuf.Domain類的典型用法代碼示例。如果您正苦於以下問題:Golang Domain類的具體用法?Golang Domain怎麽用?Golang Domain使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Domain類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: createDom
func createDom(id string) *pb.Domain {
dom := new(pb.Domain)
dom.Name = utils.Stringp(id)
types := []pb.SketchType{pb.SketchType_MEMB, pb.SketchType_FREQ, pb.SketchType_RANK, pb.SketchType_CARD}
for _, ty := range types {
sketch := &pb.Sketch{}
sketch.Name = dom.Name
sketch.Type = &ty
sketch.Properties = &pb.SketchProperties{
Size: utils.Int64p(100),
MaxUniqueItems: utils.Int64p(10),
}
dom.Sketches = append(dom.Sketches, sketch)
}
return dom
}
示例2: createDomain
func createDomain(fields []string, in *pb.Domain) error {
if len(fields) > 5 {
return fmt.Errorf("Too many argumets, expected 4 got %d", len(fields))
}
// FIXME make last 2 arguments optional
capa, err := strconv.Atoi(fields[3])
if err != nil {
return fmt.Errorf("Expected 3rd argument to be of type int: %q", err)
}
size, err := strconv.Atoi(fields[4])
if err != nil {
return fmt.Errorf("Expected last argument to be of type int: %q", err)
}
types := []pb.SketchType{pb.SketchType_MEMB, pb.SketchType_FREQ, pb.SketchType_RANK, pb.SketchType_CARD}
for _, ty := range types {
sketch := &pb.Sketch{}
sketch.Name = proto.String("")
sketch.Type = &ty
sketch.Properties = &pb.SketchProperties{
Size: proto.Int64(int64(size)),
MaxUniqueItems: proto.Int64(int64(capa)),
}
in.Sketches = append(in.Sketches, sketch)
}
_, err = client.CreateDomain(context.Background(), in)
return err
}
示例3: createDomain
func (s *serverStruct) createDomain(ctx context.Context, in *pb.Domain) (*pb.Domain, error) {
info := datamodel.NewEmptyInfo()
info.Name = in.Name
// FIXME: A Domain's info should have an array of properties for each Sketch (or just an array
// of Sketches, like what the proto has). This is just a hack to choose the first Sketch and
// use it's info for now
info.Properties.MaxUniqueItems = in.GetSketches()[0].GetProperties().MaxUniqueItems
info.Properties.Size = in.GetSketches()[0].GetProperties().Size
if info.Properties.Size == nil || *info.Properties.Size == 0 {
var defaultSize int64 = 100
info.Properties.Size = &defaultSize
}
// FIXME: We should be passing a pb.Domain and not a datamodel.Info to manager.CreateDomain
err := s.manager.CreateDomain(info)
if err != nil {
return nil, err
}
return in, nil
}
示例4: GetDomain
func (s *serverStruct) GetDomain(ctx context.Context, in *pb.Domain) (*pb.Domain, error) {
return s.manager.GetDomain(in.GetName())
}
示例5: deleteDomain
func (s *serverStruct) deleteDomain(ctx context.Context, in *pb.Domain) (*pb.Empty, error) {
return &pb.Empty{}, s.manager.DeleteDomain(in.GetName())
}