2008-06-02 17:41:35 -04:00
|
|
|
/*
|
2010-07-05 20:16:36 -04:00
|
|
|
Copyright (C) 1998-2010 Paul Barton-Davis
|
2008-06-02 17:41:35 -04:00
|
|
|
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; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __libmidi_port_h__
|
|
|
|
#define __libmidi_port_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
2010-07-05 20:16:36 -04:00
|
|
|
#include <jack/types.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/xml++.h"
|
2010-07-05 20:16:36 -04:00
|
|
|
#include "pbd/crossthread.h"
|
|
|
|
#include "pbd/signals.h"
|
|
|
|
#include "pbd/ringbuffer.h"
|
|
|
|
|
|
|
|
#include "evoral/Event.hpp"
|
|
|
|
#include "evoral/EventRingBuffer.hpp"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "midi++/types.h"
|
|
|
|
#include "midi++/parser.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
namespace MIDI {
|
|
|
|
|
|
|
|
class Channel;
|
|
|
|
class PortRequest;
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
class Port {
|
2008-06-02 17:41:35 -04:00
|
|
|
public:
|
2010-07-07 21:00:46 -04:00
|
|
|
enum Flags {
|
|
|
|
IsInput = JackPortIsInput,
|
|
|
|
IsOutput = JackPortIsOutput,
|
|
|
|
};
|
|
|
|
|
|
|
|
Port (std::string const &, Flags, jack_client_t *);
|
2010-07-05 20:16:36 -04:00
|
|
|
Port (const XMLNode&, jack_client_t *);
|
|
|
|
~Port ();
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-07-05 20:16:36 -04:00
|
|
|
XMLNode& get_state () const;
|
|
|
|
void set_state (const XMLNode&);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
// FIXME: make Manager a friend of port so these can be hidden?
|
|
|
|
|
|
|
|
/* Only for use by MidiManager. Don't ever call this. */
|
2010-12-03 17:26:29 -05:00
|
|
|
void cycle_start (pframes_t nframes);
|
2008-06-02 17:41:35 -04:00
|
|
|
/* Only for use by MidiManager. Don't ever call this. */
|
2010-12-03 17:26:29 -05:00
|
|
|
void cycle_end ();
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/** Write a message to port.
|
|
|
|
* @param msg Raw MIDI message to send
|
|
|
|
* @param msglen Size of @a msg
|
|
|
|
* @param timestamp Time stamp in frames of this message (relative to cycle start)
|
|
|
|
* @return number of bytes successfully written
|
|
|
|
*/
|
2010-07-05 20:16:36 -04:00
|
|
|
int write (byte *msg, size_t msglen, timestamp_t timestamp);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/** Read raw bytes from a port.
|
|
|
|
* @param buf memory to store read data in
|
|
|
|
* @param bufsize size of @a buf
|
|
|
|
* @return number of bytes successfully read, negative if error
|
|
|
|
*/
|
2010-07-05 20:16:36 -04:00
|
|
|
int read (byte *buf, size_t bufsize);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
void parse (framecnt_t timestamp);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/** Write a message to port.
|
|
|
|
* @return true on success.
|
|
|
|
* FIXME: describe semantics here
|
|
|
|
*/
|
|
|
|
int midimsg (byte *msg, size_t len, timestamp_t timestamp) {
|
|
|
|
return !(write (msg, len, timestamp) == (int) len);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool clock (timestamp_t timestamp);
|
|
|
|
|
|
|
|
/* select(2)/poll(2)-based I/O */
|
|
|
|
|
|
|
|
/** Get the file descriptor for port.
|
|
|
|
* @return File descriptor, or -1 if not selectable.
|
|
|
|
*/
|
2010-07-05 20:16:36 -04:00
|
|
|
int selectable () const {
|
|
|
|
return xthread.selectable();
|
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
Channel *channel (channel_t chn) {
|
|
|
|
return _channel[chn&0x7F];
|
|
|
|
}
|
|
|
|
|
2010-07-07 21:00:46 -04:00
|
|
|
Parser* parser () {
|
|
|
|
return _parser;
|
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
const char *name () const { return _tagname.c_str(); }
|
|
|
|
bool ok () const { return _ok; }
|
|
|
|
|
2010-07-07 21:00:46 -04:00
|
|
|
bool receives_input () const {
|
|
|
|
return _flags == IsInput;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool sends_output () const {
|
|
|
|
return _flags == IsOutput;
|
|
|
|
}
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
struct Descriptor {
|
|
|
|
std::string tag;
|
2010-07-07 21:00:46 -04:00
|
|
|
Flags flags;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
Descriptor (const XMLNode&);
|
|
|
|
XMLNode& get_state();
|
|
|
|
};
|
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
pframes_t nframes_this_cycle() const { return _nframes_this_cycle; }
|
2010-07-05 11:41:05 -04:00
|
|
|
|
2010-07-08 18:55:20 -04:00
|
|
|
void reestablish (jack_client_t *);
|
2010-07-05 20:16:36 -04:00
|
|
|
void reconnect ();
|
|
|
|
|
|
|
|
static void set_process_thread (pthread_t);
|
|
|
|
static pthread_t get_process_thread () { return _process_thread; }
|
|
|
|
static bool is_process_thread();
|
2010-07-08 18:55:20 -04:00
|
|
|
|
|
|
|
static std::string state_node_name;
|
2010-07-05 20:16:36 -04:00
|
|
|
|
|
|
|
static PBD::Signal0<void> MakeConnections;
|
|
|
|
static PBD::Signal0<void> JackHalted;
|
|
|
|
|
|
|
|
private:
|
2008-06-02 17:41:35 -04:00
|
|
|
bool _ok;
|
|
|
|
bool _currently_in_cycle;
|
2010-12-03 17:26:29 -05:00
|
|
|
pframes_t _nframes_this_cycle;
|
2008-06-02 17:41:35 -04:00
|
|
|
std::string _tagname;
|
|
|
|
size_t _number;
|
|
|
|
Channel *_channel[16];
|
2010-07-07 21:00:46 -04:00
|
|
|
Parser *_parser;
|
2010-07-05 20:16:36 -04:00
|
|
|
|
2010-07-07 21:00:46 -04:00
|
|
|
int create_port ();
|
2010-07-05 20:16:36 -04:00
|
|
|
|
|
|
|
jack_client_t* _jack_client;
|
2010-07-07 21:00:46 -04:00
|
|
|
jack_port_t* _jack_port;
|
2010-12-03 17:26:29 -05:00
|
|
|
framecnt_t _last_read_index;
|
2010-07-05 20:16:36 -04:00
|
|
|
timestamp_t _last_write_timestamp;
|
|
|
|
|
|
|
|
/** Channel used to signal to the MidiControlUI that input has arrived */
|
|
|
|
CrossThreadChannel xthread;
|
|
|
|
|
2010-07-07 21:00:46 -04:00
|
|
|
std::string _connections;
|
2010-07-05 20:16:36 -04:00
|
|
|
PBD::ScopedConnection connect_connection;
|
|
|
|
PBD::ScopedConnection halt_connection;
|
|
|
|
void flush (void* jack_port_buffer);
|
|
|
|
void jack_halted ();
|
2010-07-07 21:00:46 -04:00
|
|
|
void make_connections ();
|
|
|
|
void init (std::string const &, Flags);
|
2010-07-05 20:16:36 -04:00
|
|
|
|
|
|
|
static pthread_t _process_thread;
|
|
|
|
|
|
|
|
RingBuffer< Evoral::Event<double> > output_fifo;
|
|
|
|
Evoral::EventRingBuffer<timestamp_t> input_fifo;
|
|
|
|
|
|
|
|
Glib::Mutex output_fifo_lock;
|
2010-07-07 21:00:46 -04:00
|
|
|
|
|
|
|
Flags _flags;
|
2008-06-02 17:41:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PortSet {
|
|
|
|
PortSet (std::string str) : owner (str) { }
|
|
|
|
|
|
|
|
std::string owner;
|
|
|
|
std::list<XMLNode> ports;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::ostream & operator << ( std::ostream & os, const Port & port );
|
|
|
|
|
|
|
|
} // namespace MIDI
|
|
|
|
|
|
|
|
#endif // __libmidi_port_h__
|