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 +4 -4
- data/.gitignore +10 -0
- data/.travis.yml +5 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +21 -0
- data/README.md +35 -0
- data/Rakefile +10 -0
- data/bin/console +10 -0
- data/bin/setup +8 -0
- data/chelsy.gemspec +27 -0
- data/lib/chelsy/ast.rb +36 -0
- data/lib/chelsy/translator.rb +50 -0
- data/lib/chelsy/version.rb +1 -1
- data/lib/chelsy.rb +3 -5
- metadata +78 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19521bbd4533094bff5ecf162e7d6f8ff8329ced
|
4
|
+
data.tar.gz: 4a476989d47416c7db6050a369af9ce514139805
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a4d6930ec401db7fbd8916494cd521d06dafa62545e58bbcd6d19b01203e2534ff528a06d485b290ccff2300eb627ad909f20e5ff51c4f0fe830407a4b6ed81
|
7
|
+
data.tar.gz: f7e6be9b2e90d98b7c30a9b8278508e03f9b54dfe65f74860e6d89d900887217e65e931544ae111ccc3d6d9cdc79af1f014321c4eee1c9d0e75b547535e7a962
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
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
data/bin/console
ADDED
data/bin/setup
ADDED
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
|
data/lib/chelsy/version.rb
CHANGED
data/lib/chelsy.rb
CHANGED
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.
|
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-
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
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
|
-
-
|
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
|
-
|
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:
|
112
|
+
summary: C code generator
|
45
113
|
test_files: []
|