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
|
package queues
import (
"encoding/json"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
// commonResult is the response of a base result.
type commonResult struct {
gophercloud.Result
}
// QueuePage contains a single page of all queues from a List operation.
type QueuePage struct {
pagination.LinkedPageBase
}
// CreateResult is the response of a Create operation.
type CreateResult struct {
gophercloud.ErrResult
}
// UpdateResult is the response of a Update operation.
type UpdateResult struct {
commonResult
}
// GetResult is the response of a Get operation.
type GetResult struct {
commonResult
}
// StatResult contains the result of a Share operation.
type StatResult struct {
gophercloud.Result
}
// DeleteResult is the result from a Delete operation. Call its ExtractErr
// method to determine if the call succeeded or failed.
type DeleteResult struct {
gophercloud.ErrResult
}
// ShareResult contains the result of a Share operation.
type ShareResult struct {
gophercloud.Result
}
// PurgeResult is the response of a Purge operation.
type PurgeResult struct {
gophercloud.ErrResult
}
// Queue represents a messaging queue.
type Queue struct {
Href string `json:"href"`
Methods []string `json:"methods"`
Name string `json:"name"`
Paths []string `json:"paths"`
ResourceTypes []string `json:"resource_types"`
Metadata QueueDetails `json:"metadata"`
}
// QueueDetails represents the metadata of a queue.
type QueueDetails struct {
// The queue the message will be moved to when the message can’t
// be processed successfully after the max claim count is met.
DeadLetterQueue string `json:"_dead_letter_queue"`
// The TTL setting for messages when moved to dead letter queue.
DeadLetterQueueMessageTTL int `json:"_dead_letter_queue_messages_ttl"`
// The delay of messages defined for the queue.
DefaultMessageDelay int `json:"_default_message_delay"`
// The default TTL of messages defined for the queue.
DefaultMessageTTL int `json:"_default_message_ttl"`
// Extra is a collection of miscellaneous key/values.
Extra map[string]interface{} `json:"-"`
// The max number the message can be claimed from the queue.
MaxClaimCount int `json:"_max_claim_count"`
// The max post size of messages defined for the queue.
MaxMessagesPostSize int `json:"_max_messages_post_size"`
// Is message encryption enabled
EnableEncryptMessages bool `json:"_enable_encrypt_messages"`
// The flavor defined for the queue.
Flavor string `json:"flavor"`
}
// Stats represents a stats response.
type Stats struct {
// Number of Claimed messages for a queue
Claimed int `json:"claimed"`
// Total Messages for a queue
Total int `json:"total"`
// Number of free messages
Free int `json:"free"`
}
// QueueShare represents a share response.
type QueueShare struct {
Project string `json:"project"`
Paths []string `json:"paths"`
Expires string `json:"expires"`
Methods []string `json:"methods"`
Signature string `json:"signature"`
}
// Extract interprets any commonResult as a Queue.
func (r commonResult) Extract() (QueueDetails, error) {
var s QueueDetails
err := r.ExtractInto(&s)
return s, err
}
// Extract interprets any StatResult as a Stats.
func (r StatResult) Extract() (Stats, error) {
var s struct {
Stats Stats `json:"messages"`
}
err := r.ExtractInto(&s)
return s.Stats, err
}
// Extract interprets any ShareResult as a QueueShare.
func (r ShareResult) Extract() (QueueShare, error) {
var s QueueShare
err := r.ExtractInto(&s)
return s, err
}
// ExtractQueues interprets the results of a single page from a
// List() call, producing a map of queues.
func ExtractQueues(r pagination.Page) ([]Queue, error) {
var s struct {
Queues []Queue `json:"queues"`
}
err := (r.(QueuePage)).ExtractInto(&s)
return s.Queues, err
}
// IsEmpty determines if a QueuesPage contains any results.
func (r QueuePage) IsEmpty() (bool, error) {
if r.StatusCode == 204 {
return true, nil
}
s, err := ExtractQueues(r)
return len(s) == 0, err
}
// NextPageURL uses the response's embedded link reference to navigate to the
// next page of results.
func (r QueuePage) NextPageURL() (string, error) {
var s struct {
Links []gophercloud.Link `json:"links"`
}
err := r.ExtractInto(&s)
if err != nil {
return "", err
}
next, err := gophercloud.ExtractNextURL(s.Links)
if err != nil {
return "", err
}
return nextPageURL(r.URL.String(), next)
}
// GetCount value if it request was supplied `WithCount` param
func (r QueuePage) GetCount() (int, error) {
var s struct {
Count int `json:"count"`
}
err := r.ExtractInto(&s)
if err != nil {
return 0, err
}
return s.Count, nil
}
func (r *QueueDetails) UnmarshalJSON(b []byte) error {
type tmp QueueDetails
var s struct {
tmp
Extra map[string]interface{} `json:"extra"`
}
err := json.Unmarshal(b, &s)
if err != nil {
return err
}
*r = QueueDetails(s.tmp)
// Collect other fields and bundle them into Extra
// but only if a field titled "extra" wasn't sent.
if s.Extra != nil {
r.Extra = s.Extra
} else {
var result interface{}
err := json.Unmarshal(b, &result)
if err != nil {
return err
}
if resultMap, ok := result.(map[string]interface{}); ok {
r.Extra = gophercloud.RemainingKeys(QueueDetails{}, resultMap)
}
}
return err
}
|