aws-sdk 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/aws.rb +2 -0
- data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +1163 -0
- data/lib/aws/core.rb +16 -11
- data/lib/aws/core/configuration.rb +65 -47
- data/lib/aws/dynamo_db/item_collection.rb +2 -3
- data/lib/aws/dynamo_db/table.rb +2 -2
- data/lib/aws/ec2/collection.rb +1 -1
- data/lib/aws/ec2/snapshot_collection.rb +1 -1
- data/lib/aws/ec2/tagged_collection.rb +6 -1
- data/lib/aws/elb/backend_server_policy_collection.rb +1 -11
- data/lib/aws/elb/load_balancer.rb +4 -4
- data/lib/aws/elb/load_balancer_collection.rb +1 -1
- data/lib/aws/iam/policy.rb +1 -1
- data/lib/aws/record.rb +10 -4
- data/lib/aws/record/hash_model/finder_methods.rb +2 -3
- data/lib/aws/s3/bucket_lifecycle_configuration.rb +2 -2
- data/lib/aws/s3/policy.rb +1 -1
- data/lib/aws/simple_email_service.rb +8 -2
- data/lib/aws/simple_workflow.rb +223 -0
- data/lib/aws/simple_workflow/activity_task.rb +173 -0
- data/lib/aws/simple_workflow/activity_task_collection.rb +112 -0
- data/lib/aws/simple_workflow/activity_type.rb +131 -0
- data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
- data/lib/aws/simple_workflow/client.rb +57 -0
- data/lib/aws/simple_workflow/config.rb +18 -0
- data/lib/aws/simple_workflow/count.rb +49 -0
- data/lib/aws/simple_workflow/decision_task.rb +603 -0
- data/lib/aws/simple_workflow/decision_task_collection.rb +213 -0
- data/lib/aws/simple_workflow/domain.rb +122 -0
- data/lib/aws/simple_workflow/domain_collection.rb +169 -0
- data/lib/aws/simple_workflow/errors.rb +57 -0
- data/lib/aws/simple_workflow/history_event.rb +276 -0
- data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
- data/lib/aws/simple_workflow/option_formatters.rb +75 -0
- data/lib/aws/simple_workflow/request.rb +80 -0
- data/lib/aws/simple_workflow/resource.rb +94 -0
- data/lib/aws/simple_workflow/type.rb +89 -0
- data/lib/aws/simple_workflow/type_collection.rb +139 -0
- data/lib/aws/simple_workflow/workflow_execution.rb +386 -0
- data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
- data/lib/aws/simple_workflow/workflow_type.rb +177 -0
- data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
- data/lib/aws/sns/policy.rb +1 -1
- data/lib/aws/sns/subscription.rb +2 -2
- data/lib/aws/sqs/errors.rb +2 -2
- data/lib/aws/sqs/policy.rb +1 -1
- metadata +111 -54
@@ -0,0 +1,617 @@
|
|
1
|
+
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
class SimpleWorkflow
|
18
|
+
|
19
|
+
# A collection that enumerates workflow executions.
|
20
|
+
#
|
21
|
+
# domain.workflow_executions.each do |execution|
|
22
|
+
# # ...
|
23
|
+
# end
|
24
|
+
#
|
25
|
+
# == Filtering Executions
|
26
|
+
#
|
27
|
+
# By default, all open workflow executions are enumerated.
|
28
|
+
#
|
29
|
+
class WorkflowExecutionCollection
|
30
|
+
|
31
|
+
# @private
|
32
|
+
FILTERS = [
|
33
|
+
:status,
|
34
|
+
:workflow_type,
|
35
|
+
:workflow_id,
|
36
|
+
:tagged,
|
37
|
+
:started_before,
|
38
|
+
:started_after,
|
39
|
+
:closed_before,
|
40
|
+
:closed_after,
|
41
|
+
]
|
42
|
+
|
43
|
+
include Core::Collection::Limitable
|
44
|
+
include OptionFormatters
|
45
|
+
|
46
|
+
# @private
|
47
|
+
def initialize domain, options = {}
|
48
|
+
|
49
|
+
@domain = domain
|
50
|
+
|
51
|
+
@reverse_order = !!options[:reverse_order]
|
52
|
+
|
53
|
+
@defaults = FILTERS.inject({}) do |defaults,opt|
|
54
|
+
defaults[opt] = options[opt] if options.has_key?(opt)
|
55
|
+
defaults
|
56
|
+
end
|
57
|
+
|
58
|
+
super
|
59
|
+
|
60
|
+
end
|
61
|
+
|
62
|
+
# @return [Domain] Returns the domain this execution was started in.
|
63
|
+
attr_reader :domain
|
64
|
+
|
65
|
+
# Returns the workflow execution with the given +workflow_id+ and
|
66
|
+
# +run_id+.
|
67
|
+
#
|
68
|
+
# # get a reference to a single workflow execution
|
69
|
+
# domain.workflow_executions['workflow-id', 'run-id']
|
70
|
+
# domain.workflow_executions.at('workflow-id', 'run-id')
|
71
|
+
#
|
72
|
+
# @param [String] The workflow execution id.
|
73
|
+
#
|
74
|
+
# @param [String] The workflow execution run id.
|
75
|
+
#
|
76
|
+
# @return [WorkflowExecution
|
77
|
+
#
|
78
|
+
def at workflow_id, run_id
|
79
|
+
WorkflowExecution.new(domain, workflow_id, run_id)
|
80
|
+
end
|
81
|
+
alias_method :[], :at
|
82
|
+
|
83
|
+
# Records a WorkflowExecutionSignaled event in the workflow execution
|
84
|
+
# history and creates a decision task for the workflow execution.
|
85
|
+
#
|
86
|
+
# domain.signal_workflow_execution('workflowid', 'newdata', :input => '...')
|
87
|
+
#
|
88
|
+
# @param [String] workflow_id The id of the workflow execution to signal.
|
89
|
+
#
|
90
|
+
# @param [String] signal_name The name of the signal. This name must be
|
91
|
+
# meaningful to the target workflow.
|
92
|
+
#
|
93
|
+
# @param [Hash] options
|
94
|
+
#
|
95
|
+
# @option options [String] :input (nil) Data to attach to the
|
96
|
+
# WorkflowExecutionSignaled event in the target workflow
|
97
|
+
# execution's history.
|
98
|
+
#
|
99
|
+
# @option options [String] :run_id (nil) The run id of the workflow
|
100
|
+
# execution to signal.
|
101
|
+
#
|
102
|
+
# If +:run_id+ is not specified, then the WorkflowExecutionSignaled
|
103
|
+
# event is recorded in the history of the current open workflow
|
104
|
+
# with the matching workflow_id in the domain.
|
105
|
+
#
|
106
|
+
# @return [nil]
|
107
|
+
#
|
108
|
+
def signal workflow_id, signal_name, options = {}
|
109
|
+
options[:domain] = domain.name
|
110
|
+
options[:workflow_id] = workflow_id
|
111
|
+
options[:signal_name] = signal_name
|
112
|
+
client.signal_workflow_execution(options)
|
113
|
+
nil
|
114
|
+
end
|
115
|
+
|
116
|
+
# Records a WorkflowExecutionCancelRequested event in the currently
|
117
|
+
# running workflow execution identified. This logically requests
|
118
|
+
# the cancellation of the workflow execution as a whole.
|
119
|
+
# It is up to the decider to take appropriate actions when it receives
|
120
|
+
# an execution history with this event.
|
121
|
+
#
|
122
|
+
# @note If the +:run_id+ is not specified, the
|
123
|
+
# WorkflowExecutionCancelRequested event is recorded in the history
|
124
|
+
# of the current open workflow execution with the specified
|
125
|
+
# +workflow_id+ in the domain.
|
126
|
+
#
|
127
|
+
# @note Because this action allows the workflow to properly clean up
|
128
|
+
# and gracefully close, it should be used instead of {#terminate}
|
129
|
+
# when possible.
|
130
|
+
#
|
131
|
+
# @param [String] workflow_id The id of the workflow execution to cancel.
|
132
|
+
#
|
133
|
+
# @param [Hash] options
|
134
|
+
#
|
135
|
+
# @option options [String] :run_id (nil) The run id of the workflow
|
136
|
+
# execution to cancel.
|
137
|
+
#
|
138
|
+
# @return [nil]
|
139
|
+
#
|
140
|
+
def request_cancel workflow_id, options = {}
|
141
|
+
options[:domain] = domain.name
|
142
|
+
options[:workflow_id] = workflow_id
|
143
|
+
client.request_cancel_workflow_execution(options)
|
144
|
+
nil
|
145
|
+
end
|
146
|
+
|
147
|
+
# Records a WorkflowExecutionTerminated event and forces closure of
|
148
|
+
# the workflow execution identified. The child policy, registered
|
149
|
+
# with the workflow type or specified when starting this execution,
|
150
|
+
# is applied to any open child workflow executions of this workflow
|
151
|
+
# execution.
|
152
|
+
#
|
153
|
+
# @note If the workflow execution was in progress, it is terminated
|
154
|
+
# immediately.
|
155
|
+
#
|
156
|
+
# @note If a +:run_id+ is not specified, then the
|
157
|
+
# WorkflowExecutionTerminated event is recorded in the history of
|
158
|
+
# the current open workflow with the matching workflowId in the
|
159
|
+
# domain.
|
160
|
+
#
|
161
|
+
# @note You should consider canceling the workflow execution
|
162
|
+
# instead because it allows the workflow to gracefully close
|
163
|
+
# while terminate does not.
|
164
|
+
#
|
165
|
+
# @param [String] workflow_id
|
166
|
+
#
|
167
|
+
# @param [Hash] options
|
168
|
+
#
|
169
|
+
# @option options [Symbol] :child_policy (nil)
|
170
|
+
# If set, specifies the policy to use for the child workflow
|
171
|
+
# executions of the workflow execution being terminated. This
|
172
|
+
# policy overrides the default child policy. Valid policies include:
|
173
|
+
#
|
174
|
+
# * +:terminate+ - the child executions will be terminated.
|
175
|
+
#
|
176
|
+
# * +:request_cancel+ - a request to cancel will be attempted for each
|
177
|
+
# child execution by recording a WorkflowExecutionCancelRequested
|
178
|
+
# event in its history. It is up to the decider to take appropriate
|
179
|
+
# actions when it receives an execution history with this event.
|
180
|
+
#
|
181
|
+
# * +:abandon+ - no action will be taken. The child executions will
|
182
|
+
# continue to run.
|
183
|
+
#
|
184
|
+
# @option options [String] :details Optional details for
|
185
|
+
# terminating the workflow execution.
|
186
|
+
#
|
187
|
+
# @option options [String] :reason An optional descriptive
|
188
|
+
# reason for terminating the workflow execution.
|
189
|
+
#
|
190
|
+
# @option options [String] :run_id The run id of the workflow
|
191
|
+
# execution to terminate. If a +:run_id+ is not provided, then a
|
192
|
+
# WorkflowExecutionTerminated event is recorded in the history of
|
193
|
+
# the current open workflow with the matching workflow id in the
|
194
|
+
# domain.
|
195
|
+
#
|
196
|
+
# @return [nil]
|
197
|
+
#
|
198
|
+
def terminate workflow_id, options = {}
|
199
|
+
options[:domain] = domain.name
|
200
|
+
options[:workflow_id] = workflow_id
|
201
|
+
upcase_opts(options, :child_policy)
|
202
|
+
client.terminate_workflow_execution(options)
|
203
|
+
nil
|
204
|
+
end
|
205
|
+
|
206
|
+
# @param [Symbol] status Causes the returned collection to filter
|
207
|
+
# executions by the given status. Accepted statuses include:
|
208
|
+
#
|
209
|
+
# * +:open+
|
210
|
+
# * +:closed+
|
211
|
+
# * +:completed+
|
212
|
+
# * +:failed+
|
213
|
+
# * +:canceled+
|
214
|
+
# * +:terminated+
|
215
|
+
# * +:continued+
|
216
|
+
# * +:timed_out+
|
217
|
+
#
|
218
|
+
# If +:status+ is anything besides +:open+ or +:closed+ then
|
219
|
+
# it may not be used in combination with +workflow_id+,
|
220
|
+
# +workflow_type+ or +tagged+.
|
221
|
+
#
|
222
|
+
# @return [WorkflowExecutionCollection] Returns a collection
|
223
|
+
# that will only enumerate or count executions of the given
|
224
|
+
# status.
|
225
|
+
#
|
226
|
+
def with_status status
|
227
|
+
collection_with(:status => status)
|
228
|
+
end
|
229
|
+
|
230
|
+
# @param [String] workflow_id
|
231
|
+
#
|
232
|
+
# @return [WorkflowExecutionCollection] Returns a collection
|
233
|
+
# that will only enumerate or count executions that have
|
234
|
+
# the given +workflow_id+.
|
235
|
+
#
|
236
|
+
def with_workflow_id workflow_id
|
237
|
+
collection_with(:workflow_id => workflow_id)
|
238
|
+
end
|
239
|
+
|
240
|
+
# @param [WorkflowType,Hash] workflow_type Should be a {WorkflowType}
|
241
|
+
# object or a hash with +:name+ and +:version+ keys.
|
242
|
+
#
|
243
|
+
# @return [WorkflowExecutionCollection] Returns a collection
|
244
|
+
# that will only enumerate or count executions that have
|
245
|
+
# the given +workflow_type+.
|
246
|
+
#
|
247
|
+
def with_workflow_type workflow_type
|
248
|
+
collection_with(:workflow_type => workflow_type)
|
249
|
+
end
|
250
|
+
|
251
|
+
# @param [String] tag A tag to filter workflow executions with.
|
252
|
+
#
|
253
|
+
# @return [WorkflowExecutionCollection] Returns a collection
|
254
|
+
# that will only enumerate or count executions that have
|
255
|
+
# the given +tag+.
|
256
|
+
#
|
257
|
+
def tagged tag
|
258
|
+
collection_with(:tagged => tag)
|
259
|
+
end
|
260
|
+
|
261
|
+
# Filters workflow executions by their start date.
|
262
|
+
#
|
263
|
+
# @note It is not possible to filter by both start time and close time.
|
264
|
+
#
|
265
|
+
# @param [Time,DateTime,Date,Integer,String] oldest_time Should
|
266
|
+
# be one of the listed types. Integers are treated as timestamps
|
267
|
+
# and strings are parsed by DateTime.
|
268
|
+
#
|
269
|
+
# @param [Time,DateTime,Date,Integer,String] latest_time Should
|
270
|
+
# be one of the listed types. Integers are treated as timestamps
|
271
|
+
# and strings are parsed by DateTime.
|
272
|
+
#
|
273
|
+
# @return [WorkflowExecutionCollection] Returns a colleciton
|
274
|
+
# that will only enumerate or count executions that have start
|
275
|
+
# times that fall within the given range.
|
276
|
+
#
|
277
|
+
def started_between oldest_time, latest_time
|
278
|
+
started_after(oldest_time).started_before(latest_time)
|
279
|
+
end
|
280
|
+
|
281
|
+
# Filters workflow executions by their start date.
|
282
|
+
#
|
283
|
+
# # executions that started at least an hour ago
|
284
|
+
# domain.workflow_executions.started_before(Time.now - 3600)
|
285
|
+
#
|
286
|
+
# @note It is not possible to filter by both start time and close time.
|
287
|
+
#
|
288
|
+
# @param [Time,DateTime,Date,Integer,String] time Should
|
289
|
+
# be one of the listed types. Integers are treated as timestamps
|
290
|
+
# and strings are parsed by DateTime.
|
291
|
+
#
|
292
|
+
# @return [WorkflowExecutionCollection] Returns a colleciton
|
293
|
+
# that will only enumerate or count executions that started
|
294
|
+
# before the given time.
|
295
|
+
#
|
296
|
+
def started_before time
|
297
|
+
collection_with(:started_before => time)
|
298
|
+
end
|
299
|
+
|
300
|
+
# Filters workflow executions by their start date.
|
301
|
+
#
|
302
|
+
# # executions that started within the last hour
|
303
|
+
# domain.workflow_executions.started_after(Time.now - 3600)
|
304
|
+
#
|
305
|
+
# @note It is not possible to filter by both start time and close time.
|
306
|
+
#
|
307
|
+
# @param [Time,DateTime,Date,Integer,String] time Should
|
308
|
+
# be one of the listed types. Integers are treated as timestamps
|
309
|
+
# and strings are parsed by DateTime.
|
310
|
+
#
|
311
|
+
# @return [WorkflowExecutionCollection] Returns a colleciton
|
312
|
+
# that will only enumerate or count executions that started
|
313
|
+
# after the given time.
|
314
|
+
#
|
315
|
+
def started_after time
|
316
|
+
collection_with(:started_after => time)
|
317
|
+
end
|
318
|
+
|
319
|
+
# Filters workflow executions by their close date.
|
320
|
+
#
|
321
|
+
# @note It is not possible to filter by both start time and close time.
|
322
|
+
#
|
323
|
+
# @param [Time,DateTime,Date,Integer,String] oldest_time Should
|
324
|
+
# be one of the listed types. Integers are treated as timestamps
|
325
|
+
# and strings are parsed by DateTime.
|
326
|
+
#
|
327
|
+
# @param [Time,DateTime,Date,Integer,String] latest_time Should
|
328
|
+
# be one of the listed types. Integers are treated as timestamps
|
329
|
+
# and strings are parsed by DateTime.
|
330
|
+
#
|
331
|
+
# @return [WorkflowExecutionCollection] Returns a colleciton
|
332
|
+
# that will only enumerate or count executions that closed
|
333
|
+
# between the given times.
|
334
|
+
#
|
335
|
+
def closed_between oldest_time, latest_time
|
336
|
+
closed_after(oldest_time).closed_before(latest_time)
|
337
|
+
end
|
338
|
+
|
339
|
+
# Filters workflow executions by their close date.
|
340
|
+
#
|
341
|
+
# # executions that closed more than an hour ago
|
342
|
+
# domain.workflow_executions.closed_before(Time.now - 3600)
|
343
|
+
#
|
344
|
+
# @note It is not possible to filter by both start time and close time.
|
345
|
+
#
|
346
|
+
# @param [Time,DateTime,Date,Integer,String] time Should
|
347
|
+
# be one of the listed types. Integers are treated as timestamps
|
348
|
+
# and strings are parsed by DateTime.
|
349
|
+
#
|
350
|
+
# @return [WorkflowExecutionCollection] Returns a colleciton
|
351
|
+
# that will only enumerate or count executions that closed
|
352
|
+
# before the given time.
|
353
|
+
#
|
354
|
+
def closed_before time
|
355
|
+
collection_with(:closed_before => time)
|
356
|
+
end
|
357
|
+
|
358
|
+
# Filters workflow executions by their close date.
|
359
|
+
#
|
360
|
+
# # executions that closed within the last hour
|
361
|
+
# domain.workflow_executions.closed_after(Time.now - 3600)
|
362
|
+
#
|
363
|
+
# @note It is not possible to filter by both start time and close time.
|
364
|
+
#
|
365
|
+
# @param [Time,DateTime,Date,Integer,String] time Should
|
366
|
+
# be one of the listed types. Integers are treated as timestamps
|
367
|
+
# and strings are parsed by DateTime.
|
368
|
+
#
|
369
|
+
# @return [WorkflowExecutionCollection] Returns a colleciton
|
370
|
+
# that will only enumerate or count executions that closed
|
371
|
+
# after the given time.
|
372
|
+
#
|
373
|
+
def closed_after time
|
374
|
+
collection_with(:closed_after => time)
|
375
|
+
end
|
376
|
+
|
377
|
+
# Returns a collection that enumerates workflow executions in reverse
|
378
|
+
# chronological order. By default exeuctions are enumerated in
|
379
|
+
# ascending order of their start or close time (ordered by
|
380
|
+
# close time when filtered by #closed_between).
|
381
|
+
#
|
382
|
+
# # get the latest execution
|
383
|
+
# execution = domain.workflow_executions.reverse_order.first
|
384
|
+
#
|
385
|
+
# @return [WorkflowExecutionCollection] Returns a collection
|
386
|
+
# that enumerates workflow executions in reverse order.
|
387
|
+
#
|
388
|
+
def reverse_order
|
389
|
+
collection_with(:reverse_order => true)
|
390
|
+
end
|
391
|
+
|
392
|
+
# Returns the number of workflow executions within the domain that
|
393
|
+
# meet the specified filtering criteria. Counts can be truncated
|
394
|
+
# so you should check the return value.
|
395
|
+
#
|
396
|
+
# count = domain.workflow_executions.count
|
397
|
+
# puts(count.truncated? ? "#{count.to_i}+" : count.to_i)
|
398
|
+
#
|
399
|
+
# @note You may only pass one of the following options:
|
400
|
+
# +:workflow_id+, +:workflow_type+, +:tagged+ or
|
401
|
+
# +:status+ with a "closed" value (+:status+ with +:open+ is okay).
|
402
|
+
#
|
403
|
+
# @note This operation is eventually consistent. The results are best
|
404
|
+
# effort and may not exactly reflect recent updates and changes.
|
405
|
+
#
|
406
|
+
# @param [Hash] options
|
407
|
+
#
|
408
|
+
# @option options [Symbol] :status Filters workflow executions by the
|
409
|
+
# given status. If status is not provided then it defaults to
|
410
|
+
# +:open+ unless you pass +:closed_between+ (then it defaults to
|
411
|
+
# +:closed+).
|
412
|
+
#
|
413
|
+
# If +:status+ is anything besides +:open+ or +:closed+ then
|
414
|
+
# it may not be passed with +:workflow_id+, +:workflow_type+ or
|
415
|
+
# +:tagged+.
|
416
|
+
#
|
417
|
+
# Accepted values for +:status+ include:
|
418
|
+
#
|
419
|
+
# * +:open+
|
420
|
+
# * +:closed+
|
421
|
+
# * +:completed+
|
422
|
+
# * +:failed+
|
423
|
+
# * +:canceled+
|
424
|
+
# * +:terminated+
|
425
|
+
# * +:continued+
|
426
|
+
# * +:timed_out+
|
427
|
+
#
|
428
|
+
# @option options [Time] :started_after Filters workflow executions
|
429
|
+
# down to those started after the given time.
|
430
|
+
#
|
431
|
+
# You may pass +:started_after+ with +:started_before+, but not with
|
432
|
+
# +:closed_after+ or +:closed_before+.
|
433
|
+
#
|
434
|
+
# @option options [Time] :started_before Filters workflow executions
|
435
|
+
# down to those started before the given time.
|
436
|
+
#
|
437
|
+
# You may pass +:started_after+ with +:started_before+, but not with
|
438
|
+
# +:closed_after+ or +:closed_before+.
|
439
|
+
#
|
440
|
+
# @option options [Time] :closed_after Filters workflow executions
|
441
|
+
# to those closed after the given time.
|
442
|
+
#
|
443
|
+
# * You may pass +:closed_after+ with +:closed_before+, but not with
|
444
|
+
# +:started_after+ or +:started_before+.
|
445
|
+
#
|
446
|
+
# * This option is invalid when counting or listing open executions.
|
447
|
+
#
|
448
|
+
# @option options [Time] :closed_before Filters workflow executions
|
449
|
+
# to those closed before the given time.
|
450
|
+
#
|
451
|
+
# * You may pass +:closed_after+ with +:closed_before+, but not with
|
452
|
+
# +:started_after+ or +:started_before+.
|
453
|
+
#
|
454
|
+
# * This option is invalid when counting or listing open executions.
|
455
|
+
#
|
456
|
+
# @option options [String] :workflow_id (nil) If specified, workflow
|
457
|
+
# executions are filtered by the provided workflow id.
|
458
|
+
#
|
459
|
+
# @option options [String] :tagged (nil) Filters workflow executions
|
460
|
+
# by the given tag.
|
461
|
+
#
|
462
|
+
# @option options [WorkflowType,Hash] :workflow_type (nil)
|
463
|
+
# Filters workflow executions with the given workflow type.
|
464
|
+
# +:workflow_type+ can be a {WorkflowType} object or a hash with
|
465
|
+
# a workflow type +:name+ and +:version+.
|
466
|
+
#
|
467
|
+
# @return [Count] Returns a possibly truncated count of
|
468
|
+
# workflow executions.
|
469
|
+
#
|
470
|
+
def count options = {}
|
471
|
+
|
472
|
+
open_or_closed, client_opts = handle_options(options)
|
473
|
+
|
474
|
+
client_method = :"count_#{open_or_closed}_workflow_executions"
|
475
|
+
response = client.send(client_method, client_opts)
|
476
|
+
Count.new(response.data['count'], response.data['truncated'])
|
477
|
+
end
|
478
|
+
|
479
|
+
# Enumerates workflow executions.
|
480
|
+
# @note (see #count)
|
481
|
+
# @param (see #count)
|
482
|
+
# @option (see #count)
|
483
|
+
# @option (see Core::Collection#each)
|
484
|
+
# @option options [Boolean] :reverse_order Enumerates the workflow
|
485
|
+
# execution in reverse chronoloical order if +true+. The date
|
486
|
+
# used will be the execution start time unless filtering by
|
487
|
+
# closed before/after (then it will sort by the closed time).
|
488
|
+
# @return (see Core::Collection#each)
|
489
|
+
def each options = {}
|
490
|
+
super
|
491
|
+
end
|
492
|
+
|
493
|
+
protected
|
494
|
+
def collection_with options = {}
|
495
|
+
defaults = @defaults.merge(:reverse_order => @reverse_order)
|
496
|
+
self.class.new(domain, defaults.merge(options))
|
497
|
+
end
|
498
|
+
|
499
|
+
protected
|
500
|
+
def _each_item next_token, limit, options = {}, &block
|
501
|
+
|
502
|
+
open_or_closed, client_opts = handle_options(options)
|
503
|
+
|
504
|
+
client_method = :"list_#{open_or_closed}_workflow_executions"
|
505
|
+
|
506
|
+
client_opts[:maximum_page_size] = limit if limit
|
507
|
+
client_opts[:next_page_token] = next_token if next_token
|
508
|
+
client_opts[:reverse_order] = @reverse_order unless
|
509
|
+
client_opts.key?(:reverse_order)
|
510
|
+
|
511
|
+
response = client.send(client_method, client_opts)
|
512
|
+
response.data['executionInfos'].each do |desc|
|
513
|
+
|
514
|
+
workflow_id = desc['execution']['workflowId']
|
515
|
+
run_id = desc['execution']['runId']
|
516
|
+
|
517
|
+
workflow_execution = WorkflowExecution.new_from(
|
518
|
+
client_method, desc, domain, workflow_id, run_id)
|
519
|
+
|
520
|
+
yield(workflow_execution)
|
521
|
+
|
522
|
+
end
|
523
|
+
|
524
|
+
response.data['nextPageToken']
|
525
|
+
|
526
|
+
end
|
527
|
+
|
528
|
+
protected
|
529
|
+
def handle_options options
|
530
|
+
|
531
|
+
options = @defaults.merge(options)
|
532
|
+
|
533
|
+
options[:domain] = domain.name
|
534
|
+
|
535
|
+
status = options.delete(:status)
|
536
|
+
status ||= (options[:closed_after] or options[:closed_before]) ?
|
537
|
+
:closed : :open
|
538
|
+
|
539
|
+
case status
|
540
|
+
when :open then open_or_closed = :open
|
541
|
+
when :closed then open_or_closed = :closed
|
542
|
+
else
|
543
|
+
open_or_closed = :closed
|
544
|
+
options[:close_status_filter] = { :status => status.to_s.upcase }
|
545
|
+
end
|
546
|
+
|
547
|
+
time_filter(open_or_closed, options)
|
548
|
+
|
549
|
+
if workflow_id = options.delete(:workflow_id)
|
550
|
+
options[:execution_filter] = {}
|
551
|
+
options[:execution_filter][:workflow_id] = workflow_id
|
552
|
+
end
|
553
|
+
|
554
|
+
if tag = options.delete(:tagged)
|
555
|
+
options[:tag_filter] = {}
|
556
|
+
options[:tag_filter][:tag] = tag
|
557
|
+
end
|
558
|
+
|
559
|
+
if type = options.delete(:workflow_type)
|
560
|
+
if type.is_a?(WorkflowType)
|
561
|
+
type = { :name => type.name, :version => type.version }
|
562
|
+
end
|
563
|
+
options[:type_filter] = type
|
564
|
+
end
|
565
|
+
|
566
|
+
[open_or_closed, options]
|
567
|
+
|
568
|
+
end
|
569
|
+
|
570
|
+
protected
|
571
|
+
def time_filter open_or_closed, options
|
572
|
+
|
573
|
+
early_2010 = Time.parse('2010-01-01').to_i
|
574
|
+
|
575
|
+
[%w(start started), %w(close closed)].each do |mode, suffixed|
|
576
|
+
|
577
|
+
after = options.delete(:"#{suffixed}_after")
|
578
|
+
before = options.delete(:"#{suffixed}_before")
|
579
|
+
|
580
|
+
next unless after or before
|
581
|
+
|
582
|
+
time_filter = {}
|
583
|
+
time_filter[:oldest_date] = to_timestamp(after || early_2010)
|
584
|
+
time_filter[:latest_date] = to_timestamp(before) if before
|
585
|
+
|
586
|
+
options[:"#{mode}_time_filter"] = time_filter
|
587
|
+
|
588
|
+
end
|
589
|
+
|
590
|
+
if options.key?(:start_time_filter) and options.key?(:close_time_filter)
|
591
|
+
raise 'You may filter by execution start or close time but not both.'
|
592
|
+
end
|
593
|
+
|
594
|
+
if options.key?(:close_time_filter) and open_or_closed == :open
|
595
|
+
raise 'Unable to filter by closed time for open workflow executions.'
|
596
|
+
end
|
597
|
+
|
598
|
+
# if the client does not filter by start or close time, then add
|
599
|
+
# a default filter that should return "everything"
|
600
|
+
unless options[:start_time_filter] or options[:close_time_filter]
|
601
|
+
options[:start_time_filter] = { :oldest_date => early_2010 }
|
602
|
+
end
|
603
|
+
|
604
|
+
end
|
605
|
+
|
606
|
+
protected
|
607
|
+
def to_timestamp time
|
608
|
+
case time
|
609
|
+
when Integer then time
|
610
|
+
when Time then time.to_i
|
611
|
+
else Time.parse(time.to_s).to_i
|
612
|
+
end
|
613
|
+
end
|
614
|
+
|
615
|
+
end
|
616
|
+
end
|
617
|
+
end
|