Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support returning any from callbacks #1046

Merged
merged 4 commits into from May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions callback.go
Expand Up @@ -353,13 +353,32 @@ func callbackRetNil(ctx *C.sqlite3_context, v reflect.Value) error {
return nil
}

func callbackRetGeneric(ctx *C.sqlite3_context, v reflect.Value) error {
if v.IsNil() {
C.sqlite3_result_null(ctx)
return nil
}

cb, err := callbackRet(v.Elem().Type())
if err != nil {
return err
}

return cb(ctx, v.Elem())
}

func callbackRet(typ reflect.Type) (callbackRetConverter, error) {
switch typ.Kind() {
case reflect.Interface:
errorInterface := reflect.TypeOf((*error)(nil)).Elem()
if typ.Implements(errorInterface) {
return callbackRetNil, nil
}

if typ.NumMethod() == 0 {
return callbackRetGeneric, nil
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a test for this part. But I'm not sure how to add a unit test for the callbackRetAny (I tested it manually end-to-end).

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can write a test that registers and uses such an aggregator, similar to this test.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect, thank you!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pushed a test.


fallthrough
case reflect.Slice:
if typ.Elem().Kind() != reflect.Uint8 {
Expand Down
12 changes: 12 additions & 0 deletions callback_test.go
Expand Up @@ -102,3 +102,15 @@ func TestCallbackConverters(t *testing.T) {
}
}
}

func TestCallbackReturnAny(t *testing.T) {
udf := func() interface{} {
return 1
}

typ := reflect.TypeOf(udf)
_, err := callbackRet(typ.Out(0))
if err != nil {
t.Errorf("Expected valid callback for any return type, got: %s", err)
}
}
57 changes: 57 additions & 0 deletions sqlite3_test.go
Expand Up @@ -1449,6 +1449,63 @@ func TestAggregatorRegistration(t *testing.T) {
}
}

type mode struct {
counts map[interface{}]int
top interface{}
topCount int
}

func newMode() *mode {
return &mode{
counts: map[interface{}]int{},
}
}

func (m *mode) Step(x interface{}) {
m.counts[x]++
c := m.counts[x]
if c > m.topCount {
m.top = x
m.topCount = c
}
}

func (m *mode) Done() interface{} {
return m.top
}

func TestAggregatorRegistration_GenericReturn(t *testing.T) {
sql.Register("sqlite3_AggregatorRegistration_GenericReturn", &SQLiteDriver{
ConnectHook: func(conn *SQLiteConn) error {
return conn.RegisterAggregator("mode", newMode, true)
},
})
db, err := sql.Open("sqlite3_AggregatorRegistration_GenericReturn", ":memory:")
if err != nil {
t.Fatal("Failed to open database:", err)
}
defer db.Close()

_, err = db.Exec("create table foo (department integer, profits integer)")
if err != nil {
t.Fatal("Failed to create table:", err)
}
_, err = db.Exec("insert into foo values (1, 10), (1, 20), (1, 45), (2, 42), (2, 115), (2, 20)")
if err != nil {
t.Fatal("Failed to insert records:", err)
}

var mode int
err = db.QueryRow("select mode(profits) from foo").Scan(&mode)
if err != nil {
t.Fatal("MODE query error:", err)
}

if mode != 20 {
t.Fatal("Got incorrect mode. Wanted 20, got: ", mode)
}
}

func rot13(r rune) rune {
switch {
case r >= 'A' && r <= 'Z':
Expand Down