Class: Kernel

Inherits:
Object
  • Object
show all
Defined in:
motion-prime/core_ext/kernel.rb

Instance Method Summary collapse

Instance Method Details

#allocate_strong_references(key = nil) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'motion-prime/core_ext/kernel.rb', line 18

def allocate_strong_references(key = nil)
  unless self.respond_to?(:strong_references)
    Prime.logger.debug "User must define `strong_references` in `#{self.class.name}`"
    return false
  end

  refs = Array.wrap(self.strong_references).compact
  unless refs.present?
    Prime.logger.debug "`strong_references` are empty for `#{self.class.name}`"
    return false
  end

  @_strong_references ||= {}
  key ||= [@_strong_references.count, Time.now.to_i].join('_')
  @_strong_references[key] = refs.map(&:strong_ref)
  key
end

#allocated_references_released?Boolean

Returns:

  • (Boolean)


46
47
48
49
50
51
52
# File 'motion-prime/core_ext/kernel.rb', line 46

def allocated_references_released?
  unless self.respond_to?(:strong_references)
    Prime.logger.debug "User must define `strong_references` in `#{self.class.name}`"
    return false
  end
  @_strong_references.all? { |key, ref| @_strong_references.count; ref.retainCount == @_strong_references.count }
end

#class_name_without_kvoObject



6
7
8
# File 'motion-prime/core_ext/kernel.rb', line 6

def class_name_without_kvo
  self.class.name.gsub(/^NSKVONotifying_/, '')
end

#clear_instance_variables(options = {}) ⇒ Object



54
55
56
57
58
59
60
61
62
# File 'motion-prime/core_ext/kernel.rb', line 54

def clear_instance_variables(options = {})
  ivars = self.instance_variables
  excluded_ivars = Array.wrap(options[:except]).map(&:to_s)
  clear_block = proc { |ivar|
    next if excluded_ivars.include?(ivar[1..-1])
    self.instance_variable_set(ivar, nil)
  }.weak!
  ivars.each(&clear_block)
end

#pp(*attrs) ⇒ Object



2
3
4
# File 'motion-prime/core_ext/kernel.rb', line 2

def pp(*attrs)
  NSLog([*attrs].map(&:inspect).join(' '))
end

#release_strong_references(key = nil) ⇒ Object



36
37
38
39
40
41
42
43
44
# File 'motion-prime/core_ext/kernel.rb', line 36

def release_strong_references(key = nil)
  unless self.respond_to?(:strong_references)
    Prime.logger.debug "User must define `strong_references` in `#{self.class.name}`"
    return false
  end
  key ||= @_strong_references.keys.last
  @_strong_references.delete(key)
  key
end

#strong_refObject



14
15
16
# File 'motion-prime/core_ext/kernel.rb', line 14

def strong_ref
  self
end

#weak_refObject



10
11
12
# File 'motion-prime/core_ext/kernel.rb', line 10

def weak_ref
  WeakRef.new(self)
end