goon_model_gen 0.1.0

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.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +7 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +10 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +44 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/exe/goon_model_gen +10 -0
  13. data/goon_model_gen.gemspec +41 -0
  14. data/lib/goon_model_gen.rb +6 -0
  15. data/lib/goon_model_gen/cli.rb +79 -0
  16. data/lib/goon_model_gen/config.rb +83 -0
  17. data/lib/goon_model_gen/generator.rb +111 -0
  18. data/lib/goon_model_gen/golang.rb +22 -0
  19. data/lib/goon_model_gen/golang/builtin.rb +31 -0
  20. data/lib/goon_model_gen/golang/datastore_supported.rb +48 -0
  21. data/lib/goon_model_gen/golang/enum.rb +26 -0
  22. data/lib/goon_model_gen/golang/field.rb +41 -0
  23. data/lib/goon_model_gen/golang/file.rb +27 -0
  24. data/lib/goon_model_gen/golang/modifier.rb +65 -0
  25. data/lib/goon_model_gen/golang/named_slice.rb +24 -0
  26. data/lib/goon_model_gen/golang/package.rb +83 -0
  27. data/lib/goon_model_gen/golang/packages.rb +64 -0
  28. data/lib/goon_model_gen/golang/predeclared_type.rb +16 -0
  29. data/lib/goon_model_gen/golang/sentence.rb +17 -0
  30. data/lib/goon_model_gen/golang/struct.rb +38 -0
  31. data/lib/goon_model_gen/golang/type.rb +29 -0
  32. data/lib/goon_model_gen/model_builder.rb +137 -0
  33. data/lib/goon_model_gen/source/context.rb +17 -0
  34. data/lib/goon_model_gen/source/contextual.rb +9 -0
  35. data/lib/goon_model_gen/source/enum.rb +20 -0
  36. data/lib/goon_model_gen/source/field.rb +41 -0
  37. data/lib/goon_model_gen/source/file.rb +58 -0
  38. data/lib/goon_model_gen/source/loader.rb +71 -0
  39. data/lib/goon_model_gen/source/named_slice.rb +18 -0
  40. data/lib/goon_model_gen/source/struct.rb +26 -0
  41. data/lib/goon_model_gen/source/type.rb +21 -0
  42. data/lib/goon_model_gen/templates/dsl.rb +60 -0
  43. data/lib/goon_model_gen/templates/model/enum/01_base.go.erb +7 -0
  44. data/lib/goon_model_gen/templates/model/enum/02_All.go.erb +5 -0
  45. data/lib/goon_model_gen/templates/model/enum/02_Map.go.erb +5 -0
  46. data/lib/goon_model_gen/templates/model/enum/03_String.go.erb +3 -0
  47. data/lib/goon_model_gen/templates/model/enum/04_NameToValue.go.erb +5 -0
  48. data/lib/goon_model_gen/templates/model/enum/05_StringTo.go.erb +19 -0
  49. data/lib/goon_model_gen/templates/model/enum/06_ToString.go.erb +3 -0
  50. data/lib/goon_model_gen/templates/model/enum/07_Valid.go.erb +4 -0
  51. data/lib/goon_model_gen/templates/model/goon/01_struct.go.erb +6 -0
  52. data/lib/goon_model_gen/templates/model/goon/02_Assign.go.erb +16 -0
  53. data/lib/goon_model_gen/templates/model/goon/03_PrepareToCreate.go.erb +16 -0
  54. data/lib/goon_model_gen/templates/model/goon/04_PrepareToUpdate.go.erb +8 -0
  55. data/lib/goon_model_gen/templates/model/goon/05_PrepareFields.go.erb +8 -0
  56. data/lib/goon_model_gen/templates/model/goon/06_IsPersisted.go.erb +3 -0
  57. data/lib/goon_model_gen/templates/model/slice/01_base.go.erb +1 -0
  58. data/lib/goon_model_gen/templates/model/struct/01_struct.go.erb +6 -0
  59. data/lib/goon_model_gen/version.rb +3 -0
  60. metadata +189 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 71c4a05118dd151eedc058383396567e8b835e1a98a54057772aec97ddb3ff73
