mirror of
https://github.com/jackc/pgx.git
synced 2025-05-31 11:42:24 +00:00
Set having the capability to assign an object of the same type was inconsistently implemented. Some places it was not implemented at all, some places it was a shallow copy, some places a deep copy. Given that it doesn't seem likely to ever be used, and if it is needed it is easy enough to do outside of the library this code has been removed.
208 lines
4.2 KiB
Go
208 lines
4.2 KiB
Go
package pgtype
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"reflect"
|
|
|
|
"github.com/jackc/pgx/pgio"
|
|
)
|
|
|
|
// Network address family is dependent on server socket.h value for AF_INET.
|
|
// In practice, all platforms appear to have the same value. See
|
|
// src/include/utils/inet.h for more information.
|
|
const (
|
|
defaultAFInet = 2
|
|
defaultAFInet6 = 3
|
|
)
|
|
|
|
// Inet represents both inet and cidr PostgreSQL types.
|
|
type Inet struct {
|
|
IPNet *net.IPNet
|
|
Status Status
|
|
}
|
|
|
|
func (dst *Inet) Set(src interface{}) error {
|
|
switch value := src.(type) {
|
|
case net.IPNet:
|
|
*dst = Inet{IPNet: &value, Status: Present}
|
|
case *net.IPNet:
|
|
*dst = Inet{IPNet: value, Status: Present}
|
|
case net.IP:
|
|
bitCount := len(value) * 8
|
|
mask := net.CIDRMask(bitCount, bitCount)
|
|
*dst = Inet{IPNet: &net.IPNet{Mask: mask, IP: value}, Status: Present}
|
|
case string:
|
|
_, ipnet, err := net.ParseCIDR(value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*dst = Inet{IPNet: ipnet, Status: Present}
|
|
default:
|
|
if originalSrc, ok := underlyingPtrType(src); ok {
|
|
return dst.Set(originalSrc)
|
|
}
|
|
return fmt.Errorf("cannot convert %v to Inet", value)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (dst *Inet) Get() interface{} {
|
|
switch dst.Status {
|
|
case Present:
|
|
return dst.IPNet
|
|
case Null:
|
|
return nil
|
|
default:
|
|
return dst.Status
|
|
}
|
|
}
|
|
|
|
func (src *Inet) AssignTo(dst interface{}) error {
|
|
switch v := dst.(type) {
|
|
case *net.IPNet:
|
|
if src.Status != Present {
|
|
return fmt.Errorf("cannot assign %v to %T", src, dst)
|
|
}
|
|
*v = *src.IPNet
|
|
case *net.IP:
|
|
if src.Status == Present {
|
|
|
|
if oneCount, bitCount := src.IPNet.Mask.Size(); oneCount != bitCount {
|
|
return fmt.Errorf("cannot assign %v to %T", src, dst)
|
|
}
|
|
*v = src.IPNet.IP
|
|
} else {
|
|
*v = nil
|
|
}
|
|
default:
|
|
if v := reflect.ValueOf(dst); v.Kind() == reflect.Ptr {
|
|
el := v.Elem()
|
|
switch el.Kind() {
|
|
// if dst is a pointer to pointer, strip the pointer and try again
|
|
case reflect.Ptr:
|
|
if src.Status == Null {
|
|
el.Set(reflect.Zero(el.Type()))
|
|
return nil
|
|
}
|
|
if el.IsNil() {
|
|
// allocate destination
|
|
el.Set(reflect.New(el.Type().Elem()))
|
|
}
|
|
return src.AssignTo(el.Interface())
|
|
}
|
|
}
|
|
return fmt.Errorf("cannot decode %v into %T", src, dst)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (dst *Inet) DecodeText(src []byte) error {
|
|
if src == nil {
|
|
*dst = Inet{Status: Null}
|
|
return nil
|
|
}
|
|
|
|
var ipnet *net.IPNet
|
|
var err error
|
|
|
|
if ip := net.ParseIP(string(src)); ip != nil {
|
|
ipv4 := ip.To4()
|
|
if ipv4 != nil {
|
|
ip = ipv4
|
|
}
|
|
bitCount := len(ip) * 8
|
|
mask := net.CIDRMask(bitCount, bitCount)
|
|
ipnet = &net.IPNet{Mask: mask, IP: ip}
|
|
} else {
|
|
_, ipnet, err = net.ParseCIDR(string(src))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
*dst = Inet{IPNet: ipnet, Status: Present}
|
|
return nil
|
|
}
|
|
|
|
func (dst *Inet) DecodeBinary(src []byte) error {
|
|
if src == nil {
|
|
*dst = Inet{Status: Null}
|
|
return nil
|
|
}
|
|
|
|
if len(src) != 8 && len(src) != 20 {
|
|
return fmt.Errorf("Received an invalid size for a inet: %d", len(src))
|
|
}
|
|
|
|
// ignore family
|
|
bits := src[1]
|
|
// ignore is_cidr
|
|
addressLength := src[3]
|
|
|
|
var ipnet net.IPNet
|
|
ipnet.IP = make(net.IP, int(addressLength))
|
|
copy(ipnet.IP, src[4:])
|
|
ipnet.Mask = net.CIDRMask(int(bits), int(addressLength)*8)
|
|
|
|
*dst = Inet{IPNet: &ipnet, Status: Present}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (src Inet) EncodeText(w io.Writer) (bool, error) {
|
|
switch src.Status {
|
|
case Null:
|
|
return true, nil
|
|
case Undefined:
|
|
return false, errUndefined
|
|
}
|
|
|
|
_, err := io.WriteString(w, src.IPNet.String())
|
|
return false, err
|
|
}
|
|
|
|
// EncodeBinary encodes src into w.
|
|
func (src Inet) EncodeBinary(w io.Writer) (bool, error) {
|
|
switch src.Status {
|
|
case Null:
|
|
return true, nil
|
|
case Undefined:
|
|
return false, errUndefined
|
|
}
|
|
|
|
var family byte
|
|
switch len(src.IPNet.IP) {
|
|
case net.IPv4len:
|
|
family = defaultAFInet
|
|
case net.IPv6len:
|
|
family = defaultAFInet6
|
|
default:
|
|
return false, fmt.Errorf("Unexpected IP length: %v", len(src.IPNet.IP))
|
|
}
|
|
|
|
if err := pgio.WriteByte(w, family); err != nil {
|
|
return false, err
|
|
}
|
|
|
|
ones, _ := src.IPNet.Mask.Size()
|
|
if err := pgio.WriteByte(w, byte(ones)); err != nil {
|
|
return false, err
|
|
}
|
|
|
|
// is_cidr is ignored on server
|
|
if err := pgio.WriteByte(w, 0); err != nil {
|
|
return false, err
|
|
}
|
|
|
|
if err := pgio.WriteByte(w, byte(len(src.IPNet.IP))); err != nil {
|
|
return false, err
|
|
}
|
|
|
|
_, err := w.Write(src.IPNet.IP)
|
|
return false, err
|
|
}
|