nendo 0.5.4 → 0.6.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.
- data/lib/nendo.rb +16 -2843
- data/lib/ruby/builtin_functions.rb +510 -0
- data/lib/ruby/core.rb +140 -0
- data/lib/ruby/evaluator.rb +1349 -0
- data/lib/ruby/out_of_module.rb +74 -0
- data/lib/ruby/printer.rb +111 -0
- data/lib/ruby/reader.rb +585 -0
- data/lib/ruby/types.rb +309 -0
- metadata +12 -5
@@ -0,0 +1,74 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# -*- encoding: utf-8 -*-
|
3
|
+
#
|
4
|
+
# out_of_module.rb - "Monkey patches to Ruby's standard libraries for nendo"
|
5
|
+
#
|
6
|
+
# Copyright (c) 2009-2010 Kiyoka Nishiyama <kiyoka@sumibi.org>
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions
|
10
|
+
# are met:
|
11
|
+
#
|
12
|
+
# 1. Redistributions of source code must retain the above copyright
|
13
|
+
# notice, this list of conditions and the following disclaimer.
|
14
|
+
#
|
15
|
+
# 2. Redistributions in binary form must reproduce the above copyright
|
16
|
+
# notice, this list of conditions and the following disclaimer in the
|
17
|
+
# documentation and/or other materials provided with the distribution.
|
18
|
+
#
|
19
|
+
# 3. Neither the name of the authors nor the names of its contributors
|
20
|
+
# may be used to endorse or promote products derived from this
|
21
|
+
# software without specific prior written permission.
|
22
|
+
#
|
23
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
24
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
25
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
26
|
+
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
27
|
+
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
28
|
+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
29
|
+
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
30
|
+
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
31
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
32
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
33
|
+
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34
|
+
|
35
|
+
class Symbol
|
36
|
+
def setLispToken( token )
|
37
|
+
@token = token
|
38
|
+
end
|
39
|
+
def sourcefile
|
40
|
+
@token ? @token.sourcefile : ""
|
41
|
+
end
|
42
|
+
def lineno
|
43
|
+
@token ? @token.lineno : 1
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
class Array
|
48
|
+
def to_list( lastAtom = false, value = Nendo::Nil.new )
|
49
|
+
if 0 == self.length
|
50
|
+
Nendo::Cell.new()
|
51
|
+
else
|
52
|
+
cells = self.map { |x|
|
53
|
+
Nendo::Cell.new( x )
|
54
|
+
}
|
55
|
+
ptr = cells.pop
|
56
|
+
ptr.cdr = value if lastAtom
|
57
|
+
cells.reverse.each { |x|
|
58
|
+
x.cdr = ptr
|
59
|
+
ptr = x
|
60
|
+
}
|
61
|
+
return ptr
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
class Hash
|
67
|
+
def to_list
|
68
|
+
arr = Array.new
|
69
|
+
self.each_pair { |key,val|
|
70
|
+
arr << Nendo::Cell.new( key, val )
|
71
|
+
}
|
72
|
+
arr.to_list
|
73
|
+
end
|
74
|
+
end
|
data/lib/ruby/printer.rb
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# -*- encoding: utf-8 -*-
|
3
|
+
#
|
4
|
+
# printer.rb - "printer for nendo"
|
5
|
+
#
|
6
|
+
# Copyright (c) 2009-2010 Kiyoka Nishiyama <kiyoka@sumibi.org>
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions
|
10
|
+
# are met:
|
11
|
+
#
|
12
|
+
# 1. Redistributions of source code must retain the above copyright
|
13
|
+
# notice, this list of conditions and the following disclaimer.
|
14
|
+
#
|
15
|
+
# 2. Redistributions in binary form must reproduce the above copyright
|
16
|
+
# notice, this list of conditions and the following disclaimer in the
|
17
|
+
# documentation and/or other materials provided with the distribution.
|
18
|
+
#
|
19
|
+
# 3. Neither the name of the authors nor the names of its contributors
|
20
|
+
# may be used to endorse or promote products derived from this
|
21
|
+
# software without specific prior written permission.
|
22
|
+
#
|
23
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
24
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
25
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
26
|
+
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
27
|
+
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
28
|
+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
29
|
+
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
30
|
+
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
31
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
32
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
33
|
+
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34
|
+
#
|
35
|
+
module Nendo
|
36
|
+
|
37
|
+
class Printer
|
38
|
+
def initialize( debug = false )
|
39
|
+
@debug = debug
|
40
|
+
end
|
41
|
+
|
42
|
+
def __write( sexp, readable )
|
43
|
+
getQuoteKeyword = lambda { |x|
|
44
|
+
case x
|
45
|
+
when :"dot-operator"
|
46
|
+
"."
|
47
|
+
else
|
48
|
+
false
|
49
|
+
end
|
50
|
+
}
|
51
|
+
case sexp
|
52
|
+
when Cell
|
53
|
+
arr = sexp.map { |x| __write( x.car, readable ) }
|
54
|
+
lastAtom = sexp.lastAtom
|
55
|
+
lastAtomStr = lastAtom ? __write( sexp.getLastAtom, readable ) : ""
|
56
|
+
keyword = getQuoteKeyword.call( sexp.car )
|
57
|
+
if keyword
|
58
|
+
keyword + arr[1..-1].join( " " ) + (lastAtom ? " . " + lastAtomStr : "")
|
59
|
+
else
|
60
|
+
"(" + arr.join( " " ) + (lastAtom ? " . " + lastAtomStr : "") + ")"
|
61
|
+
end
|
62
|
+
when Array # is a vector in the Nendo world.
|
63
|
+
arr = sexp.map { |x| __write( x, readable ) }
|
64
|
+
"#(" + arr.join( " " ) + ")"
|
65
|
+
when true
|
66
|
+
"#t"
|
67
|
+
when false
|
68
|
+
"#f"
|
69
|
+
when Symbol
|
70
|
+
keyword = getQuoteKeyword.call( sexp )
|
71
|
+
if keyword
|
72
|
+
keyword
|
73
|
+
else
|
74
|
+
sprintf( "%s", sexp.to_s )
|
75
|
+
end
|
76
|
+
when String, LispString
|
77
|
+
if readable
|
78
|
+
sprintf( "\"%s\"", LispString.escape( sexp.to_s ))
|
79
|
+
else
|
80
|
+
sexp.to_s
|
81
|
+
end
|
82
|
+
when SyntacticClosure
|
83
|
+
sprintf( "#<SyntacticClosure[%s:%s]>", sexp.originalSymbol, sexp.renamedSymbol )
|
84
|
+
when Regexp
|
85
|
+
"#/" + sexp.source + "/" + (sexp.casefold? ? "i" : "")
|
86
|
+
when LispKeyword
|
87
|
+
":" + sexp.key.to_s
|
88
|
+
when LispCoreSyntax
|
89
|
+
"#<Nendo::LispCoreSyntax>"
|
90
|
+
when LispMacro
|
91
|
+
"#<Nendo::LispMacro>"
|
92
|
+
when LispSyntax
|
93
|
+
"#<Nendo::LispSyntax>"
|
94
|
+
when Nil
|
95
|
+
"()"
|
96
|
+
when nil
|
97
|
+
"nil"
|
98
|
+
else
|
99
|
+
sprintf( "%s", sexp )
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def _print( sexp )
|
104
|
+
self.__write( sexp, false )
|
105
|
+
end
|
106
|
+
def _write( sexp )
|
107
|
+
self.__write( sexp, true )
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
end
|