chelsy 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 415f79bbe9e77326eda44af3a21b21dd381ba832
4
- data.tar.gz: cbbf0cf1e691a81bea855d7b0b90fc345d58e3f8
3
+ metadata.gz: 19521bbd4533094bff5ecf162e7d6f8ff8329ced
4
+ data.tar.gz: 4a476989d47416c7db6050a369af9ce514139805
5
5
  SHA512:
6
- metadata.gz: d005e03c10476afd078cc8c62c9bf8651638f74a10eb251fe571f1b9fc5efc4b1e53d6ad09488b2e125e9d9ef6393b07198e3166722d844750cddc9329d6ea34
7
- data.tar.gz: 27b2504b88d0337c3271260cb0d00fa5d1e3442ce3ff7b53692235906836bd95fa6a101266e753c58ba677cdce0c1f467853804e8540e7febe1686ceb210050e
6
+ metadata.gz: 5a4d6930ec401db7fbd8916494cd521d06dafa62545e58bbcd6d19b01203e2534ff528a06d485b290ccff2300eb627ad909f20e5ff51c4f0fe830407a4b6ed81
7
+ data.tar.gz: f7e6be9b2e90d98b7c30a9b8278508e03f9b54dfe65f74860e6d89d900887217e65e931544ae111ccc3d6d9cdc79af1f014321c4eee1c9d0e75b547535e7a962
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /vendor/bundle/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.0.0
5
+ before_install: gem install bundler -v 1.13.2
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Takanori Ishikawa
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,35 @@
1
+ # Chelsy
2
+
3
+ TODO
4
+
5
+ It is currently heavily under development. I'm just having some fun.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'chelsy'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install chelsy
22
+
23
+ ## Usage
24
+
25
+ TODO
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` 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
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "chelsy"
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
+ require "pry"
10
+ Pry.start
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
data/chelsy.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'chelsy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "chelsy"
8
+ spec.version = Chelsy::VERSION
9
+ spec.authors = ["Takanori Ishikawa"]
10
+ spec.email = ["takanori.ishikawa@gmail.com"]
11
+
12
+ spec.homepage = "https://github.com/ishikawa/chelsy"
13
+ spec.summary = "C code generator"
14
+ spec.description = "C code generator written in Ruby (Work in progress)"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+
21
+ spec.required_ruby_version = '~> 2.0'
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.13"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "minitest", "~> 5.0"
26
+ spec.add_development_dependency "pry", "~> 0.10.4"
27
+ end
data/lib/chelsy/ast.rb ADDED
@@ -0,0 +1,36 @@
1
+ module Chelsy
2
+
3
+ class Node
4
+ end
5
+
6
+ class Element < Node
7
+ end
8
+
9
+ module Constant
10
+
11
+ class Integral < Element
12
+ attr_reader :value, :base
13
+
14
+ def initialize(value, unsigned: false, base: 10)
15
+ @value = value
16
+ @unsigned = unsigned
17
+ @base = base
18
+ end
19
+
20
+ def unsigned?
21
+ !!@unsigned
22
+ end
23
+ end
24
+
25
+ class Int < Integral
26
+ end
27
+
28
+ class Long < Integral
29
+ end
30
+
31
+ class LongLong < Integral
32
+ end
33
+
34
+ end
35
+
36
+ end
@@ -0,0 +1,50 @@
1
+ module Chelsy
2
+
3
+ class Translator
4
+ def translate(node)
5
+ case node
6
+ when Constant::Integral
7
+ translate_integral(node)
8
+ else
9
+ raise "Unrecognized AST node: #{node}"
10
+ end
11
+ end
12
+
13
+ protected
14
+
15
+ def translate_integral(node)
16
+ integer_prefix(node) + node.value.to_s(node.base) + integer_suffix(node)
17
+ end
18
+
19
+ private
20
+
21
+ def integer_prefix(node)
22
+ case node.base
23
+ when 16
24
+ "0x"
25
+ when 8
26
+ "0"
27
+ else
28
+ ""
29
+ end
30
+ end
31
+
32
+ def integer_suffix(node)
33
+ suffix = case node
34
+ when Constant::Long
35
+ "l"
36
+ when Constant::LongLong
37
+ "ll"
38
+ else
39
+ ""
40
+ end
41
+
42
+ if node.unsigned?
43
+ "#{suffix}u"
44
+ else
45
+ suffix
46
+ end
47
+ end
48
+ end
49
+
50
+ end
@@ -1,3 +1,3 @@
1
1
  module Chelsy
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/chelsy.rb CHANGED
@@ -1,5 +1,3 @@
1
- class Chelsy
2
- def self.hi
3
- puts "Hello, World!"
4
- end
5
- end
1
+ require "chelsy/version"
2
+ require "chelsy/ast"
3
+ require "chelsy/translator"
metadata CHANGED
@@ -1,24 +1,92 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chelsy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takanori Ishikawa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-11 00:00:00.000000000 Z
12
- dependencies: []
13
- description: test
14
- email: takanori.ishikawa@gmail.com
11
+ date: 2016-10-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.10.4
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 0.10.4
69
+ description: C code generator written in Ruby (Work in progress)
70
+ email:
71
+ - takanori.ishikawa@gmail.com
15
72
  executables: []
16
73
  extensions: []
17
74
  extra_rdoc_files: []
18
75
  files:
19
- - lib/chelsy/version.rb
76
+ - .gitignore
77
+ - .travis.yml
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - bin/console
83
+ - bin/setup
84
+ - chelsy.gemspec
20
85
  - lib/chelsy.rb
21
- homepage: https://rubygems.org/gems/chelsy
86
+ - lib/chelsy/ast.rb
87
+ - lib/chelsy/translator.rb
88
+ - lib/chelsy/version.rb
89
+ homepage: https://github.com/ishikawa/chelsy
22
90
  licenses:
23
91
  - MIT
24
92
  metadata: {}
@@ -28,9 +96,9 @@ require_paths:
28
96
  - lib
29
97
  required_ruby_version: !ruby/object:Gem::Requirement
30
98
  requirements:
31
- - - '>='
99
+ - - ~>
32
100
  - !ruby/object:Gem::Version
33
- version: '0'
101
+ version: '2.0'
34
102
  required_rubygems_version: !ruby/object:Gem::Requirement
35
103
  requirements:
36
104
  - - '>='
@@ -41,5 +109,5 @@ rubyforge_project:
41
109
  rubygems_version: 2.0.14.1
42
110
  signing_key:
43
111
  specification_version: 4
44
- summary: test
112
+ summary: C code generator
45
113
  test_files: []