/* * Copyright (C) 1998-2017 Paul Davis * Copyright (C) 2013-2016 Robin Gareus * Copyright (C) 2013 John Emmas * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __libmidi_ipmidi_port_h__ #define __libmidi_ipmidi_port_h__ #include #include #if defined(PLATFORM_WINDOWS) #include #elif defined(__FreeBSD__) || defined(__OpenBSD__) #include #include #if defined(__FreeBSD__) #include #endif #include #include #include #include #include #include #include #else #include #include #endif #include #include "pbd/xml++.h" #include "pbd/crossthread.h" #include "pbd/signals.h" #include "pbd/ringbuffer.h" #include "midi++/libmidi_visibility.h" #include "midi++/types.h" #include "midi++/parser.h" #include "midi++/port.h" namespace MIDI { class LIBMIDIPP_API IPMIDIPort : public Port { public: IPMIDIPort (int base_port = lowest_ipmidi_port_default, const std::string& ifname = std::string()); IPMIDIPort (const XMLNode&); ~IPMIDIPort (); XMLNode& get_state () const; void set_state (const XMLNode&); int write (const byte *msg, size_t msglen, timestamp_t timestamp); int read (byte *buf, size_t bufsize); void parse (samplecnt_t timestamp); int selectable () const; static const int lowest_ipmidi_port_default = 21928; private: int sockin; int sockout; struct sockaddr_in addrout; Glib::Threads::Mutex write_lock; bool open_sockets (int base_port, const std::string& ifname); void close_sockets (); void init (std::string const &, Flags); }; } // namespace MIDI #endif // __libmidi_ipmidi_port_h__