summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/gnu/javax/sound/midi/dssi/DSSISynthesizer.java
blob: 9472ee4adcc5cd83766de9dbafe08ff69c261ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
/* DSSISynthesizer.java -- DSSI Synthesizer Provider
   Copyright (C) 2005, 2006 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 instruments = new ArrayList();
    private List resources = new ArrayList();
    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 (SoundbankResource[])
        resources.toArray(new SoundbankResource[resources.size()]);
    }

    /* @see javax.sound.midi.Soundbank#getInstruments()
     */
    public Instrument[] getInstruments()
    {
      return (Instrument[])
        instruments.toArray(new Instrument[instruments.size()]);
    }

    /* @see javax.sound.midi.Soundbank#getInstrument(javax.sound.midi.Patch)
     */
    public Instrument getInstrument(Patch patch)
    {
      Iterator itr = instruments.iterator();

      while (itr.hasNext())
      {
        Instrument i = (Instrument) 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 soundbanks = new ArrayList();
  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 instruments = new ArrayList();
    Iterator itr = soundbanks.iterator();
    while (itr.hasNext())
    {
      Soundbank sb = (Soundbank) itr.next();
      Instrument ins[] = sb.getInstruments();
      for (int i = 0; i < ins.length; i++)
        instruments.add(ins[i]);
    }
    return (Instrument[])
      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;
  }
}
OpenPOWER on IntegriCloud