|
|
Log In | Not a Member? |
Contact ADC |
|
ADC Home > Reference Library > Reference > Audio > Core Audio > Core MIDI Framework Reference
|
MIDIServices.h |
| Includes: | <CoreServices/CoreServices.h> <CoreFoundation/CoreFoundation.h> <stddef.h> |
This is the header file for Mac OS X's MIDI system services.
- MIDIDestinationCreate
- Creates a virtual destination in a client.
- MIDIEndpointDispose
- Disposes a virtual source or destination your client created.
- MIDIEndpointGetEntity
- Returns an endpoint's entity.
- MIDIGetDestination
- Returns one of the destinations in the system.
- MIDIGetNumberOfDestinations
- Returns the number of destinations in the system.
- MIDIGetNumberOfSources
- Returns the number of sources in the system.
- MIDIGetSource
- Returns one of the sources in the system.
- MIDISourceCreate
- Creates a virtual source in a client.
Lists
- MIDIPacketListAdd
- Adds a MIDI event to a MIDIPacketList.
- MIDIPacketListInit
- Prepares a MIDIPacketList to be built up dynamically.
- MIDIPacketNext
- Advances a MIDIPacket pointer to the MIDIPacket which immediately follows it in memory if it is part of a MIDIPacketList.
- MIDIInputPortCreate
- Creates an input port through which the client may receive incoming MIDI messages from any MIDI source.
- MIDIOutputPortCreate
- Creates an output port through which the client may send outgoing MIDI messages to any MIDI destination.
- MIDIPortConnectSource
- Establishes a connection from a source to a client's input port.
- MIDIPortDisconnectSource
- Closes a previously-established source-to-input port connection.
- MIDIPortDispose
- Disposes a MIDIPort object.
and Properties
- MIDIObjectFindByUniqueID
- Locates a device, external device, entity, or endpoint by its uniqueID.
- MIDIObjectGetDataProperty
- Gets an object's data-type property.
- MIDIObjectGetDictionaryProperty
- Gets an object's dictionary-type property.
- MIDIObjectGetIntegerProperty
- Gets an object's integer-type property.
- MIDIObjectGetProperties
- Gets all of an object's properties.
- MIDIObjectGetStringProperty
- Gets an object's string-type property.
- MIDIObjectRemoveProperty
- Removes an object's property.
- MIDIObjectSetDataProperty
- Sets an object's data-type property.
- MIDIObjectSetDictionaryProperty
- Sets an object's dictionary-type property.
- MIDIObjectSetIntegerProperty
- Sets an object's integer-type property.
- MIDIObjectSetStringProperty
- Sets an object's string-type property.
- MIDIEntityGetDestination
- Returns one of a given entity's destinations.
- MIDIEntityGetDevice
- Returns an entity's device.
- MIDIEntityGetNumberOfDestinations
- Returns the number of destinations in a given entity.
- MIDIEntityGetNumberOfSources
- Returns the number of sources in a given entity.
- MIDIEntityGetSource
- Returns one of a given entity's sources.
- MIDIDeviceGetEntity
- Returns one of a given device's entities.
- MIDIDeviceGetNumberOfEntities
- Returns the number of entities in a given device.
- MIDIGetDevice
- Returns one of the devices in the system.
- MIDIGetNumberOfDevices
- Returns the number of devices in the system.
- MIDIFlushOutput
- Unschedules previously-sent packets.
- MIDIReceived
- Distributes incoming MIDI from a source to the client input ports which are connected to that source.
- MIDIRestart
- Stops and restarts MIDI I/O.
- MIDISend
- Sends MIDI to a destination.
- MIDISendSysex
- Sends a single system-exclusive event, asynchronously.
Devices
- MIDIGetExternalDevice
- Returns one of the external devices in the system.
- MIDIGetNumberOfExternalDevices
- Returns the number of external MIDI devices in the system.
- MIDIClientCreate
- Creates a MIDIClient object.
- MIDIClientDispose
- Disposes a MIDIClient object.
MIDIClientCreate |
Creates a MIDIClient object.
extern OSStatus MIDIClientCreate( CFStringRef name, MIDINotifyProc notifyProc, void *notifyRefCon, MIDIClientRef *outClient );
namenotifyProcnotifyRefConoutClientAn OSStatus result code.
Note that notifyProc will always be called on the run loop which was current when
MIDIClientCreate was first called.
MIDIClientDispose |
Disposes a MIDIClient object.
extern OSStatus MIDIClientDispose( MIDIClientRef client );
clientAn OSStatus result code.
It is not essential to call this function; the CoreMIDI framework will automatically dispose all MIDIClients when an application terminates.
MIDIDestinationCreate |
Creates a virtual destination in a client.
extern OSStatus MIDIDestinationCreate( MIDIClientRef client, CFStringRef name, MIDIReadProc readProc, void *refCon, MIDIEndpointRef *outDest );
clientnamereadProcrefConoutDestAn OSStatus result code.
The specified readProc gets called when clients send MIDI to your virtual destination.
Drivers need not call this; when they create devices and entities, sources and
destinations are created at that time.
After creating a virtual destination, it's a good idea to assign it the same unique ID
it had the last time your application created it. (Although you should be prepared for
this to fail in the unlikely event of a collision.) This will permit other clients
to retain persistent references to your virtual destination more easily.
See the discussion of kMIDIPropertyAdvanceScheduleTimeMuSec for notes about the
relationship between when a sender sends MIDI to the destination and when it is
received.
MIDIDeviceGetEntity |
Returns one of a given device's entities.
extern MIDIEntityRef MIDIDeviceGetEntity( MIDIDeviceRef device, ItemCount entityIndex0 );
deviceentityIndex0A reference to an entity, or NULL if an error occurred.
MIDIDeviceGetNumberOfEntities |
Returns the number of entities in a given device.
extern ItemCount MIDIDeviceGetNumberOfEntities( MIDIDeviceRef device );
deviceThe number of entities the device contains, or 0 if an error occurred.
MIDIEndpointDispose |
Disposes a virtual source or destination your client created.
extern OSStatus MIDIEndpointDispose( MIDIEndpointRef endpt );
endptAn OSStatus result code.
MIDIEndpointGetEntity |
Returns an endpoint's entity.
extern OSStatus MIDIEndpointGetEntity( MIDIEndpointRef inEndpoint, MIDIEntityRef *outEntity);
inEndpointoutEntityVirtual sources and destinations don't have entities.
MIDIEntityGetDestination |
Returns one of a given entity's destinations.
extern MIDIEndpointRef MIDIEntityGetDestination( MIDIEntityRef entity, ItemCount destIndex0 );
entitydestIndex0A reference to a destination, or NULL if an error occurred.
MIDIEntityGetDevice |
Returns an entity's device.
extern OSStatus MIDIEntityGetDevice( MIDIEntityRef inEntity, MIDIDeviceRef *outDevice);
inEntityoutDeviceMIDIEntityGetNumberOfDestinations |
Returns the number of destinations in a given entity.
extern ItemCount MIDIEntityGetNumberOfDestinations( MIDIEntityRef entity );
entityThe number of destinations the entity contains, or 0 if an error occurred.
MIDIEntityGetNumberOfSources |
Returns the number of sources in a given entity.
extern ItemCount MIDIEntityGetNumberOfSources( MIDIEntityRef entity );
entityThe number of sources the entity contains, or 0 if an error occurred.
MIDIEntityGetSource |
Returns one of a given entity's sources.
extern MIDIEndpointRef MIDIEntityGetSource( MIDIEntityRef entity, ItemCount sourceIndex0 );
entitysourceIndex0A reference to a source, or NULL if an error occurred.
MIDIFlushOutput |
Unschedules previously-sent packets.
extern OSStatus MIDIFlushOutput( MIDIEndpointRef dest );
destClients may use MIDIFlushOutput to cancel the sending of packets that were previously scheduled for future delivery.
MIDIGetDestination |
Returns one of the destinations in the system.
extern MIDIEndpointRef MIDIGetDestination( ItemCount destIndex0 );
destIndex0A reference to a destination, or NULL if an error occurred.
MIDIGetDevice |
Returns one of the devices in the system.
extern MIDIDeviceRef MIDIGetDevice( ItemCount deviceIndex0 );
deviceIndex0A reference to a device, or NULL if an error occurred.
Use this to enumerate the devices in the system.
To enumerate the entities in the system, you can walk through the devices, then walk
through the devices' entities.
Note: If a client iterates through the devices and entities in the system, it will not
ever visit any virtual sources and destinations created by other clients. Also, a
device iteration will return devices which are "offline" (were present in the past but
are not currently present), while iterations through the system's sources and
destinations will not include the endpoints of offline devices.
Thus clients should usually use MIDIGetNumberOfSources, MIDIGetSource,
MIDIGetNumberOfDestinations and MIDIGetDestination, rather iterating through devices and
entities to locate endpoints.
MIDIGetExternalDevice |
Returns one of the external devices in the system.
extern MIDIDeviceRef MIDIGetExternalDevice( ItemCount deviceIndex0 );
deviceIndex0A reference to a device, or NULL if an error occurred.
Use this to enumerate the external devices in the system.
MIDIGetNumberOfDestinations |
Returns the number of destinations in the system.
extern ItemCount MIDIGetNumberOfDestinations();
The number of destinations in the system, or 0 if an error occurred.
MIDIGetNumberOfDevices |
Returns the number of devices in the system.
extern ItemCount MIDIGetNumberOfDevices();
The number of devices in the system, or 0 if an error occurred.
MIDIGetNumberOfExternalDevices |
Returns the number of external MIDI devices in the system.
extern ItemCount MIDIGetNumberOfExternalDevices();
The number of external devices in the system, or 0 if an error
occurred.
External MIDI devices are MIDI devices connected to driver endpoints via a standard MIDI cable. Their presence is completely optional, only when a UI (such as Audio MIDI Setup) adds them.
MIDIGetNumberOfSources |
Returns the number of sources in the system.
extern ItemCount MIDIGetNumberOfSources();
The number of sources in the system, or 0 if an error occurred.
MIDIGetSource |
Returns one of the sources in the system.
extern MIDIEndpointRef MIDIGetSource( ItemCount sourceIndex0 );
sourceIndex0A reference to a source, or NULL if an error occurred.
MIDIInputPortCreate |
Creates an input port through which the client may receive incoming MIDI messages from any MIDI source.
extern OSStatus MIDIInputPortCreate( MIDIClientRef client, CFStringRef portName, MIDIReadProc readProc, void *refCon, MIDIPortRef *outPort );
clientportNamereadProcrefConoutPortAn OSStatus result code.
After creating a port, use MIDIPortConnectSource to establish an input connection from
any number of sources to your port.
readProc will be called on a separate high-priority thread owned by CoreMIDI.
MIDIObjectFindByUniqueID |
Locates a device, external device, entity, or endpoint by its uniqueID.
extern OSStatus MIDIObjectFindByUniqueID( MIDIUniqueID inUniqueID, MIDIObjectRef *outObject, MIDIObjectType *outObjectType) ;
inUniqueIDoutObjectoutObjectTypeAn OSStatus error code, including kMIDIObjectNotFound if there
is no object with the specified uniqueID.
MIDIObjectGetDataProperty |
Gets an object's data-type property.
extern OSStatus MIDIObjectGetDataProperty( MIDIObjectRef obj, CFStringRef propertyID, CFDataRef *outData );
objpropertyIDoutDataAn OSStatus result code.
(See the MIDIObjectRef documentation for information
about properties.)
MIDIObjectGetDictionaryProperty |
Gets an object's dictionary-type property.
extern OSStatus MIDIObjectGetDictionaryProperty( MIDIObjectRef obj, CFStringRef propertyID, CFDictionaryRef *outDict ) ;
objpropertyIDoutDictAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIObjectGetIntegerProperty |
Gets an object's integer-type property.
extern OSStatus MIDIObjectGetIntegerProperty( MIDIObjectRef obj, CFStringRef propertyID, SInt32 *outValue );
objpropertyIDoutValueAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIObjectGetProperties |
Gets all of an object's properties.
extern OSStatus MIDIObjectGetProperties( MIDIObjectRef obj, CFPropertyListRef *outProperties, Boolean deep );
objoutPropertiesdeepAn OSStatus result code.
Returns a CFPropertyList of all of an object's properties. The property list may be a
dictionary or an array. Dictionaries map property names (CFString) to values, which may
be CFNumber, CFString, or CFData. Arrays are arrays of such values.
Properties which an object inherits from its owning object (if any) are not included.
MIDIObjectGetStringProperty |
Gets an object's string-type property.
extern OSStatus MIDIObjectGetStringProperty( MIDIObjectRef obj, CFStringRef propertyID, CFStringRef *str );
objpropertyIDstrAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIObjectRemoveProperty |
Removes an object's property.
extern OSStatus MIDIObjectRemoveProperty( MIDIObjectRef obj, CFStringRef propertyID ) ;
objpropertyIDAn OSStatus result code.
MIDIObjectSetDataProperty |
Sets an object's data-type property.
extern OSStatus MIDIObjectSetDataProperty( MIDIObjectRef obj, CFStringRef propertyID, CFDataRef data );
objpropertyIDdataAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIObjectSetDictionaryProperty |
Sets an object's dictionary-type property.
extern OSStatus MIDIObjectSetDictionaryProperty( MIDIObjectRef obj, CFStringRef propertyID, CFDictionaryRef data );
objpropertyIDdictAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIObjectSetIntegerProperty |
Sets an object's integer-type property.
extern OSStatus MIDIObjectSetIntegerProperty( MIDIObjectRef obj, CFStringRef propertyID, SInt32 value );
objpropertyIDvalueAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIObjectSetStringProperty |
Sets an object's string-type property.
extern OSStatus MIDIObjectSetStringProperty( MIDIObjectRef obj, CFStringRef propertyID, CFStringRef str );
objpropertyIDstrAn OSStatus result code.
(See the MIDIObjectRef documentation for information about properties.)
MIDIOutputPortCreate |
Creates an output port through which the client may send outgoing MIDI messages to any MIDI destination.
extern OSStatus MIDIOutputPortCreate( MIDIClientRef client, CFStringRef portName, MIDIPortRef *outPort );
clientportNameoutPortAn OSStatus result code.
Output ports provide a mechanism for MIDI merging. CoreMIDI assumes that each output
port will be responsible for sending only a single MIDI stream to each destination,
although a single port may address all of the destinations in the system.
Multiple output ports are only necessary when an application is capable of directing
multiple simultaneous MIDI streams to the same destination.
MIDIPacketListAdd |
Adds a MIDI event to a MIDIPacketList.
extern MIDIPacket * MIDIPacketListAdd( MIDIPacketList *pktlist, ByteCount listSize, MIDIPacket *curPacket, MIDITimeStamp time, ByteCount nData, const Byte *data);
pktlistlistSizecurPackettimenDatadataReturns null if there was not room in the packet for the
event; otherwise returns a packet pointer which should be
passed as curPacket in a subsequent call to this function.
The maximum size of a packet list is 65536 bytes. Large sysex messages must be sent in smaller packet lists.
MIDIPacketListInit |
Prepares a MIDIPacketList to be built up dynamically.
extern MIDIPacket * MIDIPacketListInit( MIDIPacketList *pktlist );
pktlistA pointer to the first MIDIPacket in the packet list.
MIDIPacketNext |
Advances a MIDIPacket pointer to the MIDIPacket which immediately follows it in memory if it is part of a MIDIPacketList.
extern MIDIPacket * MIDIPacketNext( MIDIPacket *pkt );
pktThe subsequent packet in the MIDIPacketList.
This is implemented as a macro for efficiency and to avoid const problems.
MIDIPortConnectSource |
Establishes a connection from a source to a client's input port.
extern OSStatus MIDIPortConnectSource( MIDIPortRef port, MIDIEndpointRef source, void *connRefCon );
portsourceconnRefConAn OSStatus result code.
MIDIPortDisconnectSource |
Closes a previously-established source-to-input port connection.
extern OSStatus MIDIPortDisconnectSource( MIDIPortRef port, MIDIEndpointRef source );
portsourceAn OSStatus result code.
MIDIPortDispose |
Disposes a MIDIPort object.
extern OSStatus MIDIPortDispose( MIDIPortRef port );
portAn OSStatus result code.
It is not usually necessary to call this function; when an application's MIDIClient's are automatically disposed at termination, or explicitly, via MIDIClientDispose, the client's ports are automatically disposed at that time.
MIDIReceived |
Distributes incoming MIDI from a source to the client input ports which are connected to that source.
extern OSStatus MIDIReceived( MIDIEndpointRef src, const MIDIPacketList *pktlist );
srcpktlistAn OSStatus result code.
Drivers should call this function when receiving MIDI from a source.
Clients which have created virtual sources, using MIDISourceCreate, should call this
function when the source is generating MIDI.
Unlike MIDISend(), a timestamp of 0 is not equivalent to "now"; the driver or virtual
source is responsible for putting proper timestamps in the packets.
MIDIRestart |
Stops and restarts MIDI I/O.
extern OSStatus MIDIRestart();
An OSStatus result code.
This is useful for forcing CoreMIDI to ask its drivers to rescan for hardware.
MIDISend |
Sends MIDI to a destination.
extern OSStatus MIDISend( MIDIPortRef port, MIDIEndpointRef dest, const MIDIPacketList *pktlist );
portdestpktlistAn OSStatus result code.
Events with future timestamps are scheduled for future delivery. CoreMIDI performs any needed MIDI merging.
MIDISendSysex |
Sends a single system-exclusive event, asynchronously.
extern OSStatus MIDISendSysex( MIDISysexSendRequest *request );
requestAn OSStatus result code.
request->data must point to a single MIDI system-exclusive message, or portion thereof.
MIDISourceCreate |
Creates a virtual source in a client.
extern OSStatus MIDISourceCreate( MIDIClientRef client, CFStringRef name, MIDIEndpointRef *outSrc );
clientnameoutSrcAn OSStatus result code.
Drivers need not call this; when they create devices and entities, sources and
destinations are created at that time.
After creating a virtual source, use MIDIReceived to transmit MIDI messages from your
virtual source to any clients connected to the virtual source.
After creating a virtual source, it's a good idea to assign it the same unique ID it had
the last time your application created it. (Although you should be prepared for this to
fail in the unlikely event of a collision.) This will permit other clients to retain
persistent references to your virtual source more easily.
kMIDIPropertyAdvanceScheduleTimeMuSec |
extern const CFStringRef kMIDIPropertyAdvanceScheduleTimeMuSec;
device/entity/endpoint property, integer
Set by the owning driver; should not be touched by other clients. If it is non-zero,
then it is a recommendation of how many microseconds in advance clients should schedule
output. Clients should treat this value as a minimum. For devices with a non-zero
advance schedule time, drivers will receive outgoing messages to the device at the time
they are sent by the client, via MIDISend, and the driver is responsible for scheduling
events to be played at the right times according to their timestamps.
As of CoreMIDI 1.3, this property may also be set on virtual destinations (but only the
creator of the destination should do so). When a client sends to a virtual destination
with an advance schedule time of 0, the virtual destination receives its messages at
their scheduled delivery time. If a virtual destination has a non-zero advance schedule
time, it receives timestamped messages as soon as they are sent, and must do its own
internal scheduling of received events.
kMIDIPropertyCanRoute |
extern const CFStringRef kMIDIPropertyCanRoute; // e.g. is patch bay
device/entity property, integer (0/1). Indicates whether the device or entity can route
MIDI messages to or from other external MIDI devices (as with MIDI patch bays). This
should NOT be set on devices which are controlled by drivers.
New for CoreMIDI 1.3.
kMIDIPropertyConnectionUniqueID |
extern const CFStringRef kMIDIPropertyConnectionUniqueID;
device/entity/endpoint property, integer or CFDataRef
UniqueID of an external device/entity/endpoint attached to this one. As of Mac OS X
10.3, Audio MIDI Setup maintains endpoint-to-external endpoint connections (in 10.2, it
connected devices to devices).
The property is non-existant or 0 if there is no connection.
New for CoreMIDI 1.1 (Mac OS X 10.1)
Beginning with CoreMIDI 1.3, this property may also be a CFDataRef containing an array of
big-endian SInt32's, to allow specifying that a driver object connects to multiple
external objects (via MIDI thru-ing or splitting).
This property may also exist for external devices/entities/endpoints, in which case it
signifies a MIDI Thru connection to another external device/entity/endpoint (again,
it is strongly recommended that it be an endpoint).
kMIDIPropertyDeviceID |
extern const CFStringRef kMIDIPropertyDeviceID;
device/entity property, integer
The entity's system-exclusive ID, in user-visible form
Drivers may set this property on their devices or entities.
Setup editors may allow the user to set this property on external devices.
kMIDIPropertyDisplayName |
extern const CFStringRef kMIDIPropertyDisplayName;
device/entity/endpoint property, string.
Provides the Apple-recommended user-visible name for an endpoint, by combining the
device and endpoint names.
For objects other than endpoints, the display name is the same as the name.
New for CoreMIDI 1.5.
kMIDIPropertyDriverDeviceEditorApp |
extern const CFStringRef kMIDIPropertyDriverDeviceEditorApp;
device property, string, contains the full path to an application which knows how to
configure this driver-owned devices. Drivers may set this property on their owned
devices. Applications must not write to it.
New for CoreMIDI 1.4.
kMIDIPropertyDriverOwner |
extern const CFStringRef kMIDIPropertyDriverOwner;
device/entity/endpoint property, string
Name of the driver that owns a device. Set by the owning driver, on the device; should
not be touched by other clients. Property is inherited from the device by its entities
and endpoints.
New for CoreMIDI 1.1 (Mac OS X 10.1)
kMIDIPropertyDriverVersion |
extern const CFStringRef kMIDIPropertyDriverVersion;
device/entity/endpoint property, integer, returns the driver version API of the owning
driver (only for driver- owned devices). Drivers need not set this property;
applications should not write to it.
New for CoreMIDI 1.3.
kMIDIPropertyFactoryPatchNameFile |
extern const CFStringRef kMIDIPropertyFactoryPatchNameFile;
device/entity/endpoint property, CFData containing AliasHandle.
An alias to the device's current factory patch name file.
Added in CoreMIDI 1.1 (Mac OS X 10.1). DEPRECATED as of CoreMIDI 1.3. Use
kMIDIPropertyNameConfiguration instead.
kMIDIPropertyImage |
extern const CFStringRef kMIDIPropertyImage;
device property, CFStringRef which is a full POSIX path to a device or external device's
icon, stored in any standard graphic file format such as JPEG, GIF, PNG and TIFF are all
acceptable. (See CFURL for functions to convert between POSIX paths and other ways of
specifying files.) The image's maximum size should be 128x128.
Drivers should set the icon on the devices they add.
A studio setup editor should allow the user to choose icons for external devices.
New for CoreMIDI 1.3.
kMIDIPropertyIsBroadcast |
extern const CFStringRef kMIDIPropertyIsBroadcast;
entity/endpoint property, integer
1 if the endpoint broadcasts messages to all of the other endpoints in the device, 0 if
not. Set by the owning driver; should not be touched by other clients.
New for CoreMIDI 1.3.
kMIDIPropertyIsDrumMachine |
extern const CFStringRef kMIDIPropertyIsDrumMachine;
device/entity property, integer (0/1). Indicates whether the device or entity's sound
presets tend to be collections of non-transposable samples (e.g. drum kits).
New for CoreMIDI 1.3.
kMIDIPropertyIsEffectUnit |
extern const CFStringRef kMIDIPropertyIsEffectUnit;
device/entity property, integer (0/1). Indicates whether the device or entity is
primarily a MIDI-controlled audio effect unit (i.e. does not generate sound on its own).
New for CoreMIDI 1.3.
kMIDIPropertyIsEmbeddedEntity |
extern const CFStringRef kMIDIPropertyIsEmbeddedEntity;
entity/endpoint property, integer
0 if there are external MIDI connectors, 1 if not.
New for CoreMIDI 1.1 (Mac OS X 10.1)