package org.red5.server.midi; /* * RED5 Open Source Flash Server - http://www.osflash.org/red5 * * Copyright (c) 2006-2009 by respective authors (see below). All rights reserved. * * This library is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free Software * Foundation; either version 2.1 of the License, or (at your option) any later * version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with this library; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ import java.util.ArrayList; import java.util.List; import javax.sound.midi.MidiDevice; import javax.sound.midi.MidiMessage; import javax.sound.midi.MidiSystem; import javax.sound.midi.MidiUnavailableException; import javax.sound.midi.Receiver; import javax.sound.midi.MidiDevice.Info; import org.red5.server.api.so.ISharedObject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class SharedMidiObject { private static final Logger log = LoggerFactory.getLogger(SharedMidiObject.class); protected String deviceName; protected ISharedObject so; protected MidiDevice dev; public SharedMidiObject(String deviceName, ISharedObject so) { this.deviceName = deviceName; this.so = so; } public boolean connect() { try { dev = getMidiDevice(deviceName); if (dev == null) { log.error("Midi device not found: " + deviceName); return false; } if (!dev.isOpen()) { dev.open(); } dev.getTransmitter().setReceiver(new MidiReceiver()); return true; } catch (MidiUnavailableException e) { log.error("Error connecting to midi device", e); } return false; } public void close() { if (dev != null && dev.isOpen()) { dev.close(); } } public static MidiDevice getMidiDevice(String name) { MidiDevice.Info[] info = MidiSystem.getMidiDeviceInfo(); for (Info element : info) { if (element.getName().equals(name)) { try { return MidiSystem.getMidiDevice(element); } catch (MidiUnavailableException e) { log.error("{}", e); } } } return null; } public class MidiReceiver extends Object implements Receiver { /** {@inheritDoc} */ public void send(MidiMessage midi, long time) { byte[] msg = midi.getMessage(); int len = midi.getLength(); if (len <= 1) { return; } List<Object> list = new ArrayList<Object>(3); list.add(time); list.add(len); list.add(msg); so.beginUpdate(); so.sendMessage("midi", list); so.endUpdate(); String out = "Midi >> Status: " + msg[0] + " Data: ["; for (int i = 1; i < len; i++) { out += msg[i] + ((i == len - 1) ? "" : ","); } out += ']'; log.debug(out); } /** {@inheritDoc} */ public void close() { log.debug("Midi device closed"); } } }