states-dsl 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/states-dsl +5 -0
- data/examples/simple.rb +64 -0
- data/lib/states/dsl.rb +58 -0
- data/lib/states/dsl/catch.rb +30 -0
- data/lib/states/dsl/choice.rb +17 -0
- data/lib/states/dsl/choices.rb +44 -0
- data/lib/states/dsl/cli.rb +16 -0
- data/lib/states/dsl/condition_group.rb +22 -0
- data/lib/states/dsl/context.rb +47 -0
- data/lib/states/dsl/error_support.rb +10 -0
- data/lib/states/dsl/execution_context.rb +39 -0
- data/lib/states/dsl/fail.rb +24 -0
- data/lib/states/dsl/namespace.rb +22 -0
- data/lib/states/dsl/naming.rb +66 -0
- data/lib/states/dsl/parallel.rb +21 -0
- data/lib/states/dsl/resource_lookup.rb +30 -0
- data/lib/states/dsl/retry.rb +39 -0
- data/lib/states/dsl/state.rb +22 -0
- data/lib/states/dsl/state_like.rb +127 -0
- data/lib/states/dsl/state_machine.rb +31 -0
- data/lib/states/dsl/state_name.rb +22 -0
- data/lib/states/dsl/state_reference.rb +19 -0
- data/lib/states/dsl/trait.rb +10 -0
- data/lib/states/dsl/variable_choice.rb +16 -0
- data/lib/states/dsl/variable_condition.rb +59 -0
- data/lib/states/dsl/variable_condition_part.rb +15 -0
- data/lib/states/dsl/version.rb +5 -0
- data/lib/states/dsl/wait.rb +38 -0
- data/states-dsl.gemspec +28 -0
- metadata +140 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cd51956a355c8efdfabe1e0fa310e8d2e3db67da
|
4
|
+
data.tar.gz: 7098eaa6d62a17f38a291c316164adfb647ede5a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8f91faea2077792aedd77c59f5208878fa651ffddbea33d3b1589079eebe5ea31250ea8c2f1833d1e286af9cf985ae600a2771dbc31c64023b5b3eb153e0046f
|
7
|
+
data.tar.gz: 70a990b106d3e169cd2a73913e251e82997b081a21119b8617459f06662a9eb1b3d6f8c5c486f6ab6a5824bfc4df918dae8524751e62bfd7818bbca5348e7a5f
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at me@sourcebender.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Calvin Yu
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# States::Dsl
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/states/dsl`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'states-dsl'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install states-dsl
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/states-dsl. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the States::Dsl project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/states-dsl/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "states/dsl"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/bin/states-dsl
ADDED
data/examples/simple.rb
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
state_machine resource: { account: "ACCOUNT", region: "REGION" } do
|
2
|
+
comment "A state machine that submits a Job to AWS Batch and monitors the Job until it completes."
|
3
|
+
|
4
|
+
start "Submit Job" do
|
5
|
+
function "SubmitJob"
|
6
|
+
result_path "$.guid"
|
7
|
+
next_state "Wait X Seconds"
|
8
|
+
retry_if :all do
|
9
|
+
interval_seconds 1
|
10
|
+
max_attempts 3
|
11
|
+
backoff_rate 2
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
state "Wait X Seconds" do
|
16
|
+
wait do
|
17
|
+
seconds_path "$.wait_time"
|
18
|
+
end
|
19
|
+
next_state "Get Job Status"
|
20
|
+
end
|
21
|
+
|
22
|
+
state "Get Job Status" do
|
23
|
+
function "CheckJob"
|
24
|
+
next_state "Job Complete?"
|
25
|
+
input_path "$.guid"
|
26
|
+
result_path "$.status"
|
27
|
+
retry_if :all do
|
28
|
+
interval_seconds 1
|
29
|
+
max_attempts 3
|
30
|
+
backoff_rate 2
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
state "Job Complete?" do
|
35
|
+
choices do
|
36
|
+
variable "$.status" do
|
37
|
+
string_eq "FAILED"
|
38
|
+
next_state "Job Failed"
|
39
|
+
end
|
40
|
+
variable "$.status" do
|
41
|
+
string_eq "SUCCEEDED"
|
42
|
+
next_state "Get Final Job Status"
|
43
|
+
end
|
44
|
+
default "Wait X Seconds"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
state "Job Failed" do
|
49
|
+
fail do
|
50
|
+
cause "AWS Batch Job Failed"
|
51
|
+
error "DescribeJob returned FAILED"
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
state "Get Final Job Status" do
|
56
|
+
function "CheckJob"
|
57
|
+
input_path "$.guid"
|
58
|
+
retry_if :all do
|
59
|
+
interval_seconds 1
|
60
|
+
max_attempts 3
|
61
|
+
backoff_rate 2
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
data/lib/states/dsl.rb
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
require "states/dsl/version"
|
2
|
+
|
3
|
+
require "json"
|
4
|
+
|
5
|
+
require "states/dsl/error_support"
|
6
|
+
require "states/dsl/state_like"
|
7
|
+
require "states/dsl/choice"
|
8
|
+
require "states/dsl/variable_condition"
|
9
|
+
require "states/dsl/variable_choice"
|
10
|
+
require "states/dsl/catch"
|
11
|
+
require "states/dsl/choices"
|
12
|
+
require "states/dsl/condition_group"
|
13
|
+
require "states/dsl/context"
|
14
|
+
require "states/dsl/execution_context"
|
15
|
+
require "states/dsl/fail"
|
16
|
+
require "states/dsl/namespace"
|
17
|
+
require "states/dsl/naming"
|
18
|
+
require "states/dsl/parallel"
|
19
|
+
require "states/dsl/resource_lookup"
|
20
|
+
require "states/dsl/retry"
|
21
|
+
require "states/dsl/state"
|
22
|
+
require "states/dsl/state_machine"
|
23
|
+
require "states/dsl/state_name"
|
24
|
+
require "states/dsl/state_reference"
|
25
|
+
require "states/dsl/trait"
|
26
|
+
require "states/dsl/variable_condition_part"
|
27
|
+
require "states/dsl/wait"
|
28
|
+
|
29
|
+
module States
|
30
|
+
module Dsl
|
31
|
+
|
32
|
+
def self.parse(file)
|
33
|
+
Parser.load(file).state_machines
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
class Parser
|
38
|
+
attr_reader :state_machines
|
39
|
+
|
40
|
+
def initialize
|
41
|
+
@state_machines = []
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.load(filename)
|
45
|
+
parser = new
|
46
|
+
parser.instance_eval(File.read(filename), filename)
|
47
|
+
parser
|
48
|
+
end
|
49
|
+
|
50
|
+
def state_machine(options={}, &block)
|
51
|
+
sm = StateMachine.new(options)
|
52
|
+
sm.instance_eval(&block)
|
53
|
+
@state_machines << sm
|
54
|
+
sm
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module States
|
2
|
+
module Dsl
|
3
|
+
class Catch
|
4
|
+
include States::Dsl::ErrorSupport
|
5
|
+
|
6
|
+
attr_reader :context
|
7
|
+
|
8
|
+
def initialize(context, options={})
|
9
|
+
@context = context
|
10
|
+
@error_equals = ensure_errors_array(options[:error_equals])
|
11
|
+
end
|
12
|
+
|
13
|
+
def result_path(path)
|
14
|
+
@result_path = path
|
15
|
+
end
|
16
|
+
|
17
|
+
def next_state(state)
|
18
|
+
@next_state = context.naming.ref(state)
|
19
|
+
end
|
20
|
+
|
21
|
+
def serializable_hash
|
22
|
+
{
|
23
|
+
"ErrorEquals" => @error_equals,
|
24
|
+
"ResultPath" => @result_path,
|
25
|
+
"Next" => @next_state,
|
26
|
+
}
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module States
|
2
|
+
module Dsl
|
3
|
+
class Choices
|
4
|
+
def initialize(naming)
|
5
|
+
@naming = naming
|
6
|
+
@choices = []
|
7
|
+
end
|
8
|
+
|
9
|
+
def variable(path, &block)
|
10
|
+
c = VariableChoice.new(path, @naming)
|
11
|
+
c.instance_eval(&block)
|
12
|
+
@choices << c
|
13
|
+
c
|
14
|
+
end
|
15
|
+
|
16
|
+
def any(&block)
|
17
|
+
g = ConditionGroup.new("Or", @naming)
|
18
|
+
g.instance_eval(&block)
|
19
|
+
@choices << g
|
20
|
+
g
|
21
|
+
end
|
22
|
+
|
23
|
+
def all(&block)
|
24
|
+
g = ConditionGroup.new("And", @naming)
|
25
|
+
g.instance_eval(&block)
|
26
|
+
@choices << g
|
27
|
+
g
|
28
|
+
end
|
29
|
+
|
30
|
+
def default(state)
|
31
|
+
@default = @naming.ref(state)
|
32
|
+
end
|
33
|
+
|
34
|
+
def serializable_hash
|
35
|
+
j = {}
|
36
|
+
j["Choices"] = @choices.map(&:serializable_hash)
|
37
|
+
if @default
|
38
|
+
j["Default"] = @default
|
39
|
+
end
|
40
|
+
j
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require "thor"
|
2
|
+
require "states/dsl"
|
3
|
+
|
4
|
+
module States
|
5
|
+
module Dsl
|
6
|
+
class CLI < Thor
|
7
|
+
|
8
|
+
desc "parse FILE", "Convert a state machine file"
|
9
|
+
def parse(file)
|
10
|
+
puts Dsl.parse(file).first.to_json
|
11
|
+
end
|
12
|
+
|
13
|
+
default_task :parse
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|