From f69511d93f77a5e09e5d722df341320a707ac2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <jose.carlos@menteslibres.net> Date: Sun, 22 Jun 2014 13:18:45 -0500 Subject: [PATCH] QL: Upgrading QL to meet latest sqlutil fixes. --- ql/collection.go | 6 +-- ql/database.go | 14 ++++--- ql/result.go | 11 ++++-- ql/util.go | 100 ++++++++++++++++++++++++++--------------------- 4 files changed, 74 insertions(+), 57 deletions(-) diff --git a/ql/collection.go b/ql/collection.go index 238d4395..fa5f2592 100644 --- a/ql/collection.go +++ b/ql/collection.go @@ -35,8 +35,9 @@ const defaultOperator = `==` type Table struct { sqlutil.T - source *Source - names []string + columnTypes map[string]reflect.Kind + source *Source + names []string } func whereValues(term interface{}) (where sqlgen.Where, args []interface{}) { @@ -180,7 +181,6 @@ func (self *Table) Find(terms ...interface{}) db.Result { table: self, where: where, arguments: arguments, - t: &t{&self.T}, } return result diff --git a/ql/database.go b/ql/database.go index ce1c143e..b2e2f36b 100644 --- a/ql/database.go +++ b/ql/database.go @@ -35,6 +35,7 @@ import ( "upper.io/db/util/sqlutil" ) +// Public adapters name under which this adapter registers itself. const Adapter = `ql` var ( @@ -407,8 +408,6 @@ func (self *Source) Collection(names ...string) (db.Collection, error) { names: names, } - col.PrimaryKey = `id` - columns_t := []columnSchema_t{} for _, name := range names { @@ -438,17 +437,20 @@ func (self *Source) Collection(names ...string) (db.Collection, error) { return nil, err } - if err = col.FetchRows(&columns_t, rows); err != nil { + if err = sqlutil.FetchRows(rows, &columns_t); err != nil { return nil, err } - col.ColumnTypes = make(map[string]reflect.Kind, len(columns_t)) + col.Columns = make([]string, len(columns_t)) + col.columnTypes = make(map[string]reflect.Kind) - for _, column := range columns_t { + for i, column := range columns_t { column.ColumnName = strings.ToLower(column.ColumnName) column.DataType = strings.ToLower(column.DataType) + col.Columns[i] = column.ColumnName + // Default properties. dtype := column.DataType ctype := reflect.String @@ -485,7 +487,7 @@ func (self *Source) Collection(names ...string) (db.Collection, error) { ctype = reflect.String } - col.ColumnTypes[column.ColumnName] = ctype + col.columnTypes[column.ColumnName] = ctype } } diff --git a/ql/result.go b/ql/result.go index a9548f5a..af437661 100644 --- a/ql/result.go +++ b/ql/result.go @@ -28,6 +28,7 @@ import ( "upper.io/db" "upper.io/db/util/sqlgen" + "upper.io/db/util/sqlutil" ) type counter_t struct { @@ -43,7 +44,6 @@ type Result struct { where sqlgen.Where orderBy sqlgen.OrderBy arguments []interface{} - t *t } // Executes a SELECT statement that can feed Next(), All() or One(). @@ -149,7 +149,7 @@ func (self *Result) All(dst interface{}) error { defer self.Close() // Fetching all results within the cursor. - err = self.t.qlFetchRows(dst, self.cursor) + err = self.table.fetchRows(self.cursor, dst) return err } @@ -182,7 +182,7 @@ func (self *Result) Next(dst interface{}) error { } // Fetching the next result from the cursor. - err = self.t.qlFetchRow(dst, self.cursor) + err = self.table.fetchRow(self.cursor, dst) if err != nil { self.Close() @@ -257,7 +257,10 @@ func (self *Result) Count() (uint64, error) { defer rows.Close() dst := counter_t{} - self.t.FetchRow(&dst, rows) + + if err = sqlutil.FetchRow(rows, &dst); err != nil { + return 0, err + } return dst.Total, nil } diff --git a/ql/util.go b/ql/util.go index 19912761..f5677574 100644 --- a/ql/util.go +++ b/ql/util.go @@ -1,44 +1,55 @@ -/* - Copyright (c) 2014 JosĂŠ Carlos Nieto, https://menteslibres.net/xiam - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ +// Copyright (c) 2012-2014 JosĂŠ Carlos Nieto, https://menteslibres.net/xiam +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. package ql import ( "database/sql" "reflect" + "strings" "menteslibres.net/gosexy/to" "upper.io/db" "upper.io/db/util" - "upper.io/db/util/sqlutil" ) -// Wrapper for sqlutil.T -type t struct { - *sqlutil.T +// Returns (lowercased) columns names. +func getRowColumns(rows *sql.Rows) ([]string, error) { + // Column names. + columns, err := rows.Columns() + + if err != nil { + return nil, err + } + + // Column names to lower case. + for i, _ := range columns { + columns[i] = strings.ToLower(columns[i]) + } + + return columns, nil } -func (self *t) qlFetchRow(dst interface{}, rows *sql.Rows) error { +func (self *Table) fetchRow(rows *sql.Rows, dst interface{}) error { + var err error dstv := reflect.ValueOf(dst) @@ -48,12 +59,6 @@ func (self *t) qlFetchRow(dst interface{}, rows *sql.Rows) error { item_v := dstv.Elem() - columns, err := sqlutil.GetRowColumns(rows) - - if err != nil { - return err - } - next := rows.Next() if next == false { @@ -63,7 +68,13 @@ func (self *t) qlFetchRow(dst interface{}, rows *sql.Rows) error { return db.ErrNoMoreRows } - item, err := self.qlFetchResult(item_v.Type(), rows, columns) + var columns []string + + if columns, err = getRowColumns(rows); err != nil { + return err + } + + item, err := self.fetchResult(item_v.Type(), rows, columns) if err != nil { return err @@ -74,7 +85,7 @@ func (self *t) qlFetchRow(dst interface{}, rows *sql.Rows) error { return nil } -func (self *t) qlFetchResult(item_t reflect.Type, rows *sql.Rows, columns []string) (item reflect.Value, err error) { +func (self *Table) fetchResult(item_t reflect.Type, rows *sql.Rows, columns []string) (item reflect.Value, err error) { expecting := len(columns) scanArgs := make([]interface{}, expecting) @@ -114,8 +125,8 @@ func (self *t) qlFetchResult(item_t reflect.Type, rows *sql.Rows, columns []stri var val_v reflect.Value - if _, ok := self.ColumnTypes[columnName]; ok == true { - v, _ := to.Convert(val_s, self.ColumnTypes[columnName]) + if _, ok := self.columnTypes[columnName]; ok == true { + v, _ := to.Convert(val_s, self.columnTypes[columnName]) val_v = reflect.ValueOf(v) } else { v, _ := to.Convert(val_s, reflect.String) @@ -135,7 +146,8 @@ func (self *t) qlFetchResult(item_t reflect.Type, rows *sql.Rows, columns []stri return item, nil } -func (self *t) qlFetchRows(dst interface{}, rows *sql.Rows) error { +func (self *Table) fetchRows(rows *sql.Rows, dst interface{}) error { + var err error // Destination. dstv := reflect.ValueOf(dst) @@ -152,18 +164,18 @@ func (self *t) qlFetchRows(dst interface{}, rows *sql.Rows) error { return db.ErrExpectingSliceMapStruct } - columns, err := sqlutil.GetRowColumns(rows) + slicev := dstv.Elem() + item_t := slicev.Type().Elem() - if err != nil { + var columns []string + + if columns, err = getRowColumns(rows); err != nil { return err } - slicev := dstv.Elem() - item_t := slicev.Type().Elem() - for rows.Next() { - item, err := self.qlFetchResult(item_t, rows, columns) + item, err := self.fetchResult(item_t, rows, columns) if err != nil { return err -- GitLab