Class: Seahorse::Client::HandlerList
- Inherits:
-
Object
- Object
- Seahorse::Client::HandlerList
- Includes:
- Enumerable
- Defined in:
- gems/aws-sdk-core/lib/seahorse/client/handler_list.rb
Instance Method Summary collapse
-
#add(handler_class, options = {}) ⇒ Class<Handler>
Registers a handler.
-
#copy_from(source_list, &block) ⇒ void
Copies handlers from the
source_list
onto the current handler list. -
#each(&block) ⇒ Object
Yields the handlers in stack order, which is reverse priority.
-
#entries ⇒ Array<HandlerListEntry>
-
#for(operation) ⇒ HandlerList
Returns a handler list for the given operation.
-
#remove(handler_class) ⇒ Object
-
#to_stack ⇒ Handler
Constructs the handlers recursively, building a handler stack.
Instance Method Details
#add(handler_class, options = {}) ⇒ Class<Handler>
There can be only one :send
handler. Adding an additional
send handler replaces the previous.
Registers a handler. Handlers are used to build a handler stack.
Handlers default to the :build
step with default priority of 50.
The step and priority determine where in the stack a handler
will be.
Handler Stack Ordering
A handler stack is built from the inside-out. The stack is seeded with the send handler. Handlers are constructed recursively in reverse step and priority order so that the highest priority handler is on the outside.
By constructing the stack from the inside-out, this ensures that the validate handlers will be called first and the sign handlers will be called just before the final and only send handler is called.
Steps
Handlers are ordered first by step. These steps represent the life-cycle of a request. Valid steps are:
:initialize
:validate
:build
:sign
:send
Many handlers can be added to the same step, except for :send
.
There can be only one :send
handler. Adding an additional
:send
handler replaces the previous one.
Priorities
Handlers within a single step are executed in priority order. The higher the priority, the earlier in the stack the handler will be called.
- Handler priority is an integer between 0 and 99, inclusively.
- Handler priority defaults to 50.
- When multiple handlers are added to the same step with the same priority, the last one added will have the highest priority and the first one added will have the lowest priority.
105 106 107 108 109 110 111 112 113 114 115 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 105 def add(handler_class, = {}) @mutex.synchronize do add_entry( HandlerListEntry.new(.merge( handler_class: handler_class, inserted: next_index )) ) end handler_class end |
#copy_from(source_list, &block) ⇒ void
This method returns an undefined value.
Copies handlers from the source_list
onto the current handler list.
If a block is given, only the entries that return a true
value
from the block will be copied.
129 130 131 132 133 134 135 136 137 138 139 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 129 def copy_from(source_list, &block) entries = [] source_list.entries.each do |entry| if block_given? entries << entry.copy(inserted: next_index) if yield(entry) else entries << entry.copy(inserted: next_index) end end add_entries(entries) end |
#each(&block) ⇒ Object
Yields the handlers in stack order, which is reverse priority.
151 152 153 154 155 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 151 def each(&block) entries.sort.each do |entry| yield(entry.handler_class) if entry.operations.nil? end end |
#entries ⇒ Array<HandlerListEntry>
22 23 24 25 26 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 22 def entries @mutex.synchronize do @entries.values end end |
#for(operation) ⇒ HandlerList
Returns a handler list for the given operation. The returned will have the operation specific handlers merged with the common handlers.
146 147 148 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 146 def for(operation) HandlerList.new(index: @index, entries: filter(operation.to_s)) end |
#remove(handler_class) ⇒ Object
118 119 120 121 122 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 118 def remove(handler_class) @entries.each do |key, entry| @entries.delete(key) if entry.handler_class == handler_class end end |
#to_stack ⇒ Handler
Constructs the handlers recursively, building a handler stack.
The :send
handler will be at the top of the stack and the
:validate
handlers will be at the bottom.
161 162 163 |
# File 'gems/aws-sdk-core/lib/seahorse/client/handler_list.rb', line 161 def to_stack inject(nil) { |stack, handler| handler.new(stack) } end |