123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740 |
- /* DSSISynthesizer.java -- DSSI Synthesizer Provider
- Copyright (C) 2005, 2006, 2012 Free Software Foundation, Inc.
- This file is part of GNU Classpath.
- GNU Classpath is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
- GNU Classpath 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
- General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with GNU Classpath; see the file COPYING. If not, write to the
- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301 USA.
- Linking this library statically or dynamically with other modules is
- making a combined work based on this library. Thus, the terms and
- conditions of the GNU General Public License cover the whole
- combination.
- As a special exception, the copyright holders of this library give you
- permission to link this library with independent modules to produce an
- executable, regardless of the license terms of these independent
- modules, and to copy and distribute the resulting executable under
- terms of your choice, provided that you also meet, for each linked
- independent module, the terms and conditions of the license of that
- module. An independent module is a module which is not derived from
- or based on this library. If you modify this library, you may extend
- this exception to your version of the library, but you are not
- obligated to do so. If you do not wish to do so, delete this
- exception statement from your version. */
- package gnu.javax.sound.midi.dssi;
- import java.util.ArrayList;
- import java.util.Iterator;
- import java.util.List;
- import javax.sound.midi.Instrument;
- import javax.sound.midi.MidiChannel;
- import javax.sound.midi.MidiMessage;
- import javax.sound.midi.MidiUnavailableException;
- import javax.sound.midi.Patch;
- import javax.sound.midi.Receiver;
- import javax.sound.midi.ShortMessage;
- import javax.sound.midi.Soundbank;
- import javax.sound.midi.SoundbankResource;
- import javax.sound.midi.Synthesizer;
- import javax.sound.midi.Transmitter;
- import javax.sound.midi.VoiceStatus;
- /**
- * DSSI soft-synth support.
- *
- * All DSSI soft-synths are expected to be installed in /usr/lib/dssi.
- *
- * @author Anthony Green (green@redhat.com)
- *
- */
- public class DSSISynthesizer implements Synthesizer
- {
- /**
- * The DSSI Instrument class.
- *
- * @author Anthony Green (green@redhat.com)
- *
- */
- class DSSIInstrument extends Instrument
- {
- DSSIInstrument (Soundbank soundbank, Patch patch, String name)
- {
- super (soundbank, patch, name, null);
- }
- /* @see javax.sound.midi.SoundbankResource#getData()
- */
- public Object getData()
- {
- return null;
- }
- }
- /**
- * DSSISoundbank holds all instruments.
- *
- * @author Anthony Green (green@redhat.com)
- *
- */
- class DSSISoundbank implements Soundbank
- {
- private String name;
- private String description;
- private List<Instrument> instruments = new ArrayList<Instrument>();
- private List<SoundbankResource> resources = new ArrayList<SoundbankResource>();
- private String vendor;
- private String version;
- public DSSISoundbank(String name, String description, String vendor, String version)
- {
- this.name = name;
- this.description = description;
- this.vendor = vendor;
- this.version = version;
- }
- void add(Instrument instrument)
- {
- instruments.add(instrument);
- }
- /* @see javax.sound.midi.Soundbank#getName()
- */
- public String getName()
- {
- return name;
- }
- /* @see javax.sound.midi.Soundbank#getVersion()
- */
- public String getVersion()
- {
- return version;
- }
- /* @see javax.sound.midi.Soundbank#getVendor()
- */
- public String getVendor()
- {
- return vendor;
- }
- /* @see javax.sound.midi.Soundbank#getDescription()
- */
- public String getDescription()
- {
- return description;
- }
- /* @see javax.sound.midi.Soundbank#getResources()
- */
- public SoundbankResource[] getResources()
- {
- return resources.toArray(new SoundbankResource[resources.size()]);
- }
- /* @see javax.sound.midi.Soundbank#getInstruments()
- */
- public Instrument[] getInstruments()
- {
- return instruments.toArray(new Instrument[instruments.size()]);
- }
- /* @see javax.sound.midi.Soundbank#getInstrument(javax.sound.midi.Patch)
- */
- public Instrument getInstrument(Patch patch)
- {
- Iterator<Instrument> itr = instruments.iterator();
- while (itr.hasNext())
- {
- Instrument i = itr.next();
- if (i.getPatch().equals(patch))
- return i;
- }
- return null;
- }
- }
- /**
- * The Receiver class receives all MIDI messages from a connected
- * Transmitter.
- *
- * @author Anthony Green (green@redhat.com)
- *
- */
- class DSSIReceiver implements Receiver
- {
- /* (non-Javadoc)
- * @see javax.sound.midi.Receiver#send(javax.sound.midi.MidiMessage, long)
- */
- public void send(MidiMessage message, long timeStamp)
- throws IllegalStateException
- {
- if (message instanceof ShortMessage)
- {
- ShortMessage smessage = (ShortMessage) message;
- switch (message.getStatus())
- {
- case ShortMessage.NOTE_ON:
- int velocity = smessage.getData2();
- if (velocity > 0)
- channels[smessage.getChannel()].noteOn(smessage.getData1(),
- smessage.getData2());
- else
- channels[smessage.getChannel()].noteOff(smessage.getData1());
- break;
- case ShortMessage.CONTROL_CHANGE:
- channels[smessage.getChannel()].controlChange(smessage.getData1(),
- smessage.getData2());
- break;
- default:
- System.out.println ("Unhandled message: " + message.getStatus());
- break;
- }
- }
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Receiver#close()
- */
- public void close()
- {
- // TODO Auto-generated method stub
- }
- }
- static native void noteOn_(long handle, int channel, int noteNumber, int velocity);
- static native void noteOff_(long handle, int channel, int noteNumber, int velocity);
- static native void setPolyPressure_(long handle, int channel, int noteNumber, int pressure);
- static native int getPolyPressure_(long handle, int channel, int noteNumber);
- static native void controlChange_(long handle, int channel, int control, int value);
- static native void open_(long handle);
- static native void close_(long handle);
- static native String getProgramName_(long handle, int index);
- static native int getProgramBank_(long handle, int index);
- static native int getProgramProgram_(long handle, int index);
- static native void selectProgram_(long handle, int bank, int program);
- /**
- * @author Anthony Green (green@redhat.com)
- *
- */
- public class DSSIMidiChannel implements MidiChannel
- {
- int channel = 0;
- /**
- * Default contructor.
- */
- public DSSIMidiChannel(int channel)
- {
- super();
- this.channel = channel;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#noteOn(int, int)
- */
- public void noteOn(int noteNumber, int velocity)
- {
- noteOn_(sohandle, channel, noteNumber, velocity);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#noteOff(int, int)
- */
- public void noteOff(int noteNumber, int velocity)
- {
- noteOff_(sohandle, channel, noteNumber, velocity);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#noteOff(int)
- */
- public void noteOff(int noteNumber)
- {
- noteOff_(sohandle, channel, noteNumber, -1);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setPolyPressure(int, int)
- */
- public void setPolyPressure(int noteNumber, int pressure)
- {
- setPolyPressure_(sohandle, channel, noteNumber, pressure);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getPolyPressure(int)
- */
- public int getPolyPressure(int noteNumber)
- {
- return getPolyPressure_(sohandle, channel, noteNumber);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setChannelPressure(int)
- */
- public void setChannelPressure(int pressure)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getChannelPressure()
- */
- public int getChannelPressure()
- {
- // TODO Auto-generated method stub
- return 0;
- }
- /* @see javax.sound.midi.MidiChannel#controlChange(int, int) */
- public void controlChange(int controller, int value)
- {
- controlChange_(sohandle, channel, controller, value);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getController(int)
- */
- public int getController(int controller)
- {
- // TODO Auto-generated method stub
- return 0;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#programChange(int)
- */
- public void programChange(int program)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#programChange(int, int)
- */
- public void programChange(int bank, int program)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getProgram()
- */
- public int getProgram()
- {
- // TODO Auto-generated method stub
- return 0;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setPitchBend(int)
- */
- public void setPitchBend(int bend)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getPitchBend()
- */
- public int getPitchBend()
- {
- // TODO Auto-generated method stub
- return 0;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#resetAllControllers()
- */
- public void resetAllControllers()
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#allNotesOff()
- */
- public void allNotesOff()
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#allSoundOff()
- */
- public void allSoundOff()
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#localControl(boolean)
- */
- public boolean localControl(boolean on)
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setMono(boolean)
- */
- public void setMono(boolean on)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getMono()
- */
- public boolean getMono()
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setOmni(boolean)
- */
- public void setOmni(boolean on)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getOmni()
- */
- public boolean getOmni()
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setMute(boolean)
- */
- public void setMute(boolean mute)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getMute()
- */
- public boolean getMute()
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#setSolo(boolean)
- */
- public void setSolo(boolean solo)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiChannel#getSolo()
- */
- public boolean getSolo()
- {
- // TODO Auto-generated method stub
- return false;
- }
- }
- long sohandle;
- long handle;
- private Info info;
- MidiChannel channels[] = new MidiChannel[16];
- // The list of known soundbanks, and the default one.
- List<Soundbank> soundbanks = new ArrayList<Soundbank>();
- DSSISoundbank defaultSoundbank;
- /**
- * Create a DSSI Synthesizer.
- *
- * @param info the DSSIInfo for this soft-synth
- * @param soname the name of the .so file for this DSSI synth
- * @param index the DSSI index for this soft-synth
- */
- public DSSISynthesizer(Info info, String soname, long index)
- {
- super();
- this.info = info;
- sohandle = DSSIMidiDeviceProvider.dlopen_(soname);
- handle = DSSIMidiDeviceProvider.getDSSIHandle_(sohandle, index);
- channels[0] = new DSSIMidiChannel(0);
- defaultSoundbank = new DSSISoundbank("name", "description",
- "vendor", "version");
- soundbanks.add(defaultSoundbank);
- int i = 0;
- String name;
- do
- {
- name = getProgramName_(sohandle, i);
- if (name != null)
- {
- defaultSoundbank.
- add(new DSSIInstrument(defaultSoundbank,
- new Patch(getProgramBank_(sohandle, i),
- getProgramProgram_(sohandle, i)),
- name));
- i++;
- }
- } while (name != null);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#getMaxPolyphony()
- */
- public int getMaxPolyphony()
- {
- // TODO Auto-generated method stub
- return 0;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#getLatency()
- */
- public long getLatency()
- {
- // DSSI and LADSPA provide no way to determine the latency.
- // Let's just return 0 for now.
- return 0;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#getChannels()
- */
- public MidiChannel[] getChannels()
- {
- return channels;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#getVoiceStatus()
- */
- public VoiceStatus[] getVoiceStatus()
- {
- // TODO Auto-generated method stub
- return null;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#isSoundbankSupported(javax.sound.midi.Soundbank)
- */
- public boolean isSoundbankSupported(Soundbank soundbank)
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* @see javax.sound.midi.Synthesizer#loadInstrument(javax.sound.midi.Instrument)
- */
- public boolean loadInstrument(Instrument instrument)
- {
- // FIXME: perhaps this isn't quite right. It can probably
- // be in any soundbank.
- if (instrument.getSoundbank() != defaultSoundbank)
- throw new IllegalArgumentException ("Synthesizer doesn't support this instrument's soundbank");
- Patch patch = instrument.getPatch();
- selectProgram_(sohandle, patch.getBank(), patch.getProgram());
- return true;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#unloadInstrument(javax.sound.midi.Instrument)
- */
- public void unloadInstrument(Instrument instrument)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#remapInstrument(javax.sound.midi.Instrument, javax.sound.midi.Instrument)
- */
- public boolean remapInstrument(Instrument from, Instrument to)
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* @see javax.sound.midi.Synthesizer#getDefaultSoundbank()
- */
- public Soundbank getDefaultSoundbank()
- {
- return defaultSoundbank;
- }
- /* @see javax.sound.midi.Synthesizer#getAvailableInstruments()
- */
- public Instrument[] getAvailableInstruments()
- {
- List<Instrument> instruments = new ArrayList<Instrument>();
- Iterator<Soundbank> itr = soundbanks.iterator();
- while (itr.hasNext())
- {
- Soundbank sb = itr.next();
- Instrument ins[] = sb.getInstruments();
- for (int i = 0; i < ins.length; i++)
- instruments.add(ins[i]);
- }
- return instruments.toArray(new Instrument[instruments.size()]);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#getLoadedInstruments()
- */
- public Instrument[] getLoadedInstruments()
- {
- // TODO Auto-generated method stub
- return null;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#loadAllInstruments(javax.sound.midi.Soundbank)
- */
- public boolean loadAllInstruments(Soundbank soundbank)
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#unloadAllInstruments(javax.sound.midi.Soundbank)
- */
- public void unloadAllInstruments(Soundbank soundbank)
- {
- // TODO Auto-generated method stub
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#loadInstruments(javax.sound.midi.Soundbank, javax.sound.midi.Patch[])
- */
- public boolean loadInstruments(Soundbank soundbank, Patch[] patchList)
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.Synthesizer#unloadInstruments(javax.sound.midi.Soundbank, javax.sound.midi.Patch[])
- */
- public void unloadInstruments(Soundbank soundbank, Patch[] patchList)
- {
- // TODO Auto-generated method stub
- }
- /* @see javax.sound.midi.MidiDevice#getDeviceInfo()
- */
- public Info getDeviceInfo()
- {
- return info;
- }
- /* @see javax.sound.midi.MidiDevice#open()
- */
- public void open() throws MidiUnavailableException
- {
- open_(sohandle);
- }
- /* @see javax.sound.midi.MidiDevice#close()
- */
- public void close()
- {
- close_(sohandle);
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiDevice#isOpen()
- */
- public boolean isOpen()
- {
- // TODO Auto-generated method stub
- return false;
- }
- /* (non-Javadoc)
- * @see javax.sound.midi.MidiDevice#getMicrosecondPosition()
- */
- public long getMicrosecondPosition()
- {
- // TODO Auto-generated method stub
- return 0;
- }
- /* @see javax.sound.midi.MidiDevice#getMaxReceivers()
- */
- public int getMaxReceivers()
- {
- return 1;
- }
- /* @see javax.sound.midi.MidiDevice#getMaxTransmitters()
- */
- public int getMaxTransmitters()
- {
- return 0;
- }
- /* @see javax.sound.midi.MidiDevice#getReceiver()
- */
- public Receiver getReceiver() throws MidiUnavailableException
- {
- return new DSSIReceiver();
- }
- /* @see javax.sound.midi.MidiDevice#getTransmitter()
- */
- public Transmitter getTransmitter() throws MidiUnavailableException
- {
- return null;
- }
- }
|