Module: CoreMIDI::Endpoint
Instance Attribute Summary collapse
-
#enabled ⇒ Object
(also: #enabled?)
readonly
has the endpoint been initialized?.
-
#entity ⇒ Object
readonly
has the endpoint been initialized?.
-
#id ⇒ Object
has the endpoint been initialized?.
-
#resource_id ⇒ Object
readonly
has the endpoint been initialized?.
-
#type ⇒ Object
readonly
has the endpoint been initialized?.
Class Method Summary collapse
-
.all ⇒ Array<Destination, Source>
All endpoints of both types.
-
.all_by_type ⇒ Hash
A Hash of :source and :destination endpoints.
-
.first(type) ⇒ Destination, Source
Select the first endpoint of the specified type.
-
.get_class(type) ⇒ Class
Get the class for the given endpoint type name.
-
.last(type) ⇒ Destination, Source
Select the last endpoint of the specified type.
Instance Method Summary collapse
- #initialize(resource_id, entity, options = {}, &block) ⇒ Object
-
#online? ⇒ Boolean
Is this endpoint online?.
Instance Attribute Details
#enabled ⇒ Object (readonly) Also known as: enabled?
has the endpoint been initialized?
7 8 9 |
# File 'lib/coremidi/endpoint.rb', line 7 def enabled @enabled end |
#entity ⇒ Object (readonly)
has the endpoint been initialized?
7 8 9 |
# File 'lib/coremidi/endpoint.rb', line 7 def entity @entity end |
#id ⇒ Object
has the endpoint been initialized?
7 8 9 |
# File 'lib/coremidi/endpoint.rb', line 7 def id @id end |
#resource_id ⇒ Object (readonly)
has the endpoint been initialized?
7 8 9 |
# File 'lib/coremidi/endpoint.rb', line 7 def resource_id @resource_id end |
#type ⇒ Object (readonly)
has the endpoint been initialized?
7 8 9 |
# File 'lib/coremidi/endpoint.rb', line 7 def type @type end |
Class Method Details
.all ⇒ Array<Destination, Source>
All endpoints of both types
60 61 62 |
# File 'lib/coremidi/endpoint.rb', line 60 def self.all Device.all.map(&:endpoints).flatten end |
.all_by_type ⇒ Hash
A Hash of :source and :destination endpoints
51 52 53 54 55 56 |
# File 'lib/coremidi/endpoint.rb', line 51 def self.all_by_type { :source => Device.all.map { |d| d.endpoints[:source] }.flatten, :destination => Device.all.map { |d| d.endpoints[:destination] }.flatten } end |
.first(type) ⇒ Destination, Source
Select the first endpoint of the specified type
39 40 41 |
# File 'lib/coremidi/endpoint.rb', line 39 def self.first(type) all_by_type[type].first end |
.get_class(type) ⇒ Class
Get the class for the given endpoint type name
67 68 69 70 71 72 |
# File 'lib/coremidi/endpoint.rb', line 67 def self.get_class(type) case type when :source then Source when :destination then Destination end end |
.last(type) ⇒ Destination, Source
Select the last endpoint of the specified type
45 46 47 |
# File 'lib/coremidi/endpoint.rb', line 45 def self.last(type) all_by_type[type].last end |
Instance Method Details
#initialize(resource_id, entity, options = {}, &block) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/coremidi/endpoint.rb', line 17 def initialize(resource_id, entity, = {}, &block) @entity = entity @resource_id = resource_id @type = self.class.name.split('::').last.downcase.to_sym @enabled = false end |
#online? ⇒ Boolean
Is this endpoint online?
26 27 28 |
# File 'lib/coremidi/endpoint.rb', line 26 def online? @entity.online? && connect? end |