Class: CoreMIDI::Device

Inherits:
Object
  • Object
show all
Defined in:
lib/coremidi/device.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, device_pointer, options = {}) ⇒ Device

Returns a new instance of Device.

Parameters:

  • id (Fixnum)

    The ID for the device

  • device_pointer (Object)

    The underlying device pointer

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :include_offline (Boolean)

    Whether to include offline entities (default: false)



13
14
15
16
17
18
# File 'lib/coremidi/device.rb', line 13

def initialize(id, device_pointer, options = {})
  @id = id
  @resource = device_pointer
  @entities = []
  populate(options)
end

Instance Attribute Details

#entitiesObject (readonly)

Returns the value of attribute entities.



5
6
7
# File 'lib/coremidi/device.rb', line 5

def entities
  @entities
end

#idObject (readonly)

Returns the value of attribute id.



5
6
7
# File 'lib/coremidi/device.rb', line 5

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/coremidi/device.rb', line 5

def name
  @name
end

Class Method Details

.all(options = {}) ⇒ Array<Device>

All cached devices

Parameters:

  • options (Hash) (defaults to: {})

    The options to select devices with

Options Hash (options):

  • :cache (Boolean)

    If false, the device list will never be cached. This would be useful if one needs to alter the device list (e.g. plug in a USB MIDI interface) while their program is running.

  • :include_offline (Boolean)

    If true, devices marked offline by coremidi will be included in the list

Returns:

  • (Array<Device>)

    All cached devices



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/coremidi/device.rb', line 45

def self.all(options = {})
  use_cache = options[:cache] || true
  include_offline = options[:include_offline] || false
  if !populated? || !use_cache
    @devices = []
    counter = 0
    while !(device_pointer = Map.MIDIGetDevice(counter)).null?
      device = new(counter, device_pointer, :include_offline => include_offline)
      @devices << device
      counter += 1
    end
    populate_endpoint_ids
  end
  @devices
end

.populated?Boolean

Has the device list been populated?

Returns:

  • (Boolean)


69
70
71
# File 'lib/coremidi/device.rb', line 69

def self.populated?
  !@devices.nil? && !@devices.empty? 
end

.refreshArray<Device>

Refresh the Device cache. This is needed if, for example a USB MIDI device is plugged in while the program is running

Returns:

  • (Array<Device>)

    The Device cache



63
64
65
66
# File 'lib/coremidi/device.rb', line 63

def self.refresh
  @devices.clear
  @devices
end

Instance Method Details

#endpointsArray<Endpoint>

Endpoints for this device

Returns:



22
23
24
25
26
27
28
29
# File 'lib/coremidi/device.rb', line 22

def endpoints
  endpoints = { :source => [], :destination => [] }
  endpoints.keys.each do |key|
    endpoint_group = entities.map { |entity| entity.endpoints[key] }.flatten
    endpoints[key] += endpoint_group
  end
  endpoints
end

#populate_endpoint_ids(last_id) ⇒ Integer

Assign all of this Device’s endpoints an consecutive local id

Parameters:

  • last_id (Integer)

    The highest already used endpoint ID

Returns:

  • (Integer)

    The highest used endpoint ID after populating this device’s endpoints



34
35
36
37
38
# File 'lib/coremidi/device.rb', line 34

def populate_endpoint_ids(last_id)
  id = 0
  entities.each { |entity| id += entity.populate_endpoint_ids(id + last_id) }
  id
end