File: generator.rb

package info (click to toggle)
ruby-rantly 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196 kB
  • sloc: ruby: 832; makefile: 4
file content (287 lines) | stat: -rw-r--r-- 5,637 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
class Rantly
  class << self
    attr_writer :default_size

    def singleton
      @singleton ||= Rantly.new
      @singleton
    end

    def default_size
      @default_size || 6
    end

    def each(n, limit = 10, &block)
      gen.each(n, limit, &block)
    end

    def map(n, limit = 10, &block)
      gen.map(n, limit, &block)
    end

    def value(limit = 10, &block)
      gen.value(limit, &block)
    end

    def gen
      singleton
    end
  end

  class GuardFailure < RuntimeError
  end

  class TooManyTries < RuntimeError
    def initialize(limit, nfailed)
      @limit = limit
      @nfailed = nfailed
    end

    def tries
      @nfailed
    end

    attr_reader :limit
  end

  # limit attempts to 10 times of how many things we want to generate
  def each(n, limit = 10, &block)
    generate(n, limit, block)
  end

  def map(n, limit = 10, &block)
    acc = []
    generate(n, limit, block) do |val|
      acc << val
    end
    acc
  end

  def value(limit = 10, &block)
    generate(1, limit, block) do |val|
      return val
    end
  end

  def generate(n, limit_arg, gen_block, &handler)
    limit = n * limit_arg
    nfailed = 0
    nsuccess = 0
    while nsuccess < n
      raise TooManyTries.new(limit_arg * n, nfailed) if limit.zero?

      begin
        val = instance_eval(&gen_block)
      rescue GuardFailure
        nfailed += 1
        limit -= 1
        next
      end
      nsuccess += 1
      limit -= 1
      yield(val) if handler
    end
  end

  attr_accessor :classifiers

  def initialize
    reset
  end

  def reset
    @size = nil
    @classifiers = Hash.new(0)
  end

  def classify(classifier)
    @classifiers[classifier] += 1
  end

  def guard(test)
    return true if test

    raise GuardFailure
  end

  def size
    @size || Rantly.default_size
  end

  def sized(n, &block)
    raise 'size needs to be greater than zero' if n.negative?

    old_size = @size
    @size = n
    r = instance_eval(&block)
    @size = old_size
    r
  end

  # wanna avoid going into Bignum when calling range with these.
  INTEGER_MAX = (2**(0.size * 8 - 2) - 1) / 2
  INTEGER_MIN = -INTEGER_MAX
  def integer(limit = nil)
    case limit
    when Range
      hi = limit.end
      lo = limit.begin
    when Integer
      raise 'n should be greater than zero' if limit.negative?

      hi = limit
      lo = -limit
    else
      hi = INTEGER_MAX
      lo = INTEGER_MIN
    end
    range(lo, hi)
  end

  def positive_integer
    range(0)
  end

  def float(distribution = nil, params = {})
    case distribution
    when :normal
      params[:center] ||= 0
      params[:scale] ||= 1
      raise 'The distribution scale should be greater than zero' if params[:scale].negative?

      # Sum of 6 draws from a uniform distribution give as a draw of a normal
      # distribution centered in 3 (central limit theorem).
      ([rand, rand, rand, rand, rand, rand].sum - 3) * params[:scale] + params[:center]
    else
      rand
    end
  end

  def range(lo = INTEGER_MIN, hi = INTEGER_MAX)
    rand(lo..hi)
  end

  def call(gen, *args)
    case gen
    when Symbol
      send(gen, *args)
    when Array
      raise 'empty array' if gen.empty?

      send(gen[0], *gen[1..-1])
    when Proc
      instance_eval(&gen)
    else
      raise "don't know how to call type: #{gen}"
    end
  end

  def branch(*gens)
    call(choose(*gens))
  end

  def choose(*vals)
    vals[range(0, vals.length - 1)] if vals.length.positive?
  end

  def literal(value)
    value
  end

  def boolean
    range(0, 1).zero?
  end

  def freq(*pairs)
    pairs = pairs.map do |pair|
      case pair
      when Symbol, String, Proc
        [1, pair]
      when Array
        if pair.first.is_a?(Integer)
          pair
        else
          [1] + pair
        end
      end
    end
    total = pairs.inject(0) { |sum, p| sum + p.first }
    raise("Illegal frequency:#{pairs.inspect}") if total.zero?

    pos = range(1, total)
    pairs.each do |p|
      weight, gen, *args = p
      return call(gen, *args) if pos <= p[0]

      pos -= weight
    end
  end

  def array(n = size, &block)
    n.times.map { instance_eval(&block) }
  end

  def dict(n = size, &block)
    h = {}
    each(n) do
      k, v = instance_eval(&block)
      h[k] = v if guard(!h.key?(k))
    end
    h
  end

  module Chars
    class << self
      ASCII = (0..127).to_a.each_with_object('') { |i, obj| obj << i }

      def of(regexp)
        ASCII.scan(regexp).to_a.map! { |char| char[0].ord }
      end
    end

    ALNUM = Chars.of(/[[:alnum:]]/)
    ALPHA = Chars.of(/[[:alpha:]]/)
    BLANK = Chars.of(/[[:blank:]]/)
    CNTRL = Chars.of(/[[:cntrl:]]/)
    DIGIT = Chars.of(/[[:digit:]]/)
    GRAPH = Chars.of(/[[:graph:]]/)
    LOWER = Chars.of(/[[:lower:]]/)
    PRINT = Chars.of(/[[:print:]]/)
    PUNCT = Chars.of(/[[:punct:]]/)
    SPACE = Chars.of(/[[:space:]]/)
    UPPER = Chars.of(/[[:upper:]]/)
    XDIGIT = Chars.of(/[[:xdigit:]]/)
    ASCII = Chars.of(/./)

    CLASSES = {
      alnum: ALNUM,
      alpha: ALPHA,
      blank: BLANK,
      cntrl: CNTRL,
      digit: DIGIT,
      graph: GRAPH,
      lower: LOWER,
      print: PRINT,
      punct: PUNCT,
      space: SPACE,
      upper: UPPER,
      xdigit: XDIGIT,
      ascii: ASCII
    }.freeze
  end

  def string(char_class = :print)
    chars = case char_class
            when Regexp
              Chars.of(char_class)
            when Symbol
              Chars::CLASSES[char_class]
            end
    raise 'bad arg' unless chars

    char_strings = chars.map(&:chr)
    str = Array.new(size)
    size.times { |i| str[i] = char_strings.sample }
    str.join
  end
end