181 lines
3.5 KiB
Go
181 lines
3.5 KiB
Go
// Copyright © 2016 Abcum Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package item
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/imdario/mergo"
|
|
|
|
"github.com/abcum/surreal/sql"
|
|
"github.com/abcum/surreal/util/data"
|
|
)
|
|
|
|
func (this *Doc) Merge(data []sql.Expr) (err error) {
|
|
|
|
this.getFields()
|
|
this.getIndexs()
|
|
|
|
// Set defaults
|
|
this.defFld()
|
|
|
|
for _, part := range data {
|
|
switch expr := part.(type) {
|
|
case *sql.DiffExpression:
|
|
this.mrgDpm(expr)
|
|
case *sql.BinaryExpression:
|
|
this.mrgOne(expr)
|
|
case *sql.MergeExpression:
|
|
this.mrgAny(expr)
|
|
case *sql.ContentExpression:
|
|
this.mrgAll(expr)
|
|
}
|
|
}
|
|
|
|
// Set data
|
|
this.current.Set(this.id, "id")
|
|
this.current.Set(this.id, "data", "id")
|
|
|
|
// Set time
|
|
this.current.New(time.Now(), "time", "created")
|
|
this.current.Set(time.Now(), "time", "updated")
|
|
|
|
// Set meta
|
|
this.current.Set(this.key.TB, "meta", "table")
|
|
this.current.Set(this.key.ID, "meta", "ident")
|
|
|
|
// Set fields
|
|
err = this.mrgFld()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
func (this *Doc) defFld() (err error) {
|
|
|
|
for _, fld := range this.fields {
|
|
|
|
e := this.current.Exists("data", fld.Name)
|
|
|
|
if fld.Default != nil && e == false {
|
|
switch val := fld.Default.(type) {
|
|
case sql.Null, *sql.Null:
|
|
this.current.Set(nil, "data", fld.Name)
|
|
default:
|
|
this.current.Set(fld.Default, "data", fld.Name)
|
|
case sql.Ident:
|
|
this.current.Set(this.current.Get("data", val.ID).Data(), "data", fld.Name)
|
|
case *sql.Ident:
|
|
this.current.Set(this.current.Get("data", val.ID).Data(), "data", fld.Name)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
func (this *Doc) mrgFld() (err error) {
|
|
|
|
for _, fld := range this.fields {
|
|
if err = each(fld, this.initial, this.current); err != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
func (this *Doc) mrgAll(expr *sql.ContentExpression) {
|
|
|
|
val := data.Consume(expr.JSON)
|
|
|
|
this.current.Set(val.Data(), "data")
|
|
|
|
}
|
|
|
|
func (this *Doc) mrgAny(expr *sql.MergeExpression) {
|
|
|
|
lhs, _ := this.current.Get("data").Data().(map[string]interface{})
|
|
rhs, _ := expr.JSON.(map[string]interface{})
|
|
|
|
err := mergo.MapWithOverwrite(&lhs, rhs)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
this.current.Set(lhs, "data")
|
|
|
|
}
|
|
|
|
func (this *Doc) mrgDpm(expr *sql.DiffExpression) {
|
|
|
|
}
|
|
|
|
func (this *Doc) mrgOne(expr *sql.BinaryExpression) {
|
|
|
|
lhs := getMrgItemLHS(this.current, expr.LHS)
|
|
rhs := getMrgItemRHS(this.current, expr.RHS)
|
|
|
|
if expr.Op == sql.EQ {
|
|
switch expr.RHS.(type) {
|
|
default:
|
|
this.current.Set(rhs, "data", lhs)
|
|
case *sql.Void:
|
|
this.current.Del("data", lhs)
|
|
}
|
|
}
|
|
|
|
if expr.Op == sql.INC {
|
|
this.current.Inc(rhs, "data", lhs)
|
|
}
|
|
|
|
if expr.Op == sql.DEC {
|
|
this.current.Dec(rhs, "data", lhs)
|
|
}
|
|
|
|
}
|
|
|
|
func getMrgItemLHS(doc *data.Doc, expr sql.Expr) string {
|
|
|
|
switch val := expr.(type) {
|
|
default:
|
|
return ""
|
|
case sql.Ident:
|
|
return val.ID
|
|
case *sql.Ident:
|
|
return val.ID
|
|
}
|
|
|
|
}
|
|
|
|
func getMrgItemRHS(doc *data.Doc, expr sql.Expr) interface{} {
|
|
|
|
switch val := expr.(type) {
|
|
default:
|
|
return nil
|
|
case time.Time:
|
|
return val
|
|
case bool, int64, float64, string:
|
|
return val
|
|
case []interface{}, map[string]interface{}:
|
|
return val
|
|
case *sql.Ident:
|
|
return doc.Get("data", val.ID).Data()
|
|
}
|
|
|
|
}
|