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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
package dynamodb
import (
"encoding/json"
"errors"
"fmt"
simplejson "github.com/bitly/go-simplejson"
)
type Table struct {
Server *Server
Name string
Key PrimaryKey
}
type AttributeDefinitionT struct {
Name string `json:"AttributeName"`
Type string `json:"AttributeType"`
}
type KeySchemaT struct {
AttributeName string
KeyType string
}
type ProjectionT struct {
ProjectionType string
NonKeyAttributes []string
}
type GlobalSecondaryIndexT struct {
IndexName string
IndexSizeBytes int64
ItemCount int64
KeySchema []KeySchemaT
Projection ProjectionT
ProvisionedThroughput ProvisionedThroughputT
}
type LocalSecondaryIndexT struct {
IndexName string
IndexSizeBytes int64
ItemCount int64
KeySchema []KeySchemaT
Projection ProjectionT
}
type ProvisionedThroughputT struct {
NumberOfDecreasesToday int64
ReadCapacityUnits int64
WriteCapacityUnits int64
}
type TableDescriptionT struct {
AttributeDefinitions []AttributeDefinitionT
CreationDateTime float64
ItemCount int64
KeySchema []KeySchemaT
LocalSecondaryIndexes []LocalSecondaryIndexT
GlobalSecondaryIndexes []GlobalSecondaryIndexT
ProvisionedThroughput ProvisionedThroughputT
TableName string
TableSizeBytes int64
TableStatus string
}
type describeTableResponse struct {
Table TableDescriptionT
}
func findAttributeDefinitionByName(ads []AttributeDefinitionT, name string) *AttributeDefinitionT {
for _, a := range ads {
if a.Name == name {
return &a
}
}
return nil
}
func (a *AttributeDefinitionT) GetEmptyAttribute() *Attribute {
switch a.Type {
case "S":
return NewStringAttribute(a.Name, "")
case "N":
return NewNumericAttribute(a.Name, "")
case "B":
return NewBinaryAttribute(a.Name, "")
default:
return nil
}
}
func (t *TableDescriptionT) BuildPrimaryKey() (pk PrimaryKey, err error) {
for _, k := range t.KeySchema {
var attr *Attribute
ad := findAttributeDefinitionByName(t.AttributeDefinitions, k.AttributeName)
if ad == nil {
return pk, errors.New("An inconsistency found in TableDescriptionT")
}
attr = ad.GetEmptyAttribute()
if attr == nil {
return pk, errors.New("An inconsistency found in TableDescriptionT")
}
switch k.KeyType {
case "HASH":
pk.KeyAttribute = attr
case "RANGE":
pk.RangeAttribute = attr
}
}
return
}
func (s *Server) NewTable(name string, key PrimaryKey) *Table {
return &Table{s, name, key}
}
func (s *Server) ListTables() ([]string, error) {
var tables []string
err := s.ListTablesCallbackIterator(
func(t string) {
tables = append(tables, t)
},
)
return tables, err
}
func (s *Server) ListTablesCallbackIterator(cb func(string)) error {
var lastEvaluatedTableName string
for {
query := NewEmptyQuery()
query.AddExclusiveStartTableName(lastEvaluatedTableName)
jsonResponse, err := s.queryServer(target("ListTables"), query)
if err != nil {
return err
}
json, err := simplejson.NewJson(jsonResponse)
if err != nil {
return err
}
lastEvaluatedTableName = ""
if json, ok := json.CheckGet("LastEvaluatedTableName"); ok {
lastEvaluatedTableName, err = json.String()
if err != nil {
message := fmt.Sprintf("Unexpected response %s", jsonResponse)
return errors.New(message)
}
}
response, err := json.Get("TableNames").Array()
if err != nil {
message := fmt.Sprintf("Unexpected response %s", jsonResponse)
return errors.New(message)
}
for _, value := range response {
if t, ok := (value).(string); ok {
cb(t)
}
}
if lastEvaluatedTableName == "" {
break
}
}
return nil
}
func (s *Server) CreateTable(tableDescription TableDescriptionT) (string, error) {
query := NewEmptyQuery()
query.AddCreateRequestTable(tableDescription)
jsonResponse, err := s.queryServer(target("CreateTable"), query)
if err != nil {
return "unknown", err
}
json, err := simplejson.NewJson(jsonResponse)
if err != nil {
return "unknown", err
}
return json.Get("TableDescription").Get("TableStatus").MustString(), nil
}
func (s *Server) DeleteTable(tableDescription TableDescriptionT) (string, error) {
query := NewEmptyQuery()
query.AddDeleteRequestTable(tableDescription)
jsonResponse, err := s.queryServer(target("DeleteTable"), query)
if err != nil {
return "unknown", err
}
json, err := simplejson.NewJson(jsonResponse)
if err != nil {
return "unknown", err
}
return json.Get("TableDescription").Get("TableStatus").MustString(), nil
}
func (t *Table) DescribeTable() (*TableDescriptionT, error) {
return t.Server.DescribeTable(t.Name)
}
func (s *Server) DescribeTable(name string) (*TableDescriptionT, error) {
q := NewEmptyQuery()
q.addTableByName(name)
jsonResponse, err := s.queryServer(target("DescribeTable"), q)
if err != nil {
return nil, err
}
var r describeTableResponse
err = json.Unmarshal(jsonResponse, &r)
if err != nil {
return nil, err
}
return &r.Table, nil
}
func keyParam(k *PrimaryKey, hashKey string, rangeKey string) string {
value := fmt.Sprintf("{\"HashKeyElement\":{%s}", keyValue(k.KeyAttribute.Type, hashKey))
if k.RangeAttribute != nil {
value = fmt.Sprintf("%s,\"RangeKeyElement\":{%s}", value,
keyValue(k.RangeAttribute.Type, rangeKey))
}
return fmt.Sprintf("\"Key\":%s}", value)
}
func keyValue(key string, value string) string {
return fmt.Sprintf("\"%s\":\"%s\"", key, value)
}
|