4
+ data.tar.gz: 32d046b7140620ea844926f82e63c2dafdc916dc4f80348912587da4443b1f05
5
+ SHA512:
6
+ metadata.gz: 730259b65a1bcacee59cd18f9fca4ae028c02c12adbb32366e09b7f47d9b941dd01139de2d7a4f52cb38a879b396e46704a404fe82ccc712508d7f3754c65258
7
+ data.tar.gz: a985ff4ec7f334efc0827c5f9e0ae97750c4e62851697a39869d7476f269993cd37cbc45e84882b7323994ece25e576aa3ab96b98d13d4d48e31f0b11f20f405
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ /Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.5
7
+ before_install: gem install bundler -v 2.0.1
@@ -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 akm2000@gmail.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
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in goon_model_gen.gemspec
4
+ gemspec
5
+
6
+ group :test do
7
+ gem 'pry'
8
+ gem 'pry-byebug'
9
+ gem 'pry-stack_explorer'
10
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 akm
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,44 @@
1
+ # GoonModelGen
2
+
3
+ `goon_model_gen` is a generator of golang types with [goon](https://github.com/mjibson/goon).
4
+ `goon_model_gen` generates model types and their store types.
5
+
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'goon_model_gen'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install goon_model_gen
22
+
23
+ ## Usage
24
+
25
+ $ goon_model_gen -h
26
+
27
+
28
+ ## Development
29
+
30
+ 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.
31
+
32
+ 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).
33
+
34
+ ## Contributing
35
+
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/goon_model_gen. 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.
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
+
42
+ ## Code of Conduct
43
+
44
+ Everyone interacting in the GoonModelGen project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/goon_model_gen/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "goon_model_gen"
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Add lib to LOAD_PATH in development environment
4
+ if File.exist?(File.expand_path("../../.git", __FILE__))
5
+ $LOAD_PATH << File.expand_path("../../lib", __FILE__)
6
+ end
7
+
8
+ require "goon_model_gen/cli"
9
+
10
+ GoonModelGen::Cli.start(ARGV)
@@ -0,0 +1,41 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "goon_model_gen/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "goon_model_gen"
8
+ spec.version = GoonModelGen::VERSION
9
+ spec.authors = ["akm"]
10
+ spec.email = ["akm2000@gmail.com"]
11
+
12
+ spec.summary = %q{Generate model source files with datastore in Golang}
13
+ spec.description = %q{Generate model source files with datastore in Golang}
14
+ spec.homepage = "https://github.com/akm/goon_model_gen"
15
+ spec.license = "MIT"
16
+
17
+ if spec.respond_to?(:metadata)
18
+ spec.metadata["homepage_uri"] = spec.homepage
19
+ spec.metadata["source_code_uri"] = "https://github.com/akm/goon_model_gen"
20
+ spec.metadata["changelog_uri"] = "https://github.com/akm/goon_model_gen"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ # Specify which files should be added to the gem when it is released.
27
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
29
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
30
+ end
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+
35
+ spec.add_development_dependency "bundler", "~> 2.0"
36
+ spec.add_development_dependency "rake", "~> 10.0"
37
+ spec.add_development_dependency "rspec", "~> 3.0"
38
+ spec.add_development_dependency "pry"
39
+ spec.add_development_dependency "pry-byebug"
40
+ spec.add_development_dependency "pry-stack_explorer"
41
+ end
@@ -0,0 +1,6 @@
1
+ require "goon_model_gen/version"
2
+
3
+ module GoonModelGen
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,79 @@
1
+ require "goon_model_gen"
2
+
3
+ require "yaml"
4
+
5
+ require "thor"
6
+
7
+ require "goon_model_gen/config"
8
+ require "goon_model_gen/model_builder"
9
+ require "goon_model_gen/source/loader"
10
+ require "goon_model_gen/generator"
11
+
12
+ module GoonModelGen
13
+ class Cli < Thor
14
+ include Thor::Actions
15
+
16
+ class_option :version, type: :boolean, aliases: 'v', desc: 'Show version before processing'
17
+ class_option :skip, type: :boolean, aliases: 's', desc: "Skip generate file"
18
+ class_option :force, type: :boolean, aliases: 'f', desc: 'Force overwrite files'
19
+ class_option :overwrite_custom_file, type: :boolean, aliases: 'o', desc: 'Overwrite custom files if given'
20
+ class_option :config, type: :string, aliases: 'c', default: '.goon_model_gen.yaml', desc: 'Path to config file. You can generate it by config subcommand'
21
+
22
+ desc "config", "Show config"
23
+ def config
24
+ puts YAML.dump(cfg)
25
+ end
26
+
27
+ desc "source FILE1...", "Show source YAML object for debug"
28
+ def sources(*paths)
29
+ context = load_yamls(paths)
30
+ puts YAML.dump(context)
31
+ end
32
+
33
+ desc "build FILE1...", "Build golang objects from source YAML files"
34
+ def build(*paths)
35
+ packages = build_model_objects(paths)
36
+ puts YAML.dump(packages)
37
+ end
38
+
39
+ desc "model FILE1...", "Generate model files from source YAML files"
40
+ def model(*paths)
41
+ packages = build_model_objects(paths)
42
+ packages.map(&:files).flatten.each do |f|
43
+ new_generator(f, packages).run
44
+ end
45
+ end
46
+
47
+ no_commands do
48
+ def cfg
49
+ @cfg ||= Config.new.load_from(options[:config])
50
+ end
51
+
52
+ # @param paths [Array<String>]
53
+ # @return [Source::Context]
54
+ def load_yamls(paths)
55
+ Source::Loader.new.process(paths)
56
+ end
57
+
58
+ # @param paths [Array<String>] Source::Context
59
+ # @return [Array<Golang::Package>]
60
+ def build_model_objects(paths)
61
+ context = Source::Loader.new.process(paths)
62
+ b = ModelBuilder.new(cfg.model_package_path)
63
+ b.build(context)
64
+ end
65
+
66
+ # @param f [Golang::File]
67
+ # @param packages [Golang::Packages]
68
+ # @return [Generator]
69
+ def new_generator(f, packages)
70
+ g = Generator.new(f, packages, thor: self)
71
+ g.load_config(cfg)
72
+ g.skip = options[:skip]
73
+ g.force = options[:force]
74
+ g.overwrite_custom_file = options[:overwrite_custom_file]
75
+ return g
76
+ end
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,83 @@
1
+ require "goon_model_gen"
2
+
3
+ require "erb"
4
+ require "yaml"
5
+ require "pathname"
6
+
7
+ require "goon_model_gen/golang"
8
+
9
+ module GoonModelGen
10
+ class Config
11
+
12
+ ATTRIBUTES = %w[
13
+ gofmt_disabled
14
+ base_package_path
15
+ model_dir
16
+ model_package_path
17
+ validator_dir
18
+ validator_package_path
19
+ store_dir
20
+ store_package_path
21
+ converter_dir
22
+ converter_package_path
23
+ structs_gen_dir
24
+ validator_package_path
25
+ version_comment
26
+ ].freeze
27
+
28
+ attr_accessor *ATTRIBUTES
29
+
30
+ def fulfill
31
+ @gofmt_disabled ||= false
32
+ @model_dir ||= "./model"
33
+ @store_dir ||= "./stores"
34
+ @converter_dir ||= "./converters"
35
+ @goa_gen_dir ||= "./gen"
36
+ @base_package_path ||= default_go_package
37
+ @model_package_path ||= join_paths(@base_package_path, @model_dir)
38
+ @store_package_path ||= join_paths(@base_package_path, @store_dir)
39
+ @converter_package_path ||= join_paths(@base_package_path, @converter_dir)
40
+ @goa_gen_package_path ||= join_paths(@base_package_path, @goa_gen_dir)
41
+ @structs_gen_dir ||= "./cmd/structs"
42
+ @version_comment ||= false
43
+ self
44
+ end
45
+
46
+ def load_from(path)
47
+ erb = ERB.new(File.read(path), nil, "-")
48
+ erb.filename = path
49
+ config = YAML.load(erb.result, path)
50
+
51
+ ATTRIBUTES.each do |name|
52
+ instance_variable_set("@#{name}", config[name].presence)
53
+ end
54
+
55
+ fulfill
56
+ end
57
+
58
+ def to_hash
59
+ ATTRIBUTES.each_with_object({}) do |name, d|
60
+ d[name] = send(name)
61
+ end
62
+ end
63
+
64
+ def to_yaml
65
+ YAML.dump(to_hash)
66
+ end
67
+
68
+ def default_go_package
69
+ return default_go_package!
70
+ rescue
71
+ nil
72
+ end
73
+
74
+ def default_go_package!
75
+ return Pathname.new(Dir.pwd).relative_path_from(Pathname.new(File.join(Golang.gopath, "src"))).to_s
76
+ end
77
+
78
+ def join_paths(path1, path2)
79
+ Pathname.new(path1).join(Pathname.new(path2)).to_s
80
+ end
81
+
82
+ end
83
+ end