Merged with trunk R1612.
[ardour.git] / libs / midi++2 / midi++ / nullmidi.h
1 /*
2     Copyright (C) 1998-99 Paul Barton-Davis 
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17 */
18
19 #ifndef __nullmidi_h__
20 #define __nullmidi_h__
21
22 #include <fcntl.h>
23 #include <vector>
24 #include <string>
25
26 #include <midi++/port.h>
27 #include <midi++/port_request.h>
28
29 namespace MIDI {
30
31 class Null_MidiPort : public Port 
32
33 {
34   public:
35         Null_MidiPort (PortRequest &req) 
36                 : Port (req) { 
37
38                 /* reset devname and tagname */
39                 
40                 _devname = "nullmidi";
41                 _tagname = "null";
42                 _type = Port::Null;
43                 _ok = true;
44         }
45
46         virtual ~Null_MidiPort () {};
47
48         /* Direct I/O */
49         int write (byte *msg, size_t msglen, timestamp_t timestamp) {
50                 return msglen;
51         }
52
53         int read (byte *buf, size_t max, timestamp_t timestamp) {
54                 return 0;
55         }
56         
57         virtual int selectable() const { return -1; }
58 };
59
60 } // namespace MIDI
61
62 #endif // __nullmidi_h__