qb: batch builder

This commit is contained in:
Michał Matczuk
2017-08-03 17:06:03 +02:00
parent 8d47a6d133
commit 804cfad37c
3 changed files with 202 additions and 0 deletions

91
qb/batch.go Normal file
View File

@@ -0,0 +1,91 @@
package qb
import (
"bytes"
"fmt"
)
// BATCH reference:
// https://cassandra.apache.org/doc/latest/cql/dml.html#batch
// builder is interface implemented by other builders.
type builder interface {
ToCql() (stmt string, names []string)
}
// BatchBuilder builds CQL BATCH statements.
type BatchBuilder struct {
unlogged bool
counter bool
using using
stmts []string
names []string
}
// Batch returns a new BatchBuilder.
func Batch() *BatchBuilder {
return &BatchBuilder{}
}
// ToCql builds the query into a CQL string and named args.
func (b *BatchBuilder) ToCql() (stmt string, names []string) {
cql := bytes.Buffer{}
cql.WriteString("BEGIN ")
if b.unlogged {
cql.WriteString("UNLOGGED ")
}
if b.counter {
cql.WriteString("COUNTER ")
}
cql.WriteString("BATCH ")
names = append(names, b.using.writeCql(&cql)...)
for _, stmt := range b.stmts {
cql.WriteString(stmt)
cql.WriteByte(';')
cql.WriteByte(' ')
}
names = append(names, b.names...)
cql.WriteString("APPLY BATCH ")
stmt = cql.String()
return
}
// UnLogged sets a UNLOGGED BATCH clause on the query.
func (b *BatchBuilder) UnLogged() *BatchBuilder {
b.unlogged = true
return b
}
// Counter sets a COUNTER BATCH clause on the query.
func (b *BatchBuilder) Counter() *BatchBuilder {
b.counter = true
return b
}
// Timestamp sets a USING TIMESTAMP clause on the query.
func (b *BatchBuilder) Timestamp() *BatchBuilder {
b.using.timestamp = true
return b
}
// TTL sets a USING TTL clause on the query.
func (b *BatchBuilder) TTL() *BatchBuilder {
b.using.ttl = true
return b
}
// Add adds another batch statement from a builder.
func (b *BatchBuilder) Add(prefix string, builder Builder) *BatchBuilder {
stmt, names := builder.ToCql()
b.stmts = append(b.stmts, stmt)
for _, name := range names {
b.names = append(b.names, fmt.Sprint(prefix, name))
}
return b
}