123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /*
- * MidiAlsaSeq.h - ALSA-sequencer-client
- *
- * Copyright (c) 2005-2013 Tobias Doerffel <tobydox/at/users.sourceforge.net>
- *
- * This file is part of LMMS - https://lmms.io
- *
- * This program 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 of the License, or (at your option) any later version.
- *
- * This program 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 this program (see COPYING); if not, write to the
- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301 USA.
- *
- */
- #ifndef MIDI_ALSA_SEQ_H
- #define MIDI_ALSA_SEQ_H
- #include "lmmsconfig.h"
- #ifdef LMMS_HAVE_ALSA
- #include <alsa/asoundlib.h>
- #include <QtCore/QMutex>
- #include <QtCore/QThread>
- #include <QtCore/QTimer>
- #include "MidiClient.h"
- struct pollfd;
- class MidiAlsaSeq : public QThread, public MidiClient
- {
- Q_OBJECT
- public:
- MidiAlsaSeq();
- virtual ~MidiAlsaSeq();
- static QString probeDevice();
- inline static QString name()
- {
- return QT_TRANSLATE_NOOP( "MidiSetupWidget",
- "ALSA-Sequencer (Advanced Linux Sound "
- "Architecture)" );
- }
- inline static QString configSection()
- {
- return "Midialsaseq";
- }
- virtual void processOutEvent( const MidiEvent & _me,
- const TimePos & _time,
- const MidiPort * _port ) override;
- void applyPortMode( MidiPort * _port ) override;
- void applyPortName( MidiPort * _port ) override;
- void removePort( MidiPort * _port ) override;
- // list seq-ports from ALSA
- QStringList readablePorts() const override
- {
- return m_readablePorts;
- }
- QStringList writablePorts() const override
- {
- return m_writablePorts;
- }
- // return name of port which specified MIDI event came from
- QString sourcePortName( const MidiEvent & ) const override;
- // (un)subscribe given MidiPort to/from destination-port
- virtual void subscribeReadablePort( MidiPort * _port,
- const QString & _dest,
- bool _subscribe = true ) override;
- virtual void subscribeWritablePort( MidiPort * _port,
- const QString & _dest,
- bool _subscribe = true ) override;
- virtual void connectRPChanged( QObject * _receiver,
- const char * _member ) override
- {
- connect( this, SIGNAL( readablePortsChanged() ),
- _receiver, _member );
- }
- virtual void connectWPChanged( QObject * _receiver,
- const char * _member ) override
- {
- connect( this, SIGNAL( writablePortsChanged() ),
- _receiver, _member );
- }
- private slots:
- void changeQueueTempo( bpm_t _bpm );
- void updatePortList();
- private:
- void run() override;
- #ifdef LMMS_HAVE_ALSA
- QMutex m_seqMutex;
- snd_seq_t * m_seqHandle;
- struct Ports
- {
- Ports() { p[0] = -1; p[1] = -1; }
- int & operator[]( const int _i ) { return p[_i]; }
- private: int p[2];
- } ;
- QMap<MidiPort *, Ports> m_portIDs;
- #endif
- int m_queueID;
- volatile bool m_quit;
- QTimer m_portListUpdateTimer;
- QStringList m_readablePorts;
- QStringList m_writablePorts;
- int m_pipe[2];
- signals:
- void readablePortsChanged();
- void writablePortsChanged();
- } ;
- #endif
- #endif
|