mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-10-29 05:40:25 -04:00 
			
		
		
		
	 6767f623ca
			
		
	
	
		6767f623ca
		
	
	
	
	
		
			
			The API functions to fill the data on snd_ump_endpoint_info and snd_ump_block_info were missing. Let's add them. They can be used to construct a virtual UMP endpoint and block. Signed-off-by: Takashi Iwai <tiwai@suse.de>
		
			
				
	
	
		
			1051 lines
		
	
	
	
		
			27 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			1051 lines
		
	
	
	
		
			27 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: LGPL-2.1+ */
 | |
| /**
 | |
|  * \file rawmidi/ump.c
 | |
|  * \brief Universal MIDI Protocol (UMP) Interface
 | |
|  */
 | |
| 
 | |
| #include "rawmidi_local.h"
 | |
| #include "ump_local.h"
 | |
| 
 | |
| static int get_rawmidi_flags(snd_ump_t *ump)
 | |
| {
 | |
| 	snd_rawmidi_info_t info;
 | |
| 	int err;
 | |
| 
 | |
| 	err = snd_rawmidi_info(ump->rawmidi, &info);
 | |
| 	if (err < 0)
 | |
| 		return err;
 | |
| 	if (!(info.flags & SNDRV_RAWMIDI_INFO_UMP))
 | |
| 		return -EINVAL;
 | |
| 	ump->flags = info.flags;
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief Opens a new connection to the UMP interface.
 | |
|  * \param inputp Returned input handle (NULL if not wanted)
 | |
|  * \param outputp Returned output handle (NULL if not wanted)
 | |
|  * \param name ASCII identifier of the UMP handle
 | |
|  * \param mode Open mode
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  *
 | |
|  * Opens a new connection to the UMP interface specified with
 | |
|  * an ASCII identifier and mode.
 | |
|  */
 | |
| int snd_ump_open(snd_ump_t **inputp, snd_ump_t **outputp, const char *name,
 | |
| 		 int mode)
 | |
| {
 | |
| 	snd_ump_t *input = NULL, *output = NULL;
 | |
| 	int err;
 | |
| 
 | |
| 	if (inputp)
 | |
| 		*inputp = NULL;
 | |
| 	if (outputp)
 | |
| 		*outputp = NULL;
 | |
| 	if (!inputp && !outputp)
 | |
| 		return -EINVAL;
 | |
| 
 | |
| 	err = -ENOMEM;
 | |
| 	if (inputp) {
 | |
| 		input = calloc(1, sizeof(*input));
 | |
| 		if (!input)
 | |
| 			goto error;
 | |
| 		input->is_input = 1;
 | |
| 	}
 | |
| 	if (outputp) {
 | |
| 		output = calloc(1, sizeof(*output));
 | |
| 		if (!output)
 | |
| 			goto error;
 | |
| 	}
 | |
| 
 | |
| 	err = snd_rawmidi_open(input ? &input->rawmidi : NULL,
 | |
| 			       output ? &output->rawmidi : NULL,
 | |
| 			       name, mode | _SND_RAWMIDI_OPEN_UMP);
 | |
| 	if (err < 0)
 | |
| 		goto error;
 | |
| 
 | |
| 	if (input) {
 | |
| 		err = get_rawmidi_flags(input);
 | |
| 		if (err < 0)
 | |
| 			goto error;
 | |
| 	}
 | |
| 	if (output) {
 | |
| 		err = get_rawmidi_flags(output);
 | |
| 		if (err < 0)
 | |
| 			goto error;
 | |
| 	}
 | |
| 
 | |
| 	if (inputp)
 | |
| 		*inputp = input;
 | |
| 	if (outputp)
 | |
| 		*outputp = output;
 | |
| 
 | |
| 	return 0;
 | |
| 
 | |
|  error:
 | |
| 	if (input) {
 | |
| 		if (input->rawmidi)
 | |
| 			snd_rawmidi_close(input->rawmidi);
 | |
| 		free(input);
 | |
| 	}
 | |
| 	if (output) {
 | |
| 		if (output->rawmidi)
 | |
| 			snd_rawmidi_close(output->rawmidi);
 | |
| 		free(output);
 | |
| 	}
 | |
| 	return err;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief close UMP handle
 | |
|  * \param ump UMP handle
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  *
 | |
|  * Closes the specified UMP handle and frees all associated
 | |
|  * resources.
 | |
|  */
 | |
| int snd_ump_close(snd_ump_t *ump)
 | |
| {
 | |
| 	int err;
 | |
| 
 | |
| 	err = snd_rawmidi_close(ump->rawmidi);
 | |
| 	free(ump);
 | |
| 	return err;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get RawMidi instance associated with the UMP handle
 | |
|  * \param ump UMP handle
 | |
|  * \return the associated RawMidi handle
 | |
|  *
 | |
|  * Returns the associated RawMidi instance with the given UMP handle
 | |
|  */
 | |
| snd_rawmidi_t *snd_ump_rawmidi(snd_ump_t *ump)
 | |
| {
 | |
| 	return ump->rawmidi;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get identifier of UMP handle
 | |
|  * \param ump UMP handle
 | |
|  * \return ascii identifier of UMP handle
 | |
|  *
 | |
|  * Returns the ASCII identifier of given UMP handle. It's the same
 | |
|  * identifier specified in snd_ump_open().
 | |
|  */
 | |
| const char *snd_ump_name(snd_ump_t *ump)
 | |
| {
 | |
| 	return snd_rawmidi_name(ump->rawmidi);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get count of poll descriptors for UMP handle
 | |
|  * \param ump UMP handle
 | |
|  * \return count of poll descriptors
 | |
|  */
 | |
| int snd_ump_poll_descriptors_count(snd_ump_t *ump)
 | |
| {
 | |
| 	return snd_rawmidi_poll_descriptors_count(ump->rawmidi);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get poll descriptors
 | |
|  * \param ump UMP handle
 | |
|  * \param pfds array of poll descriptors
 | |
|  * \param space space in the poll descriptor array
 | |
|  * \return count of filled descriptors
 | |
|  */
 | |
| int snd_ump_poll_descriptors(snd_ump_t *ump, struct pollfd *pfds,
 | |
| 			     unsigned int space)
 | |
| {
 | |
| 	return snd_rawmidi_poll_descriptors(ump->rawmidi, pfds, space);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get returned events from poll descriptors
 | |
|  * \param ump UMP handle
 | |
|  * \param pfds array of poll descriptors
 | |
|  * \param nfds count of poll descriptors
 | |
|  * \param revents returned events
 | |
|  * \return zero if success, otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_poll_descriptors_revents(snd_ump_t *ump, struct pollfd *pfds,
 | |
| 				     unsigned int nfds, unsigned short *revents)
 | |
| {
 | |
| 	return snd_rawmidi_poll_descriptors_revents(ump->rawmidi, pfds, nfds,
 | |
| 						    revents);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set nonblock mode
 | |
|  * \param ump UMP handle
 | |
|  * \param nonblock 0 = block, 1 = nonblock mode
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  *
 | |
|  * The nonblock mode cannot be used when the stream is in
 | |
|  * #SND_RAWMIDI_APPEND state.
 | |
|  */
 | |
| int snd_ump_nonblock(snd_ump_t *ump, int nonblock)
 | |
| {
 | |
| 	return snd_rawmidi_nonblock(ump->rawmidi, nonblock);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get information about associated RawMidi handle
 | |
|  * \param ump UMP handle
 | |
|  * \param info pointer to a snd_rawmidi_info_t structure to be filled
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_rawmidi_info(snd_ump_t *ump, snd_rawmidi_info_t *info)
 | |
| {
 | |
| 	return snd_rawmidi_info(ump->rawmidi, info);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set parameters about associated RawMidi stream
 | |
|  * \param ump UMP handle
 | |
|  * \param params pointer to a snd_rawmidi_params_t structure to be filled
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_rawmidi_params(snd_ump_t *ump, snd_rawmidi_params_t *params)
 | |
| {
 | |
| 	return snd_rawmidi_params(ump->rawmidi, params);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get current parameters about associated RawMidi stream
 | |
|  * \param ump UMP handle
 | |
|  * \param params pointer to a snd_rawmidi_params_t structure to be filled
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_rawmidi_params_current(snd_ump_t *ump, snd_rawmidi_params_t *params)
 | |
| {
 | |
| 	return snd_rawmidi_params_current(ump->rawmidi, params);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get status of associated RawMidi stream
 | |
|  * \param ump UMP handle
 | |
|  * \param status pointer to a snd_rawmidi_status_t structure to be filled
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_rawmidi_status(snd_ump_t *ump, snd_rawmidi_status_t *status)
 | |
| {
 | |
| 	return snd_rawmidi_status(ump->rawmidi, status);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief drop all packets in the rawmidi I/O ring buffer immediately
 | |
|  * \param ump UMP handle
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_drop(snd_ump_t *ump)
 | |
| {
 | |
| 	return snd_rawmidi_drop(ump->rawmidi);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief drain all packets in the UMP I/O ring buffer
 | |
|  * \param ump UMP handle
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  *
 | |
|  * Waits until all MIDI packets are not drained (sent) to the
 | |
|  * hardware device.
 | |
|  */
 | |
| int snd_ump_drain(snd_ump_t *ump)
 | |
| {
 | |
| 	return snd_rawmidi_drain(ump->rawmidi);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief write UMP packets to UMP stream
 | |
|  * \param ump UMP handle
 | |
|  * \param buffer buffer containing UMP packets
 | |
|  * \param size output buffer size in bytes
 | |
|  */
 | |
| ssize_t snd_ump_write(snd_ump_t *ump, const void *buffer, size_t size)
 | |
| {
 | |
| 	if (ump->is_input)
 | |
| 		return -EINVAL;
 | |
| 	return snd_rawmidi_write(ump->rawmidi, buffer, size);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief read UMP packets from UMP stream
 | |
|  * \param ump UMP handle
 | |
|  * \param buffer buffer to store the input MIDI bytes
 | |
|  * \param size input buffer size in bytes
 | |
|  * \retval count of UMP packet in bytes otherwise a negative error code
 | |
|  */
 | |
| ssize_t snd_ump_read(snd_ump_t *ump, void *buffer, size_t size)
 | |
| {
 | |
| 	if (!ump->is_input)
 | |
| 		return -EINVAL;
 | |
| 	return snd_rawmidi_read(ump->rawmidi, buffer, size);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief read UMP packets from UMP stream with timestamp
 | |
|  * \param ump UMP handle
 | |
|  * \param[out] tstamp timestamp for the returned UMP packets
 | |
|  * \param buffer buffer to store the input UMP packets
 | |
|  * \param size input buffer size in bytes
 | |
|  * \retval count of UMP packet in bytes otherwise a negative error code
 | |
|  */
 | |
| ssize_t snd_ump_tread(snd_ump_t *ump, struct timespec *tstamp, void *buffer,
 | |
| 		      size_t size)
 | |
| {
 | |
| 	if (!ump->is_input)
 | |
| 		return -EINVAL;
 | |
| 	return snd_rawmidi_tread(ump->rawmidi, tstamp, buffer, size);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get size of the snd_ump_endpoint_info_t structure in bytes
 | |
|  * \return size of the snd_ump_endpoint_info_t structure in bytes
 | |
|  */
 | |
| size_t snd_ump_endpoint_info_sizeof(void)
 | |
| {
 | |
| 	return sizeof(snd_ump_endpoint_info_t);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief allocate the snd_ump_endpoint_info_t structure
 | |
|  * \param info returned pointer
 | |
|  * \return 0 on success otherwise a negative error code if fails
 | |
|  *
 | |
|  * Allocates a new snd_rawmidi_status_t structure using the standard
 | |
|  * malloc C library function.
 | |
|  */
 | |
| int snd_ump_endpoint_info_malloc(snd_ump_endpoint_info_t **info)
 | |
| {
 | |
| 	*info = calloc(1, sizeof(snd_ump_endpoint_info_t));
 | |
| 	if (!*info)
 | |
| 		return -ENOMEM;
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief frees the snd_ump_endpoint_info_t structure
 | |
|  * \param info pointer to the snd_ump_endpoint_info_t structure to free
 | |
|  *
 | |
|  * Frees the given snd_ump_endpoint_info_t structure using the standard
 | |
|  * free C library function.
 | |
|  */
 | |
| void snd_ump_endpoint_info_free(snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	free(info);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief clears the snd_ump_endpoint_info_t structure
 | |
|  * \param info pointer to the snd_ump_endpoint_info_t structure to clear
 | |
|  *
 | |
|  * Zero-clear the snd_ump_endpoint_info_t object.
 | |
|  */
 | |
| void snd_ump_endpoint_info_clear(snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	memset(info, 0, sizeof(*info));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief copy one snd_ump_endpoint_info_t structure to another
 | |
|  * \param dst destination snd_ump_endpoint_info_t structure
 | |
|  * \param src source snd_ump_endpoint_info_t structure
 | |
|  */
 | |
| void snd_ump_endpoint_info_copy(snd_ump_endpoint_info_t *dst,
 | |
| 				const snd_ump_endpoint_info_t *src)
 | |
| {
 | |
| 	*dst = *src;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get card number of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return the card number of the given UMP endpoint
 | |
|  */
 | |
| int snd_ump_endpoint_info_get_card(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->card;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get device number of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return the device number of the given UMP endpoint
 | |
|  */
 | |
| int snd_ump_endpoint_info_get_device(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->device;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP endpoint info flags
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP endpoint flag bits
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_flags(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->flags;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP endpoint protocol capability bits
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP endpoint protocol capability bits
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_protocol_caps(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->protocol_caps;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get the current UMP endpoint protocol
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP endpoint protocol bits
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_protocol(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->protocol;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get the number of UMP blocks belonging to the endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return number of UMP blocks
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_num_blocks(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->num_blocks;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP version number
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP version number
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_version(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->version;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP manufacturer ID
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP manufacturer ID
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_manufacturer_id(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->manufacturer_id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP family ID
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP family ID
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_family_id(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->family_id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP model ID
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP model ID
 | |
|  */
 | |
| unsigned int snd_ump_endpoint_info_get_model_id(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->model_id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP software revision
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP software revision
 | |
|  */
 | |
| const unsigned char *snd_ump_endpoint_info_get_sw_revision(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return info->sw_revision;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP endpoint name string
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP endpoint name string
 | |
|  */
 | |
| const char *snd_ump_endpoint_info_get_name(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return (const char *)info->name;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP endpoint product ID string
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \return UMP endpoint product ID string
 | |
|  */
 | |
| const char *snd_ump_endpoint_info_get_product_id(const snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return (const char *)info->product_id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set card number of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param card the card number of the given UMP endpoint
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_card(snd_ump_endpoint_info_t *info,
 | |
| 				    unsigned int card)
 | |
| {
 | |
| 	info->card = card;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set device number of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param device the device number of the given UMP endpoint
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_device(snd_ump_endpoint_info_t *info,
 | |
| 				      unsigned int device)
 | |
| {
 | |
| 	info->device = device;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set info flags of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param flags UMP endpoint flag bits
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_flags(snd_ump_endpoint_info_t *info,
 | |
| 				     unsigned int flags)
 | |
| {
 | |
| 	info->flags = flags;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set protocol capability bits of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param caps UMP endpoint protocol capability bits
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_protocol_caps(snd_ump_endpoint_info_t *info,
 | |
| 					     unsigned int caps)
 | |
| {
 | |
| 	info->protocol_caps = caps;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the current protocol of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param caps the UMP endpoint protocol bits
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_protocol(snd_ump_endpoint_info_t *info,
 | |
| 					unsigned int protocol)
 | |
| {
 | |
| 	info->protocol = protocol;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the number of UMP blocks of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param blocks the number of UMP blocks
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_num_blocks(snd_ump_endpoint_info_t *info,
 | |
| 					  unsigned int blocks)
 | |
| {
 | |
| 	info->num_blocks = blocks;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the UMP version number of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param version the UMP version number
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_version(snd_ump_endpoint_info_t *info,
 | |
| 				       unsigned int version)
 | |
| {
 | |
| 	info->version = version;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the UMP manufacturer ID of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param id UMP manufacturer ID
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_manufacturer_id(snd_ump_endpoint_info_t *info,
 | |
| 					       unsigned int id)
 | |
| {
 | |
| 	info->manufacturer_id = id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the UMP family ID of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param id UMP family ID
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_family_id(snd_ump_endpoint_info_t *info,
 | |
| 					 unsigned int id)
 | |
| {
 | |
| 	info->family_id = id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the UMP model ID of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param id UMP model ID
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_model_id(snd_ump_endpoint_info_t *info,
 | |
| 					unsigned int id)
 | |
| {
 | |
| 	info->model_id = id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the UMP software revision of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param id UMP software revision in 4 bytes array
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_sw_revision(snd_ump_endpoint_info_t *info,
 | |
| 					   const unsigned char *id)
 | |
| {
 | |
| 	memcpy(info->sw_revision, id, sizeof(info->sw_revision));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the name of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param name UMP endpoint name string
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_name(snd_ump_endpoint_info_t *info,
 | |
| 				    const char *name)
 | |
| {
 | |
| 	snd_strlcpy((char *)info->name, name, sizeof(info->name));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the product ID string of UMP endpoint
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure
 | |
|  * \param id UMP endpoint product ID string
 | |
|  */
 | |
| void snd_ump_endpoint_info_set_product_id(snd_ump_endpoint_info_t *info,
 | |
| 					  const char *id)
 | |
| {
 | |
| 	snd_strlcpy((char *)info->product_id, id, sizeof(info->product_id));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get endpoint information about UMP handle
 | |
|  * \param ump UMP handle
 | |
|  * \param info pointer to a snd_ump_endpoint_info_t structure to be filled
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  */
 | |
| int snd_ump_endpoint_info(snd_ump_t *ump, snd_ump_endpoint_info_t *info)
 | |
| {
 | |
| 	return _snd_rawmidi_ump_endpoint_info(ump->rawmidi, info);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get size of the snd_ump_block_info_t structure in bytes
 | |
|  * \return size of the snd_ump_block_info_t structure in bytes
 | |
|  */
 | |
| size_t snd_ump_block_info_sizeof(void)
 | |
| {
 | |
| 	return sizeof(snd_ump_block_info_t);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief allocate the snd_ump_block_info_t structure
 | |
|  * \param info returned pointer
 | |
|  * \return 0 on success otherwise a negative error code if fails
 | |
|  *
 | |
|  * Allocates a new snd_ump_block_info_t structure using the standard
 | |
|  * malloc C library function.
 | |
|  */
 | |
| int snd_ump_block_info_malloc(snd_ump_block_info_t **info)
 | |
| {
 | |
| 	*info = calloc(1, sizeof(snd_ump_block_info_t));
 | |
| 	if (!*info)
 | |
| 		return -ENOMEM;
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief frees the snd_ump_block_info_t structure
 | |
|  * \param info pointer to the snd_ump_block_info_t structure to free
 | |
|  *
 | |
|  * Frees the given snd_ump_block_info_t structure using the standard
 | |
|  * free C library function.
 | |
|  */
 | |
| void snd_ump_block_info_free(snd_ump_block_info_t *info)
 | |
| {
 | |
| 	free(info);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief clears the snd_ump_block_info_t structure
 | |
|  * \param info pointer to the snd_ump_block_info_t structure to clear
 | |
|  *
 | |
|  * Zero-clear the snd_ump_block_info_t object.
 | |
|  */
 | |
| void snd_ump_block_info_clear(snd_ump_block_info_t *info)
 | |
| {
 | |
| 	memset(info, 0, sizeof(*info));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief copy one snd_ump_block_info_t structure to another
 | |
|  * \param dst destination snd_ump_block_info_t structure
 | |
|  * \param src source snd_ump_block_info_t structure
 | |
|  */
 | |
| void snd_ump_block_info_copy(snd_ump_block_info_t *dst,
 | |
| 			     const snd_ump_block_info_t *src)
 | |
| {
 | |
| 	*dst = *src;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get card number of UMP block
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return the card number of the given UMP block
 | |
|  */
 | |
| int snd_ump_block_info_get_card(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->card;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get device number of UMP block
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return the device number of the given UMP block
 | |
|  */
 | |
| int snd_ump_block_info_get_device(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->device;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP block ID
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return ID number of the given UMP block
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_block_id(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->block_id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP block activeness
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return 1 if the block is active or 0 if inactive
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_active(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->active;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP block information flags
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return info flag bits for the given UMP block
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_flags(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->flags;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP block direction
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return direction of UMP block (input,output,bidirectional)
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_direction(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->direction;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get first UMP group ID belonging to the block
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return the first UMP group ID belonging to the block
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_first_group(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->first_group;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get number of UMP groups belonging to the block
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return the number of UMP groups belonging to the block
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_num_groups(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->num_groups;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get MIDI-CI version number
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return MIDI-CI version number
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_midi_ci_version(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->midi_ci_version;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get number of supported SysEx8 streams
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return number of supported SysEx8 streams
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_sysex8_streams(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->sysex8_streams;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UI hint of the given UMP block
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return the hint bits
 | |
|  */
 | |
| unsigned int snd_ump_block_info_get_ui_hint(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return info->ui_hint;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get the name string of UMP block
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return the name string of UMP block
 | |
|  */
 | |
| const char *snd_ump_block_info_get_name(const snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return (const char *)info->name;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set card number to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param card the card number
 | |
|  */
 | |
| void snd_ump_block_info_set_card(snd_ump_block_info_t *info, unsigned int card)
 | |
| {
 | |
| 	info->card = card;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set device number to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param device the device number
 | |
|  */
 | |
| void snd_ump_block_info_set_device(snd_ump_block_info_t *info, unsigned int device)
 | |
| {
 | |
| 	info->device = device;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set UMP block ID to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param id the ID number
 | |
|  *
 | |
|  * This function is mostly used for setting the block ID to query.
 | |
|  */
 | |
| void snd_ump_block_info_set_block_id(snd_ump_block_info_t *info,
 | |
| 				     unsigned int id)
 | |
| {
 | |
| 	info->block_id = id;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set activeness to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param active 1 if the block is active or 0 if inactive
 | |
|  */
 | |
| void snd_ump_block_info_set_active(snd_ump_block_info_t *info, unsigned int active)
 | |
| {
 | |
| 	info->active = !!active;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set UMP block information flags to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param flags flag bits for the given UMP block
 | |
|  */
 | |
| void snd_ump_block_info_set_flags(snd_ump_block_info_t *info, unsigned int flags)
 | |
| {
 | |
| 	info->flags = flags;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set UMP block direction to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param direction direction of UMP block (input,output,bidirectional)
 | |
|  */
 | |
| void snd_ump_block_info_set_direction(snd_ump_block_info_t *info, unsigned int direction)
 | |
| {
 | |
| 	info->direction = direction;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set first UMP group to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param first_group the first UMP group ID belonging to the block
 | |
|  */
 | |
| void snd_ump_block_info_set_first_group(snd_ump_block_info_t *info,
 | |
| 					unsigned int first_group)
 | |
| {
 | |
| 	info->first_group = first_group;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set number of UMP groups to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param num_groups the number of UMP groups belonging to the block
 | |
|  */
 | |
| void snd_ump_block_info_set_num_groups(snd_ump_block_info_t *info,
 | |
| 				       unsigned int num_groups)
 | |
| {
 | |
| 	info->num_groups = num_groups;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set MIDI-CI version number to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param version MIDI-CI version number
 | |
|  */
 | |
| void snd_ump_block_info_set_midi_ci_version(snd_ump_block_info_t *info,
 | |
| 					    unsigned int version)
 | |
| {
 | |
| 	info->midi_ci_version = version;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set number of supported SysEx8 streams to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param streams number of supported SysEx8 streams
 | |
|  */
 | |
| void snd_ump_block_info_set_sysex8_streams(snd_ump_block_info_t *info,
 | |
| 					   unsigned int streams)
 | |
| {
 | |
| 	info->sysex8_streams = streams;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set UI Hint to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param hint the hint bits
 | |
|  */
 | |
| void snd_ump_block_info_set_ui_hint(snd_ump_block_info_t *info, unsigned int hint)
 | |
| {
 | |
| 	info->ui_hint = hint;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief set the name string to snd_ump_block_info_t structure
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \param name the name string of UMP block
 | |
|  */
 | |
| void snd_ump_block_info_set_name(snd_ump_block_info_t *info,
 | |
| 				 const char *name)
 | |
| {
 | |
| 	snd_strlcpy((char *)info->name, name, sizeof(info->name));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief get UMP block information
 | |
|  * \param ump UMP handle
 | |
|  * \param info pointer to a snd_ump_block_info_t structure
 | |
|  * \return 0 on success otherwise a negative error code
 | |
|  *
 | |
|  * The caller should fill the block ID to query at first via
 | |
|  * snd_ump_block_info_set_block_id().
 | |
|  */
 | |
| int snd_ump_block_info(snd_ump_t *ump, snd_ump_block_info_t *info)
 | |
| {
 | |
| 	return _snd_rawmidi_ump_block_info(ump->rawmidi, info);
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * UMP sysex helpers
 | |
|  */
 | |
| static int expand_sysex_data(const uint32_t *data, uint8_t *buf,
 | |
| 			     size_t maxlen, unsigned char bytes, int offset)
 | |
| {
 | |
| 	int size = 0;
 | |
| 
 | |
| 	for (; bytes; bytes--, size++) {
 | |
| 		if (!maxlen)
 | |
| 			break;
 | |
| 		buf[size] = (*data >> offset) & 0x7f;
 | |
| 		if (!offset) {
 | |
| 			offset = 24;
 | |
| 			data++;
 | |
| 		} else {
 | |
| 			offset -= 8;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return size;
 | |
| }
 | |
| 
 | |
| static int expand_sysex7(const uint32_t *ump, uint8_t *buf, size_t maxlen,
 | |
| 			 size_t *filled)
 | |
| {
 | |
| 	unsigned char status;
 | |
| 	unsigned char bytes;
 | |
| 
 | |
| 	*filled = 0;
 | |
| 	if (!maxlen)
 | |
| 		return 0;
 | |
| 
 | |
| 	status = snd_ump_sysex_msg_status(ump);
 | |
| 	bytes = snd_ump_sysex_msg_length(ump);
 | |
| 	if (bytes > 6)
 | |
| 		return 0; // invalid - skip
 | |
| 
 | |
| 	*filled = expand_sysex_data(ump, buf, maxlen, bytes, 8);
 | |
| 	return (status == SND_UMP_SYSEX_STATUS_SINGLE ||
 | |
| 		status == SND_UMP_SYSEX_STATUS_END);
 | |
| }
 | |
| 
 | |
| static int expand_sysex8(const uint32_t *ump, uint8_t *buf, size_t maxlen,
 | |
| 			  size_t *filled)
 | |
| {
 | |
| 	unsigned char status;
 | |
| 	unsigned char bytes;
 | |
| 
 | |
| 	*filled = 0;
 | |
| 	if (!maxlen)
 | |
| 		return 0;
 | |
| 
 | |
| 	status = snd_ump_sysex_msg_status(ump);
 | |
| 	if (status > SND_UMP_SYSEX_STATUS_END)
 | |
| 		return 0; // unsupported, skip
 | |
| 	bytes = snd_ump_sysex_msg_length(ump);
 | |
| 	if (!bytes || bytes > 14)
 | |
| 		return 0; // skip
 | |
| 
 | |
| 	*filled = expand_sysex_data(ump, buf, maxlen, bytes - 1, 0);
 | |
| 	return (status == SND_UMP_SYSEX_STATUS_SINGLE ||
 | |
| 		status == SND_UMP_SYSEX_STATUS_END);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * \brief fill sysex byte from a UMP packet
 | |
|  * \param ump UMP packet pointer
 | |
|  * \param buf buffer point to fill sysex bytes
 | |
|  * \param maxlen max buffer size in bytes
 | |
|  * \param filled the size of filled sysex bytes on the buffer
 | |
|  * \return 1 if the sysex finished, otherwise 0
 | |
|  */
 | |
| int snd_ump_msg_sysex_expand(const uint32_t *ump, uint8_t *buf, size_t maxlen,
 | |
| 			     size_t *filled)
 | |
| {
 | |
| 	switch (snd_ump_msg_type(ump)) {
 | |
| 	case SND_UMP_MSG_TYPE_DATA:
 | |
| 		return expand_sysex7(ump, buf, maxlen, filled);
 | |
| 	case SND_UMP_MSG_TYPE_EXTENDED_DATA:
 | |
| 		return expand_sysex8(ump, buf, maxlen, filled);
 | |
| 	default:
 | |
| 		return -EINVAL;
 | |
| 	}
 | |
| }
 |