1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
package dynamodb
import (
"errors"
"fmt"
simplejson "github.com/bitly/go-simplejson"
)
type Query interface {
Marshal() ([]byte, error)
}
type ScanQuery interface {
Query
AddExclusiveStartKey(key StartKey) error
AddExclusiveStartTableName(table string) error
}
func (t *Table) Query(attributeComparisons []AttributeComparison) ([]map[string]*Attribute, error) {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
return RunQuery(q, t)
}
func (t *Table) QueryOnIndex(attributeComparisons []AttributeComparison, indexName string) ([]map[string]*Attribute, error) {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddIndex(indexName)
return RunQuery(q, t)
}
func (t *Table) LimitedQuery(attributeComparisons []AttributeComparison, limit int64) ([]map[string]*Attribute, error) {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddLimit(limit)
return RunQuery(q, t)
}
func (t *Table) LimitedQueryOnIndex(attributeComparisons []AttributeComparison, indexName string, limit int64) ([]map[string]*Attribute, error) {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddIndex(indexName)
q.AddLimit(limit)
return RunQuery(q, t)
}
func (t *Table) CountQuery(attributeComparisons []AttributeComparison) (int64, error) {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddSelect("COUNT")
jsonResponse, err := t.Server.queryServer(target("Query"), q)
if err != nil {
return 0, err
}
json, err := simplejson.NewJson(jsonResponse)
if err != nil {
return 0, err
}
itemCount, err := json.Get("Count").Int64()
if err != nil {
return 0, err
}
return itemCount, nil
}
func (t *Table) QueryTable(q Query) ([]map[string]*Attribute, StartKey, error) {
jsonResponse, err := t.Server.queryServer(target("Query"), q)
if err != nil {
return nil, nil, err
}
json, err := simplejson.NewJson(jsonResponse)
if err != nil {
return nil, nil, err
}
itemCount, err := json.Get("Count").Int()
if err != nil {
message := fmt.Sprintf("Unexpected response %s", jsonResponse)
return nil, nil, errors.New(message)
}
results := make([]map[string]*Attribute, itemCount)
for i, _ := range results {
item, err := json.Get("Items").GetIndex(i).Map()
if err != nil {
message := fmt.Sprintf("Unexpected response %s", jsonResponse)
return nil, nil, errors.New(message)
}
results[i] = parseAttributes(item)
}
var lastEvaluatedKey StartKey
if lastKeyMap := json.Get("LastEvaluatedKey").MustMap(); lastKeyMap != nil {
lastEvaluatedKey = lastKeyMap
}
return results, lastEvaluatedKey, nil
}
func (t *Table) QueryCallbackIterator(attributeComparisons []AttributeComparison, cb func(map[string]*Attribute) error) error {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
return t.QueryTableCallbackIterator(q, cb)
}
func (t *Table) QueryOnIndexCallbackIterator(attributeComparisons []AttributeComparison, indexName string, cb func(map[string]*Attribute) error) error {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddIndex(indexName)
return t.QueryTableCallbackIterator(q, cb)
}
func (t *Table) LimitedQueryCallbackIterator(attributeComparisons []AttributeComparison, limit int64, cb func(map[string]*Attribute) error) error {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddLimit(limit)
return t.QueryTableCallbackIterator(q, cb)
}
func (t *Table) LimitedQueryOnIndexCallbackIterator(attributeComparisons []AttributeComparison, indexName string, limit int64, cb func(map[string]*Attribute) error) error {
q := NewQuery(t)
q.AddKeyConditions(attributeComparisons)
q.AddIndex(indexName)
q.AddLimit(limit)
return t.QueryTableCallbackIterator(q, cb)
}
func (t *Table) QueryTableCallbackIterator(query ScanQuery, cb func(map[string]*Attribute) error) error {
for {
results, lastEvaluatedKey, err := t.QueryTable(query)
if err != nil {
return err
}
for _, item := range results {
if err := cb(item); err != nil {
return err
}
}
if lastEvaluatedKey == nil {
break
}
query.AddExclusiveStartKey(lastEvaluatedKey)
}
return nil
}
func RunQuery(q Query, t *Table) ([]map[string]*Attribute, error) {
result, _, err := t.QueryTable(q)
if err != nil {
return nil, err
}
return result, err
}
|