1
0
mirror of https://github.com/google/uuid.git synced 2024-11-28 08:49:08 +02:00
uuid/sql.go

60 lines
1.4 KiB
Go
Raw Normal View History

// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package uuid
import (
"database/sql/driver"
"fmt"
)
// Scan implements sql.Scanner so UUIDs can be read from databases transparently
// Currently, database types that map to string and []byte are supported. Please
// consult database-specific driver documentation for matching types.
func (uuid *UUID) Scan(src interface{}) error {
2017-03-04 00:58:01 +02:00
switch src := src.(type) {
2017-03-04 00:59:38 +02:00
case nil:
return nil
case string:
// if an empty UUID comes from a table, we return a null UUID
2017-03-04 00:58:01 +02:00
if src == "" {
return nil
}
// see Parse for required string format
2017-03-04 00:58:01 +02:00
u, err := Parse(src)
if err != nil {
return fmt.Errorf("Scan: %v", err)
}
*uuid = u
2017-03-04 00:58:01 +02:00
case []byte:
// if an empty UUID comes from a table, we return a null UUID
2017-03-04 00:58:01 +02:00
if len(src) == 0 {
return nil
}
// assumes a simple slice of bytes if 16 bytes
// otherwise attempts to parse
2017-03-04 00:58:01 +02:00
if len(src) != 16 {
return uuid.Scan(string(src))
}
2017-03-04 00:58:01 +02:00
copy((*uuid)[:], src)
default:
return fmt.Errorf("Scan: unable to scan type %T into UUID", src)
}
return nil
}
// Value implements sql.Valuer so that UUIDs can be written to databases
2016-02-09 01:46:22 +02:00
// transparently. Currently, UUIDs map to strings. Please consult
// database-specific driver documentation for matching types.
2015-11-25 01:42:06 +02:00
func (uuid UUID) Value() (driver.Value, error) {
return uuid.String(), nil
}