|
5 | 5 |
|
6 | 6 | package sqlite3
|
7 | 7 |
|
| 8 | +// You can't export a Go function to C and have definitions in the C |
| 9 | +// preamble in the same file, so we have to have callbackTrampoline in |
| 10 | +// its own file. Because we need a separate file anyway, the support |
| 11 | +// code for SQLite custom functions is in here. |
| 12 | + |
8 | 13 | /*
|
9 | 14 | #include <sqlite3-binding.h>
|
| 15 | +
|
| 16 | +void _sqlite3_result_text(sqlite3_context* ctx, const char* s); |
| 17 | +void _sqlite3_result_blob(sqlite3_context* ctx, const void* b, int l); |
10 | 18 | */
|
11 | 19 | import "C"
|
12 | 20 |
|
13 |
| -import "unsafe" |
| 21 | +import ( |
| 22 | + "errors" |
| 23 | + "fmt" |
| 24 | + "reflect" |
| 25 | + "unsafe" |
| 26 | +) |
14 | 27 |
|
15 | 28 | //export callbackTrampoline
|
16 | 29 | func callbackTrampoline(ctx *C.sqlite3_context, argc int, argv **C.sqlite3_value) {
|
17 | 30 | args := (*[1 << 30]*C.sqlite3_value)(unsafe.Pointer(argv))[:argc:argc]
|
18 | 31 | fi := (*functionInfo)(unsafe.Pointer(C.sqlite3_user_data(ctx)))
|
19 | 32 | fi.Call(ctx, args)
|
20 | 33 | }
|
| 34 | + |
| 35 | +// This is only here so that tests can refer to it. |
| 36 | +type callbackArgRaw C.sqlite3_value |
| 37 | + |
| 38 | +type callbackArgConverter func(*C.sqlite3_value) (reflect.Value, error) |
| 39 | + |
| 40 | +type callbackArgCast struct { |
| 41 | + f callbackArgConverter |
| 42 | + typ reflect.Type |
| 43 | +} |
| 44 | + |
| 45 | +func (c callbackArgCast) Run(v *C.sqlite3_value) (reflect.Value, error) { |
| 46 | + val, err := c.f(v) |
| 47 | + if err != nil { |
| 48 | + return reflect.Value{}, err |
| 49 | + } |
| 50 | + if !val.Type().ConvertibleTo(c.typ) { |
| 51 | + return reflect.Value{}, fmt.Errorf("cannot convert %s to %s", val.Type(), c.typ) |
| 52 | + } |
| 53 | + return val.Convert(c.typ), nil |
| 54 | +} |
| 55 | + |
| 56 | +func callbackArgInt64(v *C.sqlite3_value) (reflect.Value, error) { |
| 57 | + if C.sqlite3_value_type(v) != C.SQLITE_INTEGER { |
| 58 | + return reflect.Value{}, fmt.Errorf("argument must be an INTEGER") |
| 59 | + } |
| 60 | + return reflect.ValueOf(int64(C.sqlite3_value_int64(v))), nil |
| 61 | +} |
| 62 | + |
| 63 | +func callbackArgBool(v *C.sqlite3_value) (reflect.Value, error) { |
| 64 | + if C.sqlite3_value_type(v) != C.SQLITE_INTEGER { |
| 65 | + return reflect.Value{}, fmt.Errorf("argument must be an INTEGER") |
| 66 | + } |
| 67 | + i := int64(C.sqlite3_value_int64(v)) |
| 68 | + val := false |
| 69 | + if i != 0 { |
| 70 | + val = true |
| 71 | + } |
| 72 | + return reflect.ValueOf(val), nil |
| 73 | +} |
| 74 | + |
| 75 | +func callbackArgFloat64(v *C.sqlite3_value) (reflect.Value, error) { |
| 76 | + if C.sqlite3_value_type(v) != C.SQLITE_FLOAT { |
| 77 | + return reflect.Value{}, fmt.Errorf("argument must be a FLOAT") |
| 78 | + } |
| 79 | + return reflect.ValueOf(float64(C.sqlite3_value_double(v))), nil |
| 80 | +} |
| 81 | + |
| 82 | +func callbackArgBytes(v *C.sqlite3_value) (reflect.Value, error) { |
| 83 | + switch C.sqlite3_value_type(v) { |
| 84 | + case C.SQLITE_BLOB: |
| 85 | + l := C.sqlite3_value_bytes(v) |
| 86 | + p := C.sqlite3_value_blob(v) |
| 87 | + return reflect.ValueOf(C.GoBytes(p, l)), nil |
| 88 | + case C.SQLITE_TEXT: |
| 89 | + l := C.sqlite3_value_bytes(v) |
| 90 | + c := unsafe.Pointer(C.sqlite3_value_text(v)) |
| 91 | + return reflect.ValueOf(C.GoBytes(c, l)), nil |
| 92 | + default: |
| 93 | + return reflect.Value{}, fmt.Errorf("argument must be BLOB or TEXT") |
| 94 | + } |
| 95 | +} |
| 96 | + |
| 97 | +func callbackArgString(v *C.sqlite3_value) (reflect.Value, error) { |
| 98 | + switch C.sqlite3_value_type(v) { |
| 99 | + case C.SQLITE_BLOB: |
| 100 | + l := C.sqlite3_value_bytes(v) |
| 101 | + p := (*C.char)(C.sqlite3_value_blob(v)) |
| 102 | + return reflect.ValueOf(C.GoStringN(p, l)), nil |
| 103 | + case C.SQLITE_TEXT: |
| 104 | + c := (*C.char)(unsafe.Pointer(C.sqlite3_value_text(v))) |
| 105 | + return reflect.ValueOf(C.GoString(c)), nil |
| 106 | + default: |
| 107 | + return reflect.Value{}, fmt.Errorf("argument must be BLOB or TEXT") |
| 108 | + } |
| 109 | +} |
| 110 | + |
| 111 | +func callbackArg(typ reflect.Type) (callbackArgConverter, error) { |
| 112 | + switch typ.Kind() { |
| 113 | + case reflect.Slice: |
| 114 | + if typ.Elem().Kind() != reflect.Uint8 { |
| 115 | + return nil, errors.New("the only supported slice type is []byte") |
| 116 | + } |
| 117 | + return callbackArgBytes, nil |
| 118 | + case reflect.String: |
| 119 | + return callbackArgString, nil |
| 120 | + case reflect.Bool: |
| 121 | + return callbackArgBool, nil |
| 122 | + case reflect.Int64: |
| 123 | + return callbackArgInt64, nil |
| 124 | + case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Int, reflect.Uint: |
| 125 | + c := callbackArgCast{callbackArgInt64, typ} |
| 126 | + return c.Run, nil |
| 127 | + case reflect.Float64: |
| 128 | + return callbackArgFloat64, nil |
| 129 | + case reflect.Float32: |
| 130 | + c := callbackArgCast{callbackArgFloat64, typ} |
| 131 | + return c.Run, nil |
| 132 | + default: |
| 133 | + return nil, fmt.Errorf("don't know how to convert to %s", typ) |
| 134 | + } |
| 135 | +} |
| 136 | + |
| 137 | +type callbackRetConverter func(*C.sqlite3_context, reflect.Value) error |
| 138 | + |
| 139 | +func callbackRetInteger(ctx *C.sqlite3_context, v reflect.Value) error { |
| 140 | + switch v.Type().Kind() { |
| 141 | + case reflect.Int64: |
| 142 | + case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Int, reflect.Uint: |
| 143 | + v = v.Convert(reflect.TypeOf(int64(0))) |
| 144 | + case reflect.Bool: |
| 145 | + b := v.Interface().(bool) |
| 146 | + if b { |
| 147 | + v = reflect.ValueOf(int64(1)) |
| 148 | + } else { |
| 149 | + v = reflect.ValueOf(int64(0)) |
| 150 | + } |
| 151 | + default: |
| 152 | + return fmt.Errorf("cannot convert %s to INTEGER", v.Type()) |
| 153 | + } |
| 154 | + |
| 155 | + C.sqlite3_result_int64(ctx, C.sqlite3_int64(v.Interface().(int64))) |
| 156 | + return nil |
| 157 | +} |
| 158 | + |
| 159 | +func callbackRetFloat(ctx *C.sqlite3_context, v reflect.Value) error { |
| 160 | + switch v.Type().Kind() { |
| 161 | + case reflect.Float64: |
| 162 | + case reflect.Float32: |
| 163 | + v = v.Convert(reflect.TypeOf(float64(0))) |
| 164 | + default: |
| 165 | + return fmt.Errorf("cannot convert %s to FLOAT", v.Type()) |
| 166 | + } |
| 167 | + |
| 168 | + C.sqlite3_result_double(ctx, C.double(v.Interface().(float64))) |
| 169 | + return nil |
| 170 | +} |
| 171 | + |
| 172 | +func callbackRetBlob(ctx *C.sqlite3_context, v reflect.Value) error { |
| 173 | + if v.Type().Kind() != reflect.Slice || v.Type().Elem().Kind() != reflect.Uint8 { |
| 174 | + return fmt.Errorf("cannot convert %s to BLOB", v.Type()) |
| 175 | + } |
| 176 | + i := v.Interface() |
| 177 | + if i == nil || len(i.([]byte)) == 0 { |
| 178 | + C.sqlite3_result_null(ctx) |
| 179 | + } else { |
| 180 | + bs := i.([]byte) |
| 181 | + C._sqlite3_result_blob(ctx, unsafe.Pointer(&bs[0]), C.int(len(bs))) |
| 182 | + } |
| 183 | + return nil |
| 184 | +} |
| 185 | + |
| 186 | +func callbackRetText(ctx *C.sqlite3_context, v reflect.Value) error { |
| 187 | + if v.Type().Kind() != reflect.String { |
| 188 | + return fmt.Errorf("cannot convert %s to TEXT", v.Type()) |
| 189 | + } |
| 190 | + C._sqlite3_result_text(ctx, C.CString(v.Interface().(string))) |
| 191 | + return nil |
| 192 | +} |
| 193 | + |
| 194 | +func callbackRet(typ reflect.Type) (callbackRetConverter, error) { |
| 195 | + switch typ.Kind() { |
| 196 | + case reflect.Slice: |
| 197 | + if typ.Elem().Kind() != reflect.Uint8 { |
| 198 | + return nil, errors.New("the only supported slice type is []byte") |
| 199 | + } |
| 200 | + return callbackRetBlob, nil |
| 201 | + case reflect.String: |
| 202 | + return callbackRetText, nil |
| 203 | + case reflect.Bool, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Int, reflect.Uint: |
| 204 | + return callbackRetInteger, nil |
| 205 | + case reflect.Float32, reflect.Float64: |
| 206 | + return callbackRetFloat, nil |
| 207 | + default: |
| 208 | + return nil, fmt.Errorf("don't know how to convert to %s", typ) |
| 209 | + } |
| 210 | +} |
| 211 | + |
| 212 | +// Test support code. Tests are not allowed to import "C", so we can't |
| 213 | +// declare any functions that use C.sqlite3_value. |
| 214 | +func callbackSyntheticForTests(v reflect.Value, err error) callbackArgConverter { |
| 215 | + return func(*C.sqlite3_value) (reflect.Value, error) { |
| 216 | + return v, err |
| 217 | + } |
| 218 | +} |
0 commit comments