-
Notifications
You must be signed in to change notification settings - Fork 0
/
nil_passer.rb
522 lines (453 loc) · 15.3 KB
/
nil_passer.rb
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
require 'rails'
class NilPasser
attr_accessor :obj, :method_name, :orig_proc
@@rails_path ||= Rails.root.to_s
@@rails_logger ||= Rails.logger
def self.test(a_caller, block)
if (block&.arity == 1) && a_caller.first&.start_with?(@@rails_path)
begin
block.call nil
rescue Exception => e
@@rails_logger.tagged("no-nil") { @@rails_logger.info "found a block that can't handle nil at #{block.source_location}, error: #{e.inspect}" }
end
end
end
def self.clone(klass, method_name)
begin
# ensure that the method is not recursively redefined
klass.class_variable_get("@@old_#{method_name}".to_sym)
rescue NameError
klass.instance_method(method_name).clone
end
end
def self.teardown(nil_passers)
nil_passers.each do |nil_passer|
nil_passer.teardown
end
end
def initialize(obj, method_name=nil, accepts_args=true)
if obj.is_a? Class
self.initialize_class obj, method_name, accepts_args
else
self.initialize_instance obj, method_name, accepts_args
end
end
# stuff -> @@old_stuff
def to_old(x)
# need to convert method-only symbols into symbols acceptible for class variables
clean_x = x.to_s.gsub(/[^0-9a-zA-Z_]/) do |y|
y.codepoints.map do |z|
z.to_s
end.join('_')
end
"@@old_#{clean_x}".to_sym
end
def initialize_class(klass, method_name=nil, accepts_args=true)
if method_name
obj.class.class_variable_set(to_old method_name, NilPasser.clone(obj, method_name))
if accepts_args
# I don't know how to send this to klass without eval
eval [ "class #{klass}",
" def #{method_name}(*args, &block)",
" NilPasser.test caller, block",
" #{to_old method_name}.bind(self)&.call(*args, &block)",
" end",
"end"
].join("\n")
else
eval [ "class #{klass}",
" def #{method_name}(&block)",
" NilPasser.test caller, block",
" #{to_old method_name}.bind(self)&.call(&block)",
" end",
"end"
].join("\n")
end
else
obj.methods.map do |method|
NilPasser.new(obj, method)
end
end
end
def initialize_instance(inst, method_name=nil, accepts_args=true)
if method_name
begin
@obj = inst
@method_name = method_name
@orig_proc = inst.method(method_name).to_proc
rescue NameError => e
raise ArgumentError, "The provided method must be a valid method of the provided object, got: #{e}"
end
else
(inst.methods - Object.methods).map do |method|
NilPasser.new(obj, method)
end
end
end
def setup
@orig_proc = self.obj.method(@method_name).to_proc.clone
@obj.send(:define_singleton_method, @method_name, self.method(:call).to_proc)
self
end
def call(*args, &block)
NilPasser.test caller, block
@orig_proc.call(*args, &block)
end
def teardown
@obj.send(:define_singleton_method, @method_name, @orig_proc)
end
end
# require 'rails'
# require_relative 'predicate_gen'
# require_relative 'code_gen'
# require_relative 'self'
# class Gen::MonitorArgs
# attr_accessor :block_given, :in, :only
# end
# class Gen::MonitorOptions
# # recurse the options, replacing convenient options with pedantic ones
# def recurse(options)
# if options.is_a? Hash
# options.map do |k, v|
# k2, v2 = if self.respond_to? "options_#{k}"
# self.send("options_#{k}", v) || [k, v]
# end
# v2 ||= self.recurse v2
# [k2, v2]
# end.to_h
# end
# end
# def options_in(x)
# if x
# if x.is_a?(Proc) && x.arity == 1
# # add proc(source_location) as prerequisite
# [:source_location, x]
# elsif x.is_a? Pathname
# if x.extname == ".rb"
# [:source_location, Proc.new{|source_location| source_location == x}]
# else
# [:source_location, Proc.new{|source_location| source_location.start_with?(x)}]
# end
# elsif x.is_a? String
# x = Pathname.new x
# if x.extname == ".rb"
# [:source_location, Proc.new{|source_location| source_location == x}]
# else
# [:source_location, Proc.new{|source_location| source_location.start_with?(x)}]
# end
# else
# raise ArgumentError, "Gen::MonitorOptions#in: Expected a single-argument Proc, a Pathname/String of a directory/source file location, or a list of those, got: #{x}"
# end
# end
# end
# def options_arguments(x)
# if x.is_a? Hash
# x.map do |k, v|
# if /_(?<num>\d+)/ =~ k
# if v.is_a? Proc
# [k, Proc.new{|y| v.call(y[num.to_i])}]
# else
# [k, Proc.new{|y| v == y[num.to_i] }]
# end
# elsif "has_defaults" == k.to_s && [false, true].include?(v)
# [k, Proc.new{|y| y.parameters.map{|z, _| z}.any?{|w| w == :opt} == v}]
# else
# [k, v]
# end
# end
# end
# end
# def options_only(x)
# if x.respond_to? :to_f
# Proc.new{ rand <= x.to_f }
# end
# end
# end
# # idea is that if predicate, pass args to a Proc and continue on. used for logging, tests, etc.
# class Gen::Monitor < Gen::Code
# def self.nice_options(options={})
# options
# end
# def self.class_method(options={}, &block)
# end
# def self.instance_method(options={}, &block)
# arguments_test = make_arguments_test (options[:arguments] || options[:args])
# block_test = make_block_test options[:block_given]
# in_test = make_in_test options[:in]
# method_test = make_method_test options[:method]
# only_test = make_only_test options[:only]
# Proc.new do |method, *args, &block|
# in
# method
# block
# arguments
# only
# end
# end
# end
# class NilPasser < MethodMonitor
# @@rails_path ||= Rails.root.to_s
# # instance_method block_given: { arity: 1 }, in: Rails.root, only: 0.5 do |method, args, block|
# instance_method block_given: { arity: 1, in: Rails.root } do |method, args, block|
# begin
# block.call nil
# rescue Exception => e
# puts "found block at #{block.source_location}, error: #{e.inspect}"
# end
# end
# end
# class NiceOptions
# # here, we reformat a few options to match the format of MethodTester
# # assume applies to all class/instance variables of given symbol (when called like MethodMonitor.monitor Klass, :sym)
# # default monitors do nothing
# # only adds the features used to the method (so probably have to generate source to remain fast)
# # only: (0..1) adds the monitor with percent probability
# # only: Fixnum adds only Fixnum monitors
# end
# class MethodMonitor
# def self.test(a_caller, block)
# if (block&.arity == 1) && a_caller.first&.start_with?(@@rails_path)
# begin
# block.call nil
# rescue Exception => e
# @@rails_logger.tagged("no-nil") { @@rails_logger.info "found a block that can't handle nil at #{block.source_location}, error: #{e.inspect}" }
# end
# end
# end
# def self.clone(klass, method_name)
# begin
# # ensure that the method is not recursively redefined
# klass.class_variable_get("@@old_#{method_name}".to_sym)
# rescue NameError
# klass.instance_method(method_name).clone
# end
# end
# # stuff -> @@old_stuff
# def to_old(x)
# # need to convert method-only symbols into symbols acceptible for class variables
# clean_x = x.to_s.gsub(/[^0-9a-zA-Z_]/) do |y|
# y.codepoints.map do |z|
# z.to_s
# end.join('_')
# end
# "@@old_#{clean_x}".to_sym
# end
# def initialize_instance(inst, method_name=nil, accepts_args=true)
# if method_name
# begin
# @obj = inst
# @method_name = method_name
# @orig_proc = inst.method(method_name).to_proc
# rescue NameError => e
# raise ArgumentError, "The provided method must be a valid method of the provided object, got: #{e}"
# end
# else
# (inst.methods - Object.methods).map do |method|
# NilPasser.new(obj, method)
# end
# end
# end
# def call(*args, &block)
# NilPasser.test caller, block
# @orig_proc.call(*args, &block)
# end
# def teardown
# @obj.send(:define_singleton_method, @method_name, @orig_proc)
# end
# def sanitize_options(options)
# clean_options = {}
# [:arguments_given, :block_given, :in, :has_defaults, :called_on].each do |symbol|
# clean_options[symbol] = options[symbol]
# end
# clean_options
# end
# # at the _where_ point, call predicate and only continue if it returns a truthy value
# def add_prerequisite_from_proc_or_equal(where, klass, predicate)
# end
# def singleton_method(*args, &block)
# def self.test_singleton_method
# end
# end
# def instance_method(*args, &block)
# def self.test_instance_method
# end
# end
# def class_method(*args, &block)
# def self.test_class_method
# end
# end
# def monitor_singleton_method(object, method_name=nil, accepts_args=true)
# end
# def monitor_instance_method(klass, method_name=nil, accepts_args=true)
# if method_name
# obj.class.class_variable_set(to_old method_name, self.clone(obj, method_name))
# if accepts_args
# # I don't know how to send this to klass without eval
# eval [ "class #{klass}",
# " def #{method_name}(*args, &block)",
# " #{self.class}.test_instance_method caller, block",
# " #{to_old method_name}.bind(self)&.call(*args, &block)",
# " end",
# "end"
# ].join("\n")
# else
# eval [ "class #{klass}",
# " def #{method_name}(&block)",
# " #{self.class}.test_instance_method caller, block",
# " #{to_old method_name}.bind(self)&.call(&block)",
# " end",
# "end"
# ].join("\n")
# end
# else
# klass.instance_methods.each{|method| self.monitor_instance_method method}
# end
# end
# def monitor_class_method(klass, method_name=nil, accepts_args=true)
# if method_name
# obj.class.class_variable_set(to_old(method_name, :class), self.clone(obj, method_name))
# if accepts_args
# # I don't know how to send this to klass without eval
# eval [ "class self.#{klass}",
# " def #{method_name}(*args, &block)",
# " #{self.class}.test_instance_method caller, block",
# " #{to_old method_name}.bind(self)&.call(*args, &block)",
# " end",
# "end"
# ].join("\n")
# else
# eval [ "class self.#{klass}",
# " def #{method_name}(&block)",
# " #{self.class}.test_instance_method caller, block",
# " #{to_old method_name}.bind(self)&.call(&block)",
# " end",
# "end"
# ].join("\n")
# end
# else
# klass.instance_methods.each{|method| self.monitor_instance_method method}
# end
# end
# def monitor(object, method_name=nil)
# if object.is_a?(Class)
# self.monitor_instance_method object, method_name
# self.monitor_class_method object, method_name
# else
# self.monitor_singleton_method object, method_name
# end
# end
# end
# # class NilPasser < MethodMonitor
# # @@rails_path ||= Rails.root.to_s
# # # instance_method block_given: { arity: 1 }, in: Rails.root, only: 0.5 do |method, args, block|
# # instance_method block_given: { arity: 1, in: Rails.root } do |method, args, block|
# # begin
# # block.call nil
# # rescue Exception => e
# # puts "found block at #{block.source_location}, error: #{e.inspect}"
# # end
# # end
# # end
# # Array.monitor
# # Array.monitor(:map)
# # NilPasser.monitor Array, :map
# # NilPasser.monitor Array
# # NilPasser.monitor Array.method
# class NilPasser
# attr_accessor :obj, :method_name, :orig_proc
# @@rails_path ||= Rails.root.to_s
# @@rails_logger ||= Rails.logger
# def self.test(a_caller, block)
# if (block&.arity == 1) && a_caller.first&.start_with?(@@rails_path)
# begin
# block.call nil
# rescue Exception => e
# @@rails_logger.tagged("no-nil") { @@rails_logger.info "found a block that can't handle nil at #{block.source_location}, error: #{e.inspect}" }
# end
# end
# end
# def self.clone(klass, method_name)
# begin
# # ensure that the method is not recursively redefined
# klass.class_variable_get("@@old_#{method_name}".to_sym)
# rescue NameError
# klass.instance_method(method_name).clone
# end
# end
# def self.teardown(nil_passers)
# nil_passers.each do |nil_passer|
# nil_passer.teardown
# end
# end
# def initialize(obj, method_name=nil, accepts_args=true)
# if obj.is_a? Class
# self.initialize_class obj, method_name, accepts_args
# else
# self.initialize_instance obj, method_name, accepts_args
# end
# end
# # stuff -> @@old_stuff
# def to_old(x)
# # need to convert method-only symbols into symbols acceptible for class variables
# clean_x = x.to_s.gsub(/[^0-9a-zA-Z_]/) do |y|
# y.codepoints.map do |z|
# z.to_s
# end.join('_')
# end
# "@@old_#{clean_x}".to_sym
# end
# def initialize_class(klass, method_name=nil, accepts_args=true)
# if method_name
# obj.class.class_variable_set(to_old method_name, NilPasser.clone(obj, method_name))
# if accepts_args
# # I don't know how to send this to klass without eval
# eval [ "class #{klass}",
# " def #{method_name}(*args, &block)",
# " NilPasser.test caller, block",
# " #{to_old method_name}.bind(self)&.call(*args, &block)",
# " end",
# "end"
# ].join("\n")
# else
# eval [ "class #{klass}",
# " def #{method_name}(&block)",
# " NilPasser.test caller, block",
# " #{to_old method_name}.bind(self)&.call(&block)",
# " end",
# "end"
# ].join("\n")
# end
# else
# obj.methods.map do |method|
# NilPasser.new(obj, method)
# end
# end
# end
# def initialize_instance(inst, method_name=nil, accepts_args=true)
# if method_name
# begin
# @obj = inst
# @method_name = method_name
# @orig_proc = inst.method(method_name).to_proc
# rescue NameError => e
# raise ArgumentError, "The provided method must be a valid method of the provided object, got: #{e}"
# end
# else
# (inst.methods - Object.methods).map do |method|
# NilPasser.new(obj, method)
# end
# end
# end
# def setup
# @orig_proc = self.obj.method(@method_name).to_proc.clone
# @obj.send(:define_singleton_method, @method_name, self.method(:call).to_proc)
# self
# end
# def call(*args, &block)
# NilPasser.test caller, block
# @orig_proc.call(*args, &block)
# end
# def teardown
# @obj.send(:define_singleton_method, @method_name, @orig_proc)
# end
# end