| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // 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 bsoncodec | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"reflect" | 
					
						
							|  |  |  | 	"sync" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"go.mongodb.org/mongo-driver/bson/bsontype" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNilType is returned when nil is passed to either LookupEncoder or LookupDecoder. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: ErrNilType will not be supported in Go Driver 2.0. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | var ErrNilType = errors.New("cannot perform a decoder lookup on <nil>") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNotPointer is returned when a non-pointer type is provided to LookupDecoder. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: ErrNotPointer will not be supported in Go Driver 2.0. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | var ErrNotPointer = errors.New("non-pointer provided to LookupDecoder") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNoEncoder is returned when there wasn't an encoder available for a type. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: ErrNoEncoder will not be supported in Go Driver 2.0. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | type ErrNoEncoder struct { | 
					
						
							|  |  |  | 	Type reflect.Type | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (ene ErrNoEncoder) Error() string { | 
					
						
							|  |  |  | 	if ene.Type == nil { | 
					
						
							|  |  |  | 		return "no encoder found for <nil>" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return "no encoder found for " + ene.Type.String() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNoDecoder is returned when there wasn't a decoder available for a type. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: ErrNoDecoder will not be supported in Go Driver 2.0. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | type ErrNoDecoder struct { | 
					
						
							|  |  |  | 	Type reflect.Type | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (end ErrNoDecoder) Error() string { | 
					
						
							|  |  |  | 	return "no decoder found for " + end.Type.String() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNoTypeMapEntry is returned when there wasn't a type available for the provided BSON type. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: ErrNoTypeMapEntry will not be supported in Go Driver 2.0. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | type ErrNoTypeMapEntry struct { | 
					
						
							|  |  |  | 	Type bsontype.Type | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (entme ErrNoTypeMapEntry) Error() string { | 
					
						
							|  |  |  | 	return "no type map entry found for " + entme.Type.String() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNotInterface is returned when the provided type is not an interface. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: ErrNotInterface will not be supported in Go Driver 2.0. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | var ErrNotInterface = errors.New("The provided type is not an interface") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // A RegistryBuilder is used to build a Registry. This type is not goroutine | 
					
						
							|  |  |  | // safe. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | type RegistryBuilder struct { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	registry *Registry | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewRegistryBuilder creates a new empty RegistryBuilder. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use NewRegistry instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func NewRegistryBuilder() *RegistryBuilder { | 
					
						
							|  |  |  | 	return &RegistryBuilder{ | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		registry: NewRegistry(), | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterCodec will register the provided ValueCodec for the provided type. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterTypeEncoder and Registry.RegisterTypeDecoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterCodec(t reflect.Type, codec ValueCodec) *RegistryBuilder { | 
					
						
							|  |  |  | 	rb.RegisterTypeEncoder(t, codec) | 
					
						
							|  |  |  | 	rb.RegisterTypeDecoder(t, codec) | 
					
						
							|  |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterTypeEncoder will register the provided ValueEncoder for the provided type. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The type will be used directly, so an encoder can be registered for a type and a different encoder can be registered | 
					
						
							|  |  |  | // for a pointer to that type. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // If the given type is an interface, the encoder will be called when marshaling a type that is that interface. It | 
					
						
							|  |  |  | // will not be called when marshaling a non-interface type that implements the interface. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterTypeEncoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterTypeEncoder(t reflect.Type, enc ValueEncoder) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterTypeEncoder(t, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterHookEncoder will register an encoder for the provided interface type t. This encoder will be called when | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // marshaling a type if the type implements t or a pointer to the type implements t. If the provided type is not | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // an interface (i.e. t.Kind() != reflect.Interface), this method will panic. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterInterfaceEncoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterHookEncoder(t reflect.Type, enc ValueEncoder) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterInterfaceEncoder(t, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterTypeDecoder will register the provided ValueDecoder for the provided type. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The type will be used directly, so a decoder can be registered for a type and a different decoder can be registered | 
					
						
							|  |  |  | // for a pointer to that type. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // If the given type is an interface, the decoder will be called when unmarshaling into a type that is that interface. | 
					
						
							|  |  |  | // It will not be called when unmarshaling into a non-interface type that implements the interface. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterTypeDecoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterTypeDecoder(t reflect.Type, dec ValueDecoder) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterTypeDecoder(t, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterHookDecoder will register an decoder for the provided interface type t. This decoder will be called when | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // unmarshaling into a type if the type implements t or a pointer to the type implements t. If the provided type is not | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // an interface (i.e. t.Kind() != reflect.Interface), this method will panic. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterInterfaceDecoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterHookDecoder(t reflect.Type, dec ValueDecoder) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterInterfaceDecoder(t, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterEncoder registers the provided type and encoder pair. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // Deprecated: Use Registry.RegisterTypeEncoder or Registry.RegisterInterfaceEncoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterEncoder(t reflect.Type, enc ValueEncoder) *RegistryBuilder { | 
					
						
							|  |  |  | 	if t == tEmpty { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterTypeEncoder(t, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		return rb | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	switch t.Kind() { | 
					
						
							|  |  |  | 	case reflect.Interface: | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterInterfaceEncoder(t, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterTypeEncoder(t, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterDecoder registers the provided type and decoder pair. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // Deprecated: Use Registry.RegisterTypeDecoder or Registry.RegisterInterfaceDecoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterDecoder(t reflect.Type, dec ValueDecoder) *RegistryBuilder { | 
					
						
							|  |  |  | 	if t == nil { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterTypeDecoder(t, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		return rb | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if t == tEmpty { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterTypeDecoder(t, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		return rb | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	switch t.Kind() { | 
					
						
							|  |  |  | 	case reflect.Interface: | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterInterfaceDecoder(t, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		rb.registry.RegisterTypeDecoder(t, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // RegisterDefaultEncoder will register the provided ValueEncoder to the provided | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // kind. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterKindEncoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterDefaultEncoder(kind reflect.Kind, enc ValueEncoder) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterKindEncoder(kind, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterDefaultDecoder will register the provided ValueDecoder to the | 
					
						
							|  |  |  | // provided kind. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterKindDecoder instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterDefaultDecoder(kind reflect.Kind, dec ValueDecoder) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterKindDecoder(kind, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterTypeMapEntry will register the provided type to the BSON type. The primary usage for this | 
					
						
							|  |  |  | // mapping is decoding situations where an empty interface is used and a default type needs to be | 
					
						
							|  |  |  | // created and decoded into. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // By default, BSON documents will decode into interface{} values as bson.D. To change the default type for BSON | 
					
						
							|  |  |  | // documents, a type map entry for bsontype.EmbeddedDocument should be registered. For example, to force BSON documents | 
					
						
							|  |  |  | // to decode to bson.Raw, use the following code: | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //	rb.RegisterTypeMapEntry(bsontype.EmbeddedDocument, reflect.TypeOf(bson.Raw{})) | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use Registry.RegisterTypeMapEntry instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) RegisterTypeMapEntry(bt bsontype.Type, rt reflect.Type) *RegistryBuilder { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.RegisterTypeMapEntry(bt, rt) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	return rb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Build creates a Registry from the current state of this RegistryBuilder. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // Deprecated: Use NewRegistry instead. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (rb *RegistryBuilder) Build() *Registry { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	r := &Registry{ | 
					
						
							|  |  |  | 		interfaceEncoders: append([]interfaceValueEncoder(nil), rb.registry.interfaceEncoders...), | 
					
						
							|  |  |  | 		interfaceDecoders: append([]interfaceValueDecoder(nil), rb.registry.interfaceDecoders...), | 
					
						
							|  |  |  | 		typeEncoders:      rb.registry.typeEncoders.Clone(), | 
					
						
							|  |  |  | 		typeDecoders:      rb.registry.typeDecoders.Clone(), | 
					
						
							|  |  |  | 		kindEncoders:      rb.registry.kindEncoders.Clone(), | 
					
						
							|  |  |  | 		kindDecoders:      rb.registry.kindDecoders.Clone(), | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	rb.registry.typeMap.Range(func(k, v interface{}) bool { | 
					
						
							|  |  |  | 		if k != nil && v != nil { | 
					
						
							|  |  |  | 			r.typeMap.Store(k, v) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return true | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 	return r | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // A Registry is used to store and retrieve codecs for types and interfaces. This type is the main | 
					
						
							|  |  |  | // typed passed around and Encoders and Decoders are constructed from it. | 
					
						
							|  |  |  | type Registry struct { | 
					
						
							|  |  |  | 	interfaceEncoders []interfaceValueEncoder | 
					
						
							|  |  |  | 	interfaceDecoders []interfaceValueDecoder | 
					
						
							|  |  |  | 	typeEncoders      *typeEncoderCache | 
					
						
							|  |  |  | 	typeDecoders      *typeDecoderCache | 
					
						
							|  |  |  | 	kindEncoders      *kindEncoderCache | 
					
						
							|  |  |  | 	kindDecoders      *kindDecoderCache | 
					
						
							|  |  |  | 	typeMap           sync.Map // map[bsontype.Type]reflect.Type | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NewRegistry creates a new empty Registry. | 
					
						
							|  |  |  | func NewRegistry() *Registry { | 
					
						
							|  |  |  | 	return &Registry{ | 
					
						
							|  |  |  | 		typeEncoders: new(typeEncoderCache), | 
					
						
							|  |  |  | 		typeDecoders: new(typeDecoderCache), | 
					
						
							|  |  |  | 		kindEncoders: new(kindEncoderCache), | 
					
						
							|  |  |  | 		kindDecoders: new(kindDecoderCache), | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterTypeEncoder registers the provided ValueEncoder for the provided type. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The type will be used as provided, so an encoder can be registered for a type and a different | 
					
						
							|  |  |  | // encoder can be registered for a pointer to that type. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // If the given type is an interface, the encoder will be called when marshaling a type that is | 
					
						
							|  |  |  | // that interface. It will not be called when marshaling a non-interface type that implements the | 
					
						
							|  |  |  | // interface. To get the latter behavior, call RegisterHookEncoder instead. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // RegisterTypeEncoder should not be called concurrently with any other Registry method. | 
					
						
							|  |  |  | func (r *Registry) RegisterTypeEncoder(valueType reflect.Type, enc ValueEncoder) { | 
					
						
							|  |  |  | 	r.typeEncoders.Store(valueType, enc) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterTypeDecoder registers the provided ValueDecoder for the provided type. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The type will be used as provided, so a decoder can be registered for a type and a different | 
					
						
							|  |  |  | // decoder can be registered for a pointer to that type. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // If the given type is an interface, the decoder will be called when unmarshaling into a type that | 
					
						
							|  |  |  | // is that interface. It will not be called when unmarshaling into a non-interface type that | 
					
						
							|  |  |  | // implements the interface. To get the latter behavior, call RegisterHookDecoder instead. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // RegisterTypeDecoder should not be called concurrently with any other Registry method. | 
					
						
							|  |  |  | func (r *Registry) RegisterTypeDecoder(valueType reflect.Type, dec ValueDecoder) { | 
					
						
							|  |  |  | 	r.typeDecoders.Store(valueType, dec) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // RegisterKindEncoder registers the provided ValueEncoder for the provided kind. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Use RegisterKindEncoder to register an encoder for any type with the same underlying kind. For | 
					
						
							|  |  |  | // example, consider the type MyInt defined as | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //	type MyInt int32 | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // To define an encoder for MyInt and int32, use RegisterKindEncoder like | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //	reg.RegisterKindEncoder(reflect.Int32, myEncoder) | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // RegisterKindEncoder should not be called concurrently with any other Registry method. | 
					
						
							|  |  |  | func (r *Registry) RegisterKindEncoder(kind reflect.Kind, enc ValueEncoder) { | 
					
						
							|  |  |  | 	r.kindEncoders.Store(kind, enc) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // RegisterKindDecoder registers the provided ValueDecoder for the provided kind. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Use RegisterKindDecoder to register a decoder for any type with the same underlying kind. For | 
					
						
							|  |  |  | // example, consider the type MyInt defined as | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //	type MyInt int32 | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // To define an decoder for MyInt and int32, use RegisterKindDecoder like | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //	reg.RegisterKindDecoder(reflect.Int32, myDecoder) | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // RegisterKindDecoder should not be called concurrently with any other Registry method. | 
					
						
							|  |  |  | func (r *Registry) RegisterKindDecoder(kind reflect.Kind, dec ValueDecoder) { | 
					
						
							|  |  |  | 	r.kindDecoders.Store(kind, dec) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // RegisterInterfaceEncoder registers an encoder for the provided interface type iface. This encoder will | 
					
						
							|  |  |  | // be called when marshaling a type if the type implements iface or a pointer to the type | 
					
						
							|  |  |  | // implements iface. If the provided type is not an interface | 
					
						
							|  |  |  | // (i.e. iface.Kind() != reflect.Interface), this method will panic. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // RegisterInterfaceEncoder should not be called concurrently with any other Registry method. | 
					
						
							|  |  |  | func (r *Registry) RegisterInterfaceEncoder(iface reflect.Type, enc ValueEncoder) { | 
					
						
							|  |  |  | 	if iface.Kind() != reflect.Interface { | 
					
						
							|  |  |  | 		panicStr := fmt.Errorf("RegisterInterfaceEncoder expects a type with kind reflect.Interface, "+ | 
					
						
							|  |  |  | 			"got type %s with kind %s", iface, iface.Kind()) | 
					
						
							|  |  |  | 		panic(panicStr) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	for idx, encoder := range r.interfaceEncoders { | 
					
						
							|  |  |  | 		if encoder.i == iface { | 
					
						
							|  |  |  | 			r.interfaceEncoders[idx].ve = enc | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	r.interfaceEncoders = append(r.interfaceEncoders, interfaceValueEncoder{i: iface, ve: enc}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterInterfaceDecoder registers an decoder for the provided interface type iface. This decoder will | 
					
						
							|  |  |  | // be called when unmarshaling into a type if the type implements iface or a pointer to the type | 
					
						
							|  |  |  | // implements iface. If the provided type is not an interface (i.e. iface.Kind() != reflect.Interface), | 
					
						
							|  |  |  | // this method will panic. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // RegisterInterfaceDecoder should not be called concurrently with any other Registry method. | 
					
						
							|  |  |  | func (r *Registry) RegisterInterfaceDecoder(iface reflect.Type, dec ValueDecoder) { | 
					
						
							|  |  |  | 	if iface.Kind() != reflect.Interface { | 
					
						
							|  |  |  | 		panicStr := fmt.Errorf("RegisterInterfaceDecoder expects a type with kind reflect.Interface, "+ | 
					
						
							|  |  |  | 			"got type %s with kind %s", iface, iface.Kind()) | 
					
						
							|  |  |  | 		panic(panicStr) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	for idx, decoder := range r.interfaceDecoders { | 
					
						
							|  |  |  | 		if decoder.i == iface { | 
					
						
							|  |  |  | 			r.interfaceDecoders[idx].vd = dec | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	r.interfaceDecoders = append(r.interfaceDecoders, interfaceValueDecoder{i: iface, vd: dec}) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // RegisterTypeMapEntry will register the provided type to the BSON type. The primary usage for this | 
					
						
							|  |  |  | // mapping is decoding situations where an empty interface is used and a default type needs to be | 
					
						
							|  |  |  | // created and decoded into. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // By default, BSON documents will decode into interface{} values as bson.D. To change the default type for BSON | 
					
						
							|  |  |  | // documents, a type map entry for bsontype.EmbeddedDocument should be registered. For example, to force BSON documents | 
					
						
							|  |  |  | // to decode to bson.Raw, use the following code: | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | //	reg.RegisterTypeMapEntry(bsontype.EmbeddedDocument, reflect.TypeOf(bson.Raw{})) | 
					
						
							|  |  |  | func (r *Registry) RegisterTypeMapEntry(bt bsontype.Type, rt reflect.Type) { | 
					
						
							|  |  |  | 	r.typeMap.Store(bt, rt) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // LookupEncoder returns the first matching encoder in the Registry. It uses the following lookup | 
					
						
							|  |  |  | // order: | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 1. An encoder registered for the exact type. If the given type is an interface, an encoder | 
					
						
							|  |  |  | // registered using RegisterTypeEncoder for that interface will be selected. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // 2. An encoder registered using RegisterInterfaceEncoder for an interface implemented by the type | 
					
						
							|  |  |  | // or by a pointer to the type. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // 3. An encoder registered using RegisterKindEncoder for the kind of value. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // If no encoder is found, an error of type ErrNoEncoder is returned. LookupEncoder is safe for | 
					
						
							|  |  |  | // concurrent use by multiple goroutines after all codecs and encoders are registered. | 
					
						
							|  |  |  | func (r *Registry) LookupEncoder(valueType reflect.Type) (ValueEncoder, error) { | 
					
						
							|  |  |  | 	if valueType == nil { | 
					
						
							|  |  |  | 		return nil, ErrNoEncoder{Type: valueType} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	enc, found := r.lookupTypeEncoder(valueType) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	if found { | 
					
						
							|  |  |  | 		if enc == nil { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 			return nil, ErrNoEncoder{Type: valueType} | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return enc, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	enc, found = r.lookupInterfaceEncoder(valueType, true) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	if found { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		return r.typeEncoders.LoadOrStore(valueType, enc), nil | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	if v, ok := r.kindEncoders.Load(valueType.Kind()); ok { | 
					
						
							|  |  |  | 		return r.storeTypeEncoder(valueType, v), nil | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	return nil, ErrNoEncoder{Type: valueType} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | func (r *Registry) storeTypeEncoder(rt reflect.Type, enc ValueEncoder) ValueEncoder { | 
					
						
							|  |  |  | 	return r.typeEncoders.LoadOrStore(rt, enc) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | func (r *Registry) lookupTypeEncoder(rt reflect.Type) (ValueEncoder, bool) { | 
					
						
							|  |  |  | 	return r.typeEncoders.Load(rt) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | func (r *Registry) lookupInterfaceEncoder(valueType reflect.Type, allowAddr bool) (ValueEncoder, bool) { | 
					
						
							|  |  |  | 	if valueType == nil { | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		return nil, false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for _, ienc := range r.interfaceEncoders { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		if valueType.Implements(ienc.i) { | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 			return ienc.ve, true | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		if allowAddr && valueType.Kind() != reflect.Ptr && reflect.PtrTo(valueType).Implements(ienc.i) { | 
					
						
							|  |  |  | 			// if *t implements an interface, this will catch if t implements an interface further | 
					
						
							|  |  |  | 			// ahead in interfaceEncoders | 
					
						
							|  |  |  | 			defaultEnc, found := r.lookupInterfaceEncoder(valueType, false) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 			if !found { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 				defaultEnc, _ = r.kindEncoders.Load(valueType.Kind()) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return newCondAddrEncoder(ienc.ve, defaultEnc), true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil, false | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // LookupDecoder returns the first matching decoder in the Registry. It uses the following lookup | 
					
						
							|  |  |  | // order: | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // 1. A decoder registered for the exact type. If the given type is an interface, a decoder | 
					
						
							|  |  |  | // registered using RegisterTypeDecoder for that interface will be selected. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // 2. A decoder registered using RegisterInterfaceDecoder for an interface implemented by the type or by | 
					
						
							|  |  |  | // a pointer to the type. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // 3. A decoder registered using RegisterKindDecoder for the kind of value. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // If no decoder is found, an error of type ErrNoDecoder is returned. LookupDecoder is safe for | 
					
						
							|  |  |  | // concurrent use by multiple goroutines after all codecs and decoders are registered. | 
					
						
							|  |  |  | func (r *Registry) LookupDecoder(valueType reflect.Type) (ValueDecoder, error) { | 
					
						
							|  |  |  | 	if valueType == nil { | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		return nil, ErrNilType | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	dec, found := r.lookupTypeDecoder(valueType) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	if found { | 
					
						
							|  |  |  | 		if dec == nil { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 			return nil, ErrNoDecoder{Type: valueType} | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return dec, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	dec, found = r.lookupInterfaceDecoder(valueType, true) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	if found { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		return r.storeTypeDecoder(valueType, dec), nil | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	if v, ok := r.kindDecoders.Load(valueType.Kind()); ok { | 
					
						
							|  |  |  | 		return r.storeTypeDecoder(valueType, v), nil | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	return nil, ErrNoDecoder{Type: valueType} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | func (r *Registry) lookupTypeDecoder(valueType reflect.Type) (ValueDecoder, bool) { | 
					
						
							|  |  |  | 	return r.typeDecoders.Load(valueType) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | func (r *Registry) storeTypeDecoder(typ reflect.Type, dec ValueDecoder) ValueDecoder { | 
					
						
							|  |  |  | 	return r.typeDecoders.LoadOrStore(typ, dec) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | func (r *Registry) lookupInterfaceDecoder(valueType reflect.Type, allowAddr bool) (ValueDecoder, bool) { | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 	for _, idec := range r.interfaceDecoders { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		if valueType.Implements(idec.i) { | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 			return idec.vd, true | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 		if allowAddr && valueType.Kind() != reflect.Ptr && reflect.PtrTo(valueType).Implements(idec.i) { | 
					
						
							|  |  |  | 			// if *t implements an interface, this will catch if t implements an interface further | 
					
						
							|  |  |  | 			// ahead in interfaceDecoders | 
					
						
							|  |  |  | 			defaultDec, found := r.lookupInterfaceDecoder(valueType, false) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 			if !found { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 				defaultDec, _ = r.kindDecoders.Load(valueType.Kind()) | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return newCondAddrDecoder(idec.vd, defaultDec), true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil, false | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // LookupTypeMapEntry inspects the registry's type map for a Go type for the corresponding BSON | 
					
						
							|  |  |  | // type. If no type is found, ErrNoTypeMapEntry is returned. | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | // | 
					
						
							|  |  |  | // LookupTypeMapEntry should not be called concurrently with any other Registry method. | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | func (r *Registry) LookupTypeMapEntry(bt bsontype.Type) (reflect.Type, error) { | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	v, ok := r.typeMap.Load(bt) | 
					
						
							|  |  |  | 	if v == nil || !ok { | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | 		return nil, ErrNoTypeMapEntry{Type: bt} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 11:00:36 +00:00
										 |  |  | 	return v.(reflect.Type), nil | 
					
						
							| 
									
										
										
										
											2024-03-06 09:05:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type interfaceValueEncoder struct { | 
					
						
							|  |  |  | 	i  reflect.Type | 
					
						
							|  |  |  | 	ve ValueEncoder | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type interfaceValueDecoder struct { | 
					
						
							|  |  |  | 	i  reflect.Type | 
					
						
							|  |  |  | 	vd ValueDecoder | 
					
						
							|  |  |  | } |