summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/midi_source.h
blob: e19956ad7a2b6077e1e6515148e85abc517fa48b (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
/*
    Copyright (C) 2006 Paul Davis 
	Written by Dave Robillard, 2006

    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 __ardour_midi_source_h__
#define __ardour_midi_source_h__

#include <string>
#include <time.h>
#include <sigc++/signal.h>
#include <glibmm/thread.h>
#include <pbd/stateful.h>
#include <pbd/xml++.h>
#include <evoral/Sequence.hpp>
#include <ardour/ardour.h>
#include <ardour/buffer.h>
#include <ardour/source.h>
#include <ardour/beats_frames_converter.h>

namespace ARDOUR {

class MidiModel;
template<typename T> class MidiRingBuffer;

/** Source for MIDI data */
class MidiSource : public Source
{
  public:
	typedef double TimeType;

	MidiSource (Session& session, std::string name);
	MidiSource (Session& session, const XMLNode&);
	virtual ~MidiSource ();
	
	/* Stub Readable interface */
	virtual nframes64_t read (Sample*, nframes64_t pos, nframes64_t cnt, int channel) const { return 0; }
	virtual nframes64_t readable_length() const { return length(); }
	virtual uint32_t    n_channels () const { return 1; }
	
	// FIXME: integrate this with the Readable::read interface somehow
	virtual nframes_t midi_read (MidiRingBuffer<nframes_t>& dst, nframes_t start, nframes_t cnt,
			nframes_t stamp_offset, nframes_t negative_stamp_offset) const;
	virtual nframes_t midi_write (MidiRingBuffer<nframes_t>& src, nframes_t cnt);

	virtual void append_event_unlocked_beats(const Evoral::Event<double>& ev) = 0;
	virtual void append_event_unlocked_frames(const Evoral::Event<nframes_t>& ev) = 0;

	virtual void mark_for_remove() = 0;
	virtual void mark_streaming_midi_write_started (NoteMode mode, nframes_t start_time);
	virtual void mark_streaming_write_started ();
	virtual void mark_streaming_write_completed ();
	
	uint64_t timeline_position () { return _timeline_position; }
	void     set_timeline_position (nframes_t when);
	
	virtual void session_saved();

	std::string captured_for() const               { return _captured_for; }
	void        set_captured_for (std::string str) { _captured_for = str; }

	uint32_t read_data_count()  const { return _read_data_count; }
	uint32_t write_data_count() const { return _write_data_count; }

	static sigc::signal<void,MidiSource*> MidiSourceCreated;
	       
	// Signal a range of recorded data is available for reading from model()
	mutable sigc::signal<void,nframes_t,nframes_t> ViewDataRangeReady;
	
	XMLNode& get_state ();
	int set_state (const XMLNode&);
	
	bool length_mutable() const { return true; }

	virtual void load_model(bool lock=true, bool force_reload=false) = 0;
	virtual void destroy_model() = 0;

	void set_note_mode(NoteMode mode);

	boost::shared_ptr<MidiModel> model() { return _model; }
	void set_model(boost::shared_ptr<MidiModel> m) { _model = m; }
	void drop_model() { _model.reset(); }

	const Evoral::TimeConverter<double, nframes_t>& time_converter() const {
		return _converter;
	}

  protected:
	virtual void flush_midi() = 0;
	
	virtual nframes_t read_unlocked (MidiRingBuffer<nframes_t>& dst, nframes_t start, nframes_t cnt,
			nframes_t stamp_offset, nframes_t negative_stamp_offset) const = 0;
	virtual nframes_t write_unlocked (MidiRingBuffer<nframes_t>& dst, nframes_t cnt) = 0;
	
	mutable Glib::Mutex _lock;
	std::string         _captured_for;
	uint64_t            _timeline_position;
	mutable uint32_t    _read_data_count;  ///< modified in read()
	mutable uint32_t    _write_data_count; ///< modified in write()
	
	BeatsFramesConverter _converter;

	boost::shared_ptr<MidiModel> _model;
	bool                         _writing;
	
	mutable Evoral::Sequence<double>::const_iterator _model_iter;
	mutable nframes_t                                _last_read_end;

  private:
	bool file_changed (std::string path);
};

}

#endif /* __ardour_midi_source_h__ */