mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	![dependabot-preview[bot]](/assets/img/avatar_default.png) cdd1f2bbaf
			
		
	
	cdd1f2bbaf
	
	
	
		
			
			Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.0 to 1.10.1. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.10.0...v1.10.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2019 The Go Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package proto
 | |
| 
 | |
| import (
 | |
| 	"google.golang.org/protobuf/reflect/protoreflect"
 | |
| )
 | |
| 
 | |
| // SetDefaults sets unpopulated scalar fields to their default values.
 | |
| // Fields within a oneof are not set even if they have a default value.
 | |
| // SetDefaults is recursively called upon any populated message fields.
 | |
| func SetDefaults(m Message) {
 | |
| 	if m != nil {
 | |
| 		setDefaults(MessageReflect(m))
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func setDefaults(m protoreflect.Message) {
 | |
| 	fds := m.Descriptor().Fields()
 | |
| 	for i := 0; i < fds.Len(); i++ {
 | |
| 		fd := fds.Get(i)
 | |
| 		if !m.Has(fd) {
 | |
| 			if fd.HasDefault() && fd.ContainingOneof() == nil {
 | |
| 				v := fd.Default()
 | |
| 				if fd.Kind() == protoreflect.BytesKind {
 | |
| 					v = protoreflect.ValueOf(append([]byte(nil), v.Bytes()...)) // copy the default bytes
 | |
| 				}
 | |
| 				m.Set(fd, v)
 | |
| 			}
 | |
| 			continue
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	m.Range(func(fd protoreflect.FieldDescriptor, v protoreflect.Value) bool {
 | |
| 		switch {
 | |
| 		// Handle singular message.
 | |
| 		case fd.Cardinality() != protoreflect.Repeated:
 | |
| 			if fd.Message() != nil {
 | |
| 				setDefaults(m.Get(fd).Message())
 | |
| 			}
 | |
| 		// Handle list of messages.
 | |
| 		case fd.IsList():
 | |
| 			if fd.Message() != nil {
 | |
| 				ls := m.Get(fd).List()
 | |
| 				for i := 0; i < ls.Len(); i++ {
 | |
| 					setDefaults(ls.Get(i).Message())
 | |
| 				}
 | |
| 			}
 | |
| 		// Handle map of messages.
 | |
| 		case fd.IsMap():
 | |
| 			if fd.MapValue().Message() != nil {
 | |
| 				ms := m.Get(fd).Map()
 | |
| 				ms.Range(func(_ protoreflect.MapKey, v protoreflect.Value) bool {
 | |
| 					setDefaults(v.Message())
 | |
| 					return true
 | |
| 				})
 | |
| 			}
 | |
| 		}
 | |
| 		return true
 | |
| 	})
 | |
| }
 |