|
@@ -1,13 +1,15 @@
|
|
package nosql
|
|
package nosql
|
|
|
|
|
|
import (
|
|
import (
|
|
- "database/sql"
|
|
|
|
|
|
+ "context"
|
|
"encoding/json"
|
|
"encoding/json"
|
|
"fmt"
|
|
"fmt"
|
|
|
|
+
|
|
|
|
+ "github.com/jackc/pgx/v5"
|
|
)
|
|
)
|
|
|
|
|
|
// OpenTXMethod is callback functon to open transaction in NoSQL object
|
|
// OpenTXMethod is callback functon to open transaction in NoSQL object
|
|
-type OpenTXMethod func() (*sql.Tx, error)
|
|
|
|
|
|
+type OpenTXMethod func(context.Context) (pgx.Tx, error)
|
|
|
|
|
|
// NoSQL object
|
|
// NoSQL object
|
|
type NoSQL struct {
|
|
type NoSQL struct {
|
|
@@ -20,35 +22,35 @@ func New(openMethod OpenTXMethod) *NoSQL {
|
|
}
|
|
}
|
|
|
|
|
|
// CallJSON accepts raw json bytes and returns result raw json bytes
|
|
// CallJSON accepts raw json bytes and returns result raw json bytes
|
|
-func (_self *NoSQL) CallJSON(function string, rawJSON []byte) (resRawJSON []byte, err error) {
|
|
|
|
|
|
+func (_self *NoSQL) CallJSON(ctx context.Context, function string, rawJSON []byte) (resRawJSON []byte, err error) {
|
|
// open tx
|
|
// open tx
|
|
- var tx *sql.Tx
|
|
|
|
- if tx, err = _self.openMethod(); err == nil {
|
|
|
|
|
|
+ var tx pgx.Tx
|
|
|
|
+ if tx, err = _self.openMethod(ctx); err == nil {
|
|
// execute query and scan result
|
|
// execute query and scan result
|
|
- row := tx.QueryRow(fmt.Sprintf("select * from %v($1)", function), rawJSON)
|
|
|
|
|
|
+ row := tx.QueryRow(context.Background(), fmt.Sprintf("select * from %v($1)", function), rawJSON)
|
|
if err = row.Scan(&resRawJSON); err != nil {
|
|
if err = row.Scan(&resRawJSON); err != nil {
|
|
- tx.Rollback()
|
|
|
|
|
|
+ tx.Rollback(context.Background())
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- err = tx.Commit()
|
|
|
|
|
|
+ err = tx.Commit(context.Background())
|
|
}
|
|
}
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
// CallObjParam accepts interface{} object and returns result raw json bytes
|
|
// CallObjParam accepts interface{} object and returns result raw json bytes
|
|
-func (_self *NoSQL) CallObjParam(function string, data interface{}) (resRawJSON []byte, err error) {
|
|
|
|
|
|
+func (_self *NoSQL) CallObjParam(ctx context.Context, function string, data interface{}) (resRawJSON []byte, err error) {
|
|
// convert incoming object to raw json
|
|
// convert incoming object to raw json
|
|
var raw []byte
|
|
var raw []byte
|
|
if raw, err = json.Marshal(data); err != nil {
|
|
if raw, err = json.Marshal(data); err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- return _self.CallJSON(function, raw)
|
|
|
|
|
|
+ return _self.CallJSON(ctx, function, raw)
|
|
}
|
|
}
|
|
|
|
|
|
// Call accepts interface{} object and returns result interface{}
|
|
// Call accepts interface{} object and returns result interface{}
|
|
-func (_self *NoSQL) Call(function string, data interface{}) (res interface{}, err error) {
|
|
|
|
|
|
+func (_self *NoSQL) Call(ctx context.Context, function string, data interface{}) (res interface{}, err error) {
|
|
var resRawJSON []byte
|
|
var resRawJSON []byte
|
|
- if resRawJSON, err = _self.CallObjParam(function, data); err == nil {
|
|
|
|
|
|
+ if resRawJSON, err = _self.CallObjParam(ctx, function, data); err == nil {
|
|
// convert raw result data to obj
|
|
// convert raw result data to obj
|
|
if len(resRawJSON) > 0 {
|
|
if len(resRawJSON) > 0 {
|
|
err = json.Unmarshal(resRawJSON, &res)
|
|
err = json.Unmarshal(resRawJSON, &res)
|
|
@@ -57,9 +59,9 @@ func (_self *NoSQL) Call(function string, data interface{}) (res interface{}, er
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-func (_self *NoSQL) CallObject(function string, data interface{}, resultObject interface{}) (err error) {
|
|
|
|
|
|
+func (_self *NoSQL) CallObject(ctx context.Context, function string, data interface{}, resultObject interface{}) (err error) {
|
|
var resRawJSON []byte
|
|
var resRawJSON []byte
|
|
- if resRawJSON, err = _self.CallObjParam(function, data); err == nil {
|
|
|
|
|
|
+ if resRawJSON, err = _self.CallObjParam(ctx, function, data); err == nil {
|
|
// convert raw result data to result object
|
|
// convert raw result data to result object
|
|
err = json.Unmarshal(resRawJSON, resultObject)
|
|
err = json.Unmarshal(resRawJSON, resultObject)
|
|
}
|
|
}
|