Skip to content

Commit

Permalink
Merge pull request #128 from ben-krieger/d1-blob
Browse files Browse the repository at this point in the history
Support []byte arguments to D1 Query/Exec
  • Loading branch information
syumai authored Nov 7, 2024
2 parents dfdd7e7 + 6642597 commit f0f5c6f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
13 changes: 10 additions & 3 deletions cloudflare/d1/rows.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import (
"math"
"sync"
"syscall/js"

"github.com/syumai/workers/internal/jsutil"
)

type rows struct {
Expand Down Expand Up @@ -61,9 +63,14 @@ func convertRowColumnValueToAny(v js.Value) (driver.Value, error) {
case js.TypeString:
return v.String(), nil
case js.TypeObject:
// TODO: handle BLOB type (ArrayBuffer).
// see: https://developers.cloudflare.com/d1/platform/client-api/#type-conversion
return nil, errors.New("d1: row column value type object is not currently supported")
// handle BLOB type (ArrayBuffer).
src := jsutil.Uint8ArrayClass.New(v)
dst := make([]byte, src.Length())
n := js.CopyBytesToGo(dst, src)
if n != len(dst) {
return nil, errors.New("incomplete copy from Uint8Array")
}
return dst[:n], nil
}
return nil, errors.New("d1: unexpected row column value type")
}
Expand Down
22 changes: 19 additions & 3 deletions cloudflare/d1/stmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,19 @@ func (s *stmt) Exec([]driver.Value) (driver.Result, error) {
}

// ExecContext executes prepared statement.
// Given []drier.NamedValue's `Name` field will be ignored because Cloudflare D1 client doesn't support it.
// Given []driver.NamedValue's `Name` field will be ignored because Cloudflare D1 client doesn't support it.
func (s *stmt) ExecContext(_ context.Context, args []driver.NamedValue) (driver.Result, error) {
argValues := make([]any, len(args))
for i, arg := range args {
argValues[i] = arg.Value
if src, ok := arg.Value.([]byte); ok {
dst := jsutil.Uint8ArrayClass.New(len(src))
if n := js.CopyBytesToJS(dst, src); n != len(src) {
return nil, errors.New("incomplete copy into Uint8Array")
}
argValues[i] = dst
} else {
argValues[i] = arg.Value
}
}
resultPromise := s.stmtObj.Call("bind", argValues...).Call("run")
resultObj, err := jsutil.AwaitPromise(resultPromise)
Expand All @@ -57,7 +65,15 @@ func (s *stmt) Query([]driver.Value) (driver.Rows, error) {
func (s *stmt) QueryContext(_ context.Context, args []driver.NamedValue) (driver.Rows, error) {
argValues := make([]any, len(args))
for i, arg := range args {
argValues[i] = arg.Value
if src, ok := arg.Value.([]byte); ok {
dst := jsutil.Uint8ArrayClass.New(len(src))
if n := js.CopyBytesToJS(dst, src); n != len(src) {
return nil, errors.New("incomplete copy into Uint8Array")
}
argValues[i] = dst
} else {
argValues[i] = arg.Value
}
}
resultPromise := s.stmtObj.Call("bind", argValues...).Call("raw", map[string]any{"columnNames": true})
rowsArray, err := jsutil.AwaitPromise(resultPromise)
Expand Down

0 comments on commit f0f5c6f

Please sign in to comment.