Class: SXP::Reader
- Inherits:
-
Object
show all
- Includes:
- Enumerable
- Defined in:
- vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb,
vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader/basic.rb,
vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader/scheme.rb,
vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader/sparql.rb,
vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader/extended.rb,
vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader/common_lisp.rb
Overview
The base class for S-expression parsers.
Direct Known Subclasses
Basic
Defined Under Namespace
Classes: Basic, CommonLisp, EOF, Error, Extended, SPARQL, Scheme
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(input, **options, &block) ⇒ Reader
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 85
def initialize(input, **options, &block)
@options = options.dup
case
when [:getc, :ungetc, :eof?].all? { |x| input.respond_to?(x) }
@input = input
when input.respond_to?(:to_str)
require 'stringio' unless defined?(StringIO)
@input = StringIO.new(input.to_str.dup)
@input.set_encoding('UTF-8') if @input.respond_to?(:set_encoding)
else
raise ArgumentError, "expected an IO or String input stream, but got #{input.inspect}"
end
if block_given?
case block.arity
when 1 then block.call(self)
else self.instance_eval(&block)
end
end
end
|
Instance Attribute Details
109
110
111
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 109
def input
@input
end
|
#options ⇒ Hash
112
113
114
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 112
def options
@options
end
|
Class Method Details
.read(input, **options) ⇒ Object
Reads one S-expression from the given input stream.
76
77
78
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 76
def self.read(input, **options)
self.new(input, **options).read
end
|
.read_all(input, **options) ⇒ Enumerable<Object>
Reads all S-expressions from the given input stream.
65
66
67
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 65
def self.read_all(input, **options)
self.new(input, **options).read_all
end
|
.read_file(filename, **options) ⇒ Enumerable<Object>
Reads all S-expressions from a given input file.
54
55
56
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 54
def self.read_file(filename, **options)
File.open(filename.to_s, 'rb') { |io| read_all(io, **options) }
end
|
.read_url(url, **options) ⇒ Enumerable<Object>
Reads all S-expressions from a given input URL using the HTTP or FTP
protocols.
25
26
27
28
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 25
def self.read_url(url, **options)
require 'open-uri'
open(url.to_s, 'rb', nil, **options) { |io| read_all(io, **options) }
end
|
Instance Method Details
#each {|object| ... } ⇒ Enumerator
118
119
120
121
122
123
124
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 118
def each(&block)
unless block_given?
to_enum
else
read_all.each(&block) end
end
|
#eof? ⇒ Boolean
288
289
290
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 288
def eof?
@input.eof?
end
|
#peek_char ⇒ String
273
274
275
276
277
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 273
def peek_char
char = @input.getc
@input.ungetc(char) unless char.nil?
char
end
|
#read(eof: nil, eol: nil, list_term: false, **options) ⇒ Object
Also known as:
skip
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 148
def read(eof: nil, eol: nil, list_term: false, **options)
token, value = read_token
case token
when :eof
throw :eof if eof == :throw
raise EOF, "unexpected end of input"
when :list
if ndx = self.class.const_get(:LPARENS).index(value)
term = self.class.const_get(:RPARENS)[ndx]
read_list(term)
else
throw :eol if eol == :throw && value == list_term
raise Error, "unexpected list terminator: ?#{value.chr}"
end
else value
end
end
|
#read_all(**options) ⇒ Array
130
131
132
133
134
135
136
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 130
def read_all(**options)
list = []
catch (:eof) do
list << read(eof: :throw, **options) until eof?
end
list
end
|
#read_atom ⇒ Object
209
210
211
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 209
def read_atom
raise NotImplementedError.new("#{self.class}#read_atom")
end
|
#read_char ⇒ String
Also known as:
skip_char
263
264
265
266
267
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 263
def read_char
char = @input.getc
raise EOF, 'unexpected end of input' if char.nil?
char
end
|
#read_character ⇒ String
221
222
223
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 221
def read_character
raise NotImplementedError.new("#{self.class}#read_character")
end
|
#read_chars(count = 1) ⇒ String
255
256
257
258
259
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 255
def read_chars(count = 1)
buffer = ''
count.times { buffer << read_char.chr }
buffer
end
|
#read_files(*filenames) ⇒ Enumerable<Object>
#read_files(*filenames, **options) ⇒ Enumerable<Object>
Reads all S-expressions from the given input files.
42
43
44
45
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 42
def read_files(*filenames)
options = filenames.last.is_a?(Hash) ? filenames.pop : {}
filenames.map { |filename| read_file(filename, **options) }.inject { |sxps, sxp| sxps + sxp }
end
|
#read_integer(base = 10) ⇒ Integer
199
200
201
202
203
204
205
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 199
def read_integer(base = 10)
case buffer = read_literal
when self.class.const_get(:"INTEGER_BASE_#{base}")
buffer.to_i(base)
else raise Error, "illegal base-#{base} number syntax: #{buffer}"
end
end
|
#read_list(list_term = nil) ⇒ Array
173
174
175
176
177
178
179
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 173
def read_list(list_term = nil)
list = []
catch (:eol) do
list << read(eol: :throw, list_term: list_term) while true
end
list
end
|
#read_literal ⇒ String
227
228
229
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 227
def read_literal
raise NotImplementedError.new("#{self.class}#read_literal")
end
|
#read_sharp ⇒ Object
192
193
194
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 192
def read_sharp
raise NotImplementedError.new("#{self.class}#read_sharp")
end
|
#read_string ⇒ String
215
216
217
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 215
def read_string
raise NotImplementedError.new("#{self.class}#read_string")
end
|
#read_token ⇒ Object
183
184
185
186
187
188
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 183
def read_token
case peek_char
when nil then :eof
else [:atom, read_atom]
end
end
|
This method returns an undefined value.
235
236
237
238
239
240
241
242
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 235
def
until eof?
case (char = peek_char).chr
when /\s+/ then skip_char
else break
end
end
end
|
#skip_line
This method returns an undefined value.
246
247
248
249
250
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 246
def skip_line
loop do
break if eof? || read_char.chr == $/
end
end
|
#unread(string) ⇒ Object
Unread the string, putting back into the input stream
282
283
284
|
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sxp.rb-7a771a32c5fe/lib/sxp/reader.rb', line 282
def unread(string)
string.reverse.each_char {|c| @input.ungetc(c)}
end
|