mydb/internal/adapter/constraint.go

52 lines
1.3 KiB
Go
Raw Normal View History

2023-09-18 15:15:42 +08:00
package adapter
// ConstraintValuer allows constraints to use specific values of their own.
type ConstraintValuer interface {
ConstraintValue() interface{}
}
// Constraint interface represents a single condition, like "a = 1". where `a`
// is the key and `1` is the value. This is an exported interface but it's
// rarely used directly, you may want to use the `db.Cond{}` map instead.
type Constraint interface {
// Key is the leftmost part of the constraint and usually contains a column
// name.
Key() interface{}
// Value if the rightmost part of the constraint and usually contains a
// column value.
Value() interface{}
}
// Constraints interface represents an array of constraints, like "a = 1, b =
// 2, c = 3".
type Constraints interface {
// Constraints returns an array of constraints.
Constraints() []Constraint
}
type constraint struct {
k interface{}
v interface{}
}
func (c constraint) Key() interface{} {
return c.k
}
func (c constraint) Value() interface{} {
if constraintValuer, ok := c.v.(ConstraintValuer); ok {
return constraintValuer.ConstraintValue()
}
return c.v
}
// NewConstraint creates a constraint.
func NewConstraint(key interface{}, value interface{}) Constraint {
return &constraint{k: key, v: value}
}
var (
_ = Constraint(&constraint{})
)