use new syntax for connecting to backend signals that enforces explicit connection...
[ardour.git] / libs / ardour / ardour / session.h
1 /*
2     Copyright (C) 2000 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_session_h__
21 #define __ardour_session_h__
22
23 #include <list>
24 #include <map>
25 #include <set>
26 #include <stack>
27 #include <string>
28 #include <vector>
29 #include <stdint.h>
30
31 #include <boost/dynamic_bitset.hpp>
32 #include <boost/scoped_ptr.hpp>
33 #include <boost/weak_ptr.hpp>
34 #include <boost/utility.hpp>
35
36 #include <glibmm/thread.h>
37
38 #include "pbd/error.h"
39 #include "pbd/rcu.h"
40 #include "pbd/statefuldestructible.h"
41 #include "pbd/signals.h"
42 #include "pbd/undo.h"
43
44 #include "midi++/mmc.h"
45 #include "midi++/types.h"
46
47 #include "ardour/ardour.h"
48 #include "ardour/click.h"
49 #include "ardour/chan_count.h"
50 #include "ardour/rc_configuration.h"
51 #include "ardour/session_configuration.h"
52 #include "ardour/session_event.h"
53 #include "ardour/location.h"
54 #include "ardour/timecode.h"
55 #include "ardour/interpolation.h"
56
57 class XMLTree;
58 class XMLNode;
59 class AEffect;
60
61 namespace MIDI {
62         class Port;
63 }
64
65 namespace PBD {
66         class Controllable;
67 }
68
69 namespace Evoral {
70         class Curve;
71 }
72
73 namespace ARDOUR {
74
75 class AudioDiskstream;
76 class AudioEngine;
77 class AudioFileSource;
78 class AudioRegion;
79 class AudioSource;
80 class AudioTrack;
81 class Auditioner;
82 class AutomationList;
83 class AuxInput;
84 class BufferSet;
85 class Bundle;
86 class Butler;
87 class ControlProtocolInfo;
88 class Diskstream;
89 class ExportHandler;
90 class ExportStatus;
91 class IO;
92 class IOProcessor;
93 class ImportStatus;
94 class MidiDiskstream;
95 class MidiRegion;
96 class MidiSource;
97 class MidiTrack;
98 class MidiControlUI;
99 class NamedSelection;
100 class Playlist;
101 class PluginInsert;
102 class Port;
103 class PortInsert;
104 class Processor;
105 class Region;
106 class Return;
107 class Route;
108 class RouteGroup;
109 class SMFSource;
110 class Send;
111 class SessionDirectory;
112 class SessionMetadata;
113 class SessionPlaylists;
114 class Slave;
115 class Source;
116 class TempoMap;
117 class VSTPlugin;
118
119 extern void setup_enum_writer ();
120
121 class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionList, public SessionEventManager
122 {
123   public:
124         enum RecordState {
125                 Disabled = 0,
126                 Enabled = 1,
127                 Recording = 2
128         };
129
130         /* creating from an XML file */
131
132         Session (AudioEngine&,
133                         const std::string& fullpath,
134                         const std::string& snapshot_name,
135                         std::string mix_template = "");
136
137         /* creating a new Session */
138
139         Session (AudioEngine&,
140                         std::string fullpath,
141                         std::string snapshot_name,
142                         AutoConnectOption input_auto_connect,
143                         AutoConnectOption output_auto_connect,
144                         uint32_t control_out_channels,
145                         uint32_t master_out_channels,
146                         uint32_t n_physical_in,
147                         uint32_t n_physical_out,
148                         nframes_t initial_length);
149
150         virtual ~Session ();
151
152         std::string path() const { return _path; }
153         std::string name() const { return _name; }
154         std::string snap_name() const { return _current_snapshot_name; }
155         std::string raid_path () const;
156         bool path_is_within_session (const std::string&);
157
158         void set_snap_name ();
159
160         bool writable() const { return _writable; }
161         void set_dirty ();
162         void set_clean ();
163         bool dirty() const { return _state_of_the_state & Dirty; }
164         void set_deletion_in_progress ();
165         void clear_deletion_in_progress ();
166         bool deletion_in_progress() const { return _state_of_the_state & Deletion; }
167         PBD::Signal0<void> DirtyChanged;
168
169         const SessionDirectory& session_directory () const { return *(_session_dir.get()); }
170
171         static PBD::Signal0<void> AutoBindingOn;
172         static PBD::Signal0<void> AutoBindingOff;
173
174         static PBD::Signal1<void,std::string> Dialog;
175
176         std::string sound_dir (bool with_path = true) const;
177         std::string peak_dir () const;
178         std::string dead_sound_dir () const;
179         std::string automation_dir () const;
180         std::string analysis_dir() const;
181
182         int ensure_subdirs ();
183
184         Glib::ustring peak_path (Glib::ustring) const;
185
186         static std::string change_source_path_by_name (std::string oldpath, std::string oldname, std::string newname, bool destructive);
187
188         std::string peak_path_from_audio_path (std::string) const;
189         std::string new_audio_source_name (const std::string&, uint32_t nchans, uint32_t chan, bool destructive);
190         std::string new_midi_source_name (const std::string&);
191         std::string new_source_path_from_name (DataType type, const std::string&);
192         RouteList new_route_from_template (uint32_t how_many, const std::string& template_path);
193
194         void process (nframes_t nframes);
195
196         BufferSet& get_silent_buffers (ChanCount count = ChanCount::ZERO);
197         BufferSet& get_scratch_buffers (ChanCount count = ChanCount::ZERO);
198         BufferSet& get_mix_buffers (ChanCount count = ChanCount::ZERO);
199
200         void add_diskstream (boost::shared_ptr<Diskstream>);
201         boost::shared_ptr<Diskstream> diskstream_by_id (const PBD::ID& id);
202         boost::shared_ptr<Diskstream> diskstream_by_name (std::string name);
203         bool have_rec_enabled_diskstream () const;
204
205         bool have_captured() const { return _have_captured; }
206
207         void refill_all_diskstream_buffers ();
208         Butler* butler() { return _butler; }
209         void butler_transport_work ();
210
211         uint32_t get_next_diskstream_id() const { return n_diskstreams(); }
212         uint32_t n_diskstreams() const;
213
214         void refresh_disk_space ();
215
216         typedef std::list<boost::shared_ptr<Diskstream> > DiskstreamList;
217
218         SerializedRCUManager<DiskstreamList>& diskstream_list() { return diskstreams; }
219
220         int load_routes (const XMLNode&, int);
221         boost::shared_ptr<RouteList> get_routes() const {
222                 return routes.reader ();
223         }
224
225         boost::shared_ptr<RouteList> get_routes_with_internal_returns() const;
226
227         boost::shared_ptr<RouteList> get_routes_with_regions_at (nframes64_t const) const;
228
229         uint32_t nroutes() const { return routes.reader()->size(); }
230         uint32_t ntracks () const;
231         uint32_t nbusses () const;
232
233         boost::shared_ptr<BundleList> bundles () {
234                 return _bundles.reader ();
235         }
236
237         struct RoutePublicOrderSorter {
238                 bool operator() (boost::shared_ptr<Route>, boost::shared_ptr<Route> b);
239         };
240
241         void sync_order_keys (std::string const &);
242
243         template<class T> void foreach_route (T *obj, void (T::*func)(Route&));
244         template<class T> void foreach_route (T *obj, void (T::*func)(boost::shared_ptr<Route>));
245         template<class T, class A> void foreach_route (T *obj, void (T::*func)(Route&, A), A arg);
246
247         boost::shared_ptr<Route> route_by_name (std::string);
248         boost::shared_ptr<Route> route_by_id (PBD::ID);
249         boost::shared_ptr<Route> route_by_remote_id (uint32_t id);
250
251         bool route_name_unique (std::string) const;
252         bool route_name_internal (std::string) const;
253
254         bool get_record_enabled() const {
255                 return (record_status () >= Enabled);
256         }
257
258         RecordState record_status() const {
259                 return (RecordState) g_atomic_int_get (&_record_status);
260         }
261
262         bool actively_recording () {
263                 return record_status() == Recording;
264         }
265
266         bool record_enabling_legal () const;
267         void maybe_enable_record ();
268         void disable_record (bool rt_context, bool force = false);
269         void step_back_from_record ();
270
271         void maybe_write_autosave ();
272
273         /* Proxy signal for region hidden changes */
274
275         PBD::Signal1<void,boost::shared_ptr<Region> > RegionHiddenChange;
276
277         /* Emitted when all i/o connections are complete */
278
279         PBD::Signal0<void> IOConnectionsComplete;
280
281         /* Record status signals */
282
283         PBD::Signal0<void> RecordStateChanged;
284
285         /* Transport mechanism signals */
286
287         PBD::Signal0<void> TransportStateChange; /* generic */
288         PBD::Signal1<void,nframes64_t> PositionChanged; /* sent after any non-sequential motion */
289         PBD::Signal0<void> DurationChanged;
290         PBD::Signal1<void,nframes64_t> Xrun;
291         PBD::Signal0<void> TransportLooped;
292
293         /** emitted when a locate has occurred */
294         PBD::Signal0<void> Located;
295
296         PBD::Signal1<void,RouteList&> RouteAdded;
297         PBD::Signal0<void> RouteGroupChanged;
298
299         void queue_event (SessionEvent*);
300
301         void request_roll_at_and_return (nframes_t start, nframes_t return_to);
302         void request_bounded_roll (nframes_t start, nframes_t end);
303         void request_stop (bool abort = false, bool clear_state = false);
304         void request_locate (nframes_t frame, bool with_roll = false);
305
306         void request_play_loop (bool yn, bool leave_rolling = false);
307         bool get_play_loop () const { return play_loop; }
308
309         nframes_t  last_transport_start() const { return _last_roll_location; }
310         void goto_end ()   { request_locate (end_location->start(), false);}
311         void goto_start () { request_locate (start_location->start(), false); }
312         void set_session_start (nframes_t start) { start_location->set_start(start); }
313         void set_session_end (nframes_t end) { end_location->set_start(end); config.set_end_marker_is_free (false); }
314         void use_rf_shuttle_speed ();
315         void allow_auto_play (bool yn);
316         void request_transport_speed (double speed);
317         void request_overwrite_buffer (Diskstream*);
318         void request_diskstream_speed (Diskstream&, double speed);
319         void request_input_change_handling ();
320
321         bool locate_pending() const { return static_cast<bool>(post_transport_work()&PostTransportLocate); }
322         bool transport_locked () const;
323
324         int wipe ();
325
326         int remove_region_from_region_list (boost::shared_ptr<Region>);
327
328         nframes_t get_maximum_extent () const;
329         nframes_t current_end_frame() const { return end_location->start(); }
330         nframes_t current_start_frame() const { return start_location->start(); }
331         /// "actual" sample rate of session, set by current audioengine rate, pullup/down etc.
332         nframes_t frame_rate() const   { return _current_frame_rate; }
333         /// "native" sample rate of session, regardless of current audioengine rate, pullup/down etc
334         nframes_t nominal_frame_rate() const   { return _nominal_frame_rate; }
335         nframes_t frames_per_hour() const { return _frames_per_hour; }
336
337         double frames_per_timecode_frame() const { return _frames_per_timecode_frame; }
338         nframes_t timecode_frames_per_hour() const { return _timecode_frames_per_hour; }
339
340         MIDI::byte get_mtc_timecode_bits() const {
341                 return mtc_timecode_bits;   /* encoding of SMTPE type for MTC */
342         }
343
344         float timecode_frames_per_second() const;
345         bool timecode_drop_frames() const;
346
347         /* Locations */
348
349         Locations *locations() { return &_locations; }
350
351         PBD::Signal1<void,Location*>    auto_loop_location_changed;
352         PBD::Signal1<void,Location*>    auto_punch_location_changed;
353         PBD::Signal0<void>              locations_modified;
354
355         void set_auto_punch_location (Location *);
356         void set_auto_loop_location (Location *);
357         int location_name(std::string& result, std::string base = std::string(""));
358
359         void reset_input_monitor_state ();
360
361         nframes_t get_block_size()        const { return current_block_size; }
362         nframes_t worst_output_latency () const { return _worst_output_latency; }
363         nframes_t worst_input_latency ()  const { return _worst_input_latency; }
364         nframes_t worst_track_latency ()  const { return _worst_track_latency; }
365
366         int save_state (std::string snapshot_name, bool pending = false);
367         int restore_state (std::string snapshot_name);
368         int save_template (std::string template_name);
369         int save_history (std::string snapshot_name = "");
370         int restore_history (std::string snapshot_name);
371         void remove_state (std::string snapshot_name);
372         void rename_state (std::string old_name, std::string new_name);
373         void remove_pending_capture_state ();
374
375         static int rename_template (std::string old_name, std::string new_name);
376         static int delete_template (std::string name);
377
378         PBD::Signal1<void,std::string> StateSaved;
379         PBD::Signal0<void> StateReady;
380
381         std::vector<std::string*>* possible_states() const;
382         static std::vector<std::string*>* possible_states (std::string path);
383
384         XMLNode& get_state();
385         int      set_state(const XMLNode& node, int version); // not idempotent
386         XMLNode& get_template();
387
388         /// The instant xml file is written to the session directory
389         void add_instant_xml (XMLNode&, bool write_to_config = true);
390         XMLNode* instant_xml (const std::string& str);
391
392         enum StateOfTheState {
393                 Clean = 0x0,
394                 Dirty = 0x1,
395                 CannotSave = 0x2,
396                 Deletion = 0x4,
397                 InitialConnecting = 0x8,
398                 Loading = 0x10,
399                 InCleanup = 0x20
400         };
401
402         StateOfTheState state_of_the_state() const { return _state_of_the_state; }
403
404         void add_route_group (RouteGroup *);
405         void remove_route_group (RouteGroup&);
406
407         RouteGroup *route_group_by_name (std::string);
408
409         PBD::Signal1<void,RouteGroup*> route_group_added;
410         PBD::Signal0<void>             route_group_removed;
411
412         void foreach_route_group (boost::function<void(RouteGroup*)> f) {
413                 for (std::list<RouteGroup *>::iterator i = _route_groups.begin(); i != _route_groups.end(); i++) {
414                         f (*i);
415                 }
416         }
417
418         /* fundamental operations. duh. */
419
420         std::list<boost::shared_ptr<AudioTrack> > new_audio_track (
421                 int input_channels, int output_channels, TrackMode mode = Normal, RouteGroup* route_group = 0, uint32_t how_many = 1
422                 );
423
424         RouteList new_audio_route (bool aux, int input_channels, int output_channels, RouteGroup* route_group, uint32_t how_many);
425
426         std::list<boost::shared_ptr<MidiTrack> > new_midi_track (
427                 TrackMode mode = Normal, RouteGroup* route_group = 0, uint32_t how_many = 1
428                 );
429
430         void   remove_route (boost::shared_ptr<Route>);
431         void   resort_routes ();
432         void   resort_routes_using (boost::shared_ptr<RouteList>);
433
434         void   set_remote_control_ids();
435
436         AudioEngine & engine() { return _engine; }
437         AudioEngine const & engine () const { return _engine; }
438
439         int32_t  max_level;
440         int32_t  min_level;
441
442         /* Time */
443
444         nframes64_t transport_frame () const {return _transport_frame; }
445         nframes64_t audible_frame () const;
446         nframes64_t requested_return_frame() const { return _requested_return_frame; }
447
448         enum PullupFormat {
449                 pullup_Plus4Plus1,
450                 pullup_Plus4,
451                 pullup_Plus4Minus1,
452                 pullup_Plus1,
453                 pullup_None,
454                 pullup_Minus1,
455                 pullup_Minus4Plus1,
456                 pullup_Minus4,
457                 pullup_Minus4Minus1
458         };
459
460         void sync_time_vars();
461
462         void bbt_time (nframes_t when, BBT_Time&);
463         void timecode_to_sample(Timecode::Time& timecode, nframes_t& sample, bool use_offset, bool use_subframes) const;
464         void sample_to_timecode(nframes_t sample, Timecode::Time& timecode, bool use_offset, bool use_subframes) const;
465         void timecode_time (Timecode::Time &);
466         void timecode_time (nframes_t when, Timecode::Time&);
467         void timecode_time_subframes (nframes_t when, Timecode::Time&);
468
469         void timecode_duration (nframes_t, Timecode::Time&) const;
470         void timecode_duration_string (char *, nframes_t) const;
471
472         void           set_timecode_offset (nframes_t);
473         nframes_t      timecode_offset () const { return _timecode_offset; }
474         void           set_timecode_offset_negative (bool);
475         bool           timecode_offset_negative () const { return _timecode_offset_negative; }
476
477         nframes_t convert_to_frames_at (nframes_t position, AnyTime const &);
478
479         static PBD::Signal0<void> StartTimeChanged;
480         static PBD::Signal0<void> EndTimeChanged;
481         static PBD::Signal0<void> TimecodeOffsetChanged;
482
483         std::vector<SyncSource> get_available_sync_options() const;
484         void   request_sync_source (Slave*);
485         bool   synced_to_jack() const { return config.get_external_sync() && config.get_sync_source() == JACK; }
486
487         double transport_speed() const { return _transport_speed; }
488         bool   transport_stopped() const { return _transport_speed == 0.0f; }
489         bool   transport_rolling() const { return _transport_speed != 0.0f; }
490
491         void set_silent (bool yn);
492         bool silent () { return _silent; }
493
494         int jack_slave_sync (nframes_t);
495
496         TempoMap& tempo_map() { return *_tempo_map; }
497
498         /// signals the current transport position in frames, bbt and timecode time (in that order)
499         PBD::Signal3<void,const nframes_t&, const BBT_Time&, const Timecode::Time&> tick;
500
501         /* region info  */
502
503         void add_regions (std::vector<boost::shared_ptr<Region> >&);
504
505         PBD::Signal1<void,boost::weak_ptr<Region> >              RegionAdded;
506         PBD::Signal1<void,std::vector<boost::weak_ptr<Region> >&> RegionsAdded;
507         PBD::Signal1<void,boost::weak_ptr<Region> >              RegionRemoved;
508
509         int region_name (std::string& result, std::string base = std::string(""), bool newlevel = false);
510         std::string new_region_name (std::string);
511         std::string path_from_region_name (DataType type, std::string name, std::string identifier);
512
513         boost::shared_ptr<Region> find_whole_file_parent (boost::shared_ptr<Region const>);
514
515         boost::shared_ptr<Region>      XMLRegionFactory (const XMLNode&, bool full);
516         boost::shared_ptr<AudioRegion> XMLAudioRegionFactory (const XMLNode&, bool full);
517         boost::shared_ptr<MidiRegion>  XMLMidiRegionFactory (const XMLNode&, bool full);
518
519         template<class T> void foreach_region (T *obj, void (T::*func)(boost::shared_ptr<Region>));
520
521         /* source management */
522
523         void import_audiofiles (ImportStatus&);
524         bool sample_rate_convert (ImportStatus&, std::string infile, std::string& outfile);
525         std::string build_tmp_convert_name (std::string file);
526
527         boost::shared_ptr<ExportHandler> get_export_handler ();
528         boost::shared_ptr<ExportStatus> get_export_status ();
529
530         int  start_audio_export (nframes_t position, bool realtime);
531
532         PBD::Signal1<int,nframes_t> ProcessExport;
533         PBD::Signal0<void> ExportReadFinished;
534         static PBD::Signal2<void,std::string, std::string> Exported;
535
536         void add_source (boost::shared_ptr<Source>);
537         void remove_source (boost::weak_ptr<Source>);
538
539         int  cleanup_sources (CleanupReport&);
540         int  cleanup_trash_sources (CleanupReport&);
541
542         int destroy_region (boost::shared_ptr<Region>);
543         int destroy_regions (std::list<boost::shared_ptr<Region> >);
544
545         int remove_last_capture ();
546
547         /** handlers should return -1 for "stop cleanup",
548             0 for "yes, delete this playlist",
549             1 for "no, don't delete this playlist".
550         */
551         PBD::Signal1<void,boost::shared_ptr<Playlist> >  AskAboutPlaylistDeletion;
552
553         /** handlers should return 0 for "ignore the rate mismatch",
554             !0 for "do not use this session"
555         */
556         static PBD::Signal2<int,nframes_t, nframes_t> AskAboutSampleRateMismatch;
557
558         /** handlers should return !0 for use pending state, 0 for ignore it.
559         */
560         static PBD::Signal0<int> AskAboutPendingState;
561
562         boost::shared_ptr<AudioFileSource> create_audio_source_for_session (ARDOUR::AudioDiskstream&, uint32_t which_channel, bool destructive);
563
564         boost::shared_ptr<MidiSource> create_midi_source_for_session (ARDOUR::MidiDiskstream&);
565
566         boost::shared_ptr<Source> source_by_id (const PBD::ID&);
567         boost::shared_ptr<Source> source_by_path_and_channel (const Glib::ustring&, uint16_t);
568
569         void add_playlist (boost::shared_ptr<Playlist>, bool unused = false);
570
571         /* named selections */
572
573         NamedSelection* named_selection_by_name (std::string name);
574         void add_named_selection (NamedSelection *);
575         void remove_named_selection (NamedSelection *);
576
577         template<class T> void foreach_named_selection (T& obj, void (T::*func)(NamedSelection&));
578         PBD::Signal0<void> NamedSelectionAdded;
579         PBD::Signal0<void> NamedSelectionRemoved;
580
581         /* Curves and AutomationLists (TODO when they go away) */
582         void add_automation_list(AutomationList*);
583
584         /* fade curves */
585
586         float get_default_fade_length () const { return default_fade_msecs; }
587         float get_default_fade_steepness () const { return default_fade_steepness; }
588         void set_default_fade (float steepness, float msecs);
589
590         /* auditioning */
591
592         boost::shared_ptr<Auditioner> the_auditioner() { return auditioner; }
593         void audition_playlist ();
594         void audition_region (boost::shared_ptr<Region>);
595         void cancel_audition ();
596         bool is_auditioning () const;
597
598         PBD::Signal1<void,bool> AuditionActive;
599
600         /* flattening stuff */
601
602         boost::shared_ptr<Region> write_one_track (AudioTrack&, nframes_t start, nframes_t end,
603                         bool overwrite, std::vector<boost::shared_ptr<Source> >&, InterThreadInfo& wot,
604                         bool enable_processing = true);
605         int freeze (InterThreadInfo&);
606
607         /* session-wide solo/mute/rec-enable */
608
609         bool soloing() const { return _non_soloed_outs_muted; }
610         bool listening() const { return _listen_cnt > 0; }
611
612         static const SessionEvent::RTeventCallback rt_cleanup;
613
614         void set_solo (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
615         void set_just_one_solo (boost::shared_ptr<Route>, bool, SessionEvent::RTeventCallback after = rt_cleanup);
616         void set_mute (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
617         void set_listen (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
618         void set_record_enable (boost::shared_ptr<RouteList>, bool, SessionEvent::RTeventCallback after = rt_cleanup, bool group_override = false);
619
620         PBD::Signal1<void,bool> SoloActive;
621         PBD::Signal0<void> SoloChanged;
622         
623
624         /* control/master out */
625
626         boost::shared_ptr<Route> control_out() const { return _control_out; }
627         boost::shared_ptr<Route> master_out() const { return _master_out; }
628
629         void globally_add_internal_sends (boost::shared_ptr<Route> dest, Placement p);
630         void globally_set_send_gains_from_track (boost::shared_ptr<Route> dest);
631         void globally_set_send_gains_to_zero (boost::shared_ptr<Route> dest);
632         void globally_set_send_gains_to_unity (boost::shared_ptr<Route> dest);
633         void add_internal_sends (boost::shared_ptr<Route> dest, Placement p, boost::shared_ptr<RouteList> senders);
634
635         static void set_disable_all_loaded_plugins (bool yn) {
636                 _disable_all_loaded_plugins = yn;
637         }
638         static bool get_disable_all_loaded_plugins() {
639                 return _disable_all_loaded_plugins;
640         }
641
642         uint32_t next_send_id();
643         uint32_t next_return_id();
644         uint32_t next_insert_id();
645         void mark_send_id (uint32_t);
646         void mark_return_id (uint32_t);
647         void mark_insert_id (uint32_t);
648
649         /* s/w "RAID" management */
650
651         nframes_t available_capture_duration();
652
653         /* I/O bundles */
654
655         void add_bundle (boost::shared_ptr<Bundle>);
656         void remove_bundle (boost::shared_ptr<Bundle>);
657         boost::shared_ptr<Bundle> bundle_by_name (std::string) const;
658
659         PBD::Signal1<void,boost::shared_ptr<Bundle> > BundleAdded;
660         PBD::Signal1<void,boost::shared_ptr<Bundle> > BundleRemoved;
661
662         /* MIDI control */
663
664         void midi_panic(void);
665         int set_mtc_port (std::string port_tag);
666         int set_mmc_port (std::string port_tag);
667         int set_midi_port (std::string port_tag);
668         int set_midi_clock_port (std::string port_tag);
669         MIDI::Port *mtc_port() const { return _mtc_port; }
670         MIDI::Port *mmc_port() const { return _mmc_port; }
671         MIDI::Port *midi_port() const { return _midi_port; }
672         MIDI::Port *midi_clock_port() const { return _midi_clock_port; }
673
674         PBD::Signal0<void> MTC_PortChanged;
675         PBD::Signal0<void> MMC_PortChanged;
676         PBD::Signal0<void> MIDI_PortChanged;
677         PBD::Signal0<void> MIDIClock_PortChanged;
678
679         void set_trace_midi_input (bool, MIDI::Port* port = 0);
680         void set_trace_midi_output (bool, MIDI::Port* port = 0);
681
682         bool get_trace_midi_input(MIDI::Port *port = 0);
683         bool get_trace_midi_output(MIDI::Port *port = 0);
684
685         void set_mmc_receive_device_id (uint32_t id);
686         void set_mmc_send_device_id (uint32_t id);
687
688         /* Scrubbing */
689
690         void start_scrub (nframes_t where);
691         void stop_scrub ();
692         void set_scrub_speed (float);
693         nframes_t scrub_buffer_size() const;
694         PBD::Signal0<void> ScrubReady;
695
696         /* History (for editors, mixers, UIs etc.) */
697
698         /** Undo some transactions.
699          * @param n Number of transactions to undo.
700          */
701         void undo (uint32_t n) {
702                 _history.undo (n);
703         }
704
705         void redo (uint32_t n) {
706                 _history.redo (n);
707         }
708
709         UndoHistory& history() { return _history; }
710
711         uint32_t undo_depth() const { return _history.undo_depth(); }
712         uint32_t redo_depth() const { return _history.redo_depth(); }
713         std::string next_undo() const { return _history.next_undo(); }
714         std::string next_redo() const { return _history.next_redo(); }
715
716         void begin_reversible_command (const std::string& cmd_name);
717         void commit_reversible_command (Command* cmd = 0);
718
719         UndoTransaction* start_reversible_command (const std::string& cmd_name);
720         void finish_reversible_command (UndoTransaction&);
721
722         void add_command (Command *const cmd) {
723                 assert(!_current_trans.empty ());
724                 _current_trans.top()->add_command (cmd);
725         }
726
727         std::map<PBD::ID,PBD::StatefulDestructible*> registry;
728
729         // these commands are implemented in libs/ardour/session_command.cc
730         Command* memento_command_factory(XMLNode* n);
731         void register_with_memento_command_factory(PBD::ID, PBD::StatefulDestructible*);
732
733         /* clicking */
734
735         boost::shared_ptr<IO> click_io() { return _click_io; }
736
737         /* disk, buffer loads */
738
739         uint32_t playback_load ();
740         uint32_t capture_load ();
741         uint32_t playback_load_min ();
742         uint32_t capture_load_min ();
743
744         void reset_playback_load_min ();
745         void reset_capture_load_min ();
746
747         /* ranges */
748
749         void request_play_range (std::list<AudioRange>*, bool leave_rolling = false);
750         bool get_play_range () const { return _play_range; }
751
752         /* buffers for gain and pan */
753
754         gain_t* gain_automation_buffer () const { return _gain_automation_buffer; }
755         pan_t** pan_automation_buffer () const  { return _pan_automation_buffer; }
756
757         void ensure_buffer_set (BufferSet& buffers, const ChanCount& howmany);
758
759         /* VST support */
760
761         static long vst_callback (AEffect* effect,
762                         long opcode,
763                         long index,
764                         long value,
765                         void* ptr,
766                         float opt);
767
768         static PBD::Signal0<void> SendFeedback;
769
770         /* Controllables */
771
772         boost::shared_ptr<PBD::Controllable> controllable_by_id (const PBD::ID&);
773
774         void add_controllable (boost::shared_ptr<PBD::Controllable>);
775         void remove_controllable (PBD::Controllable*);
776
777         SessionMetadata & metadata () { return *_metadata; }
778
779         SessionConfiguration config;
780
781         bool exporting () const {
782                 return _exporting;
783         }
784
785         /* this is a private enum, but setup_enum_writer() needs it,
786            and i can't find a way to give that function
787            friend access. sigh.
788         */
789
790         enum PostTransportWork {
791                 PostTransportStop               = 0x1,
792                 PostTransportDisableRecord      = 0x2,
793                 PostTransportPosition           = 0x8,
794                 PostTransportDidRecord          = 0x20,
795                 PostTransportDuration           = 0x40,
796                 PostTransportLocate             = 0x80,
797                 PostTransportRoll               = 0x200,
798                 PostTransportAbort              = 0x800,
799                 PostTransportOverWrite          = 0x1000,
800                 PostTransportSpeed              = 0x2000,
801                 PostTransportAudition           = 0x4000,
802                 PostTransportScrub              = 0x8000,
803                 PostTransportReverse            = 0x10000,
804                 PostTransportInputChange        = 0x20000,
805                 PostTransportCurveRealloc       = 0x40000,
806                 PostTransportClearSubstate      = 0x80000
807         };
808
809         enum SlaveState {
810                 Stopped,
811                 Waiting,
812                 Running
813         };
814         
815         SlaveState slave_state() const { return _slave_state; }
816
817         boost::shared_ptr<SessionPlaylists> playlists;
818
819   protected:
820         friend class AudioEngine;
821         void set_block_size (nframes_t nframes);
822         void set_frame_rate (nframes_t nframes);
823
824   protected:
825         friend class Route;
826         void schedule_curve_reallocation ();
827         void update_latency_compensation (bool, bool);
828
829   private:
830         int  create (bool& new_session, const std::string& mix_template, nframes_t initial_length);
831         void destroy ();
832
833         nframes_t compute_initial_length ();
834
835         enum SubState {
836                 PendingDeclickIn   = 0x1,
837                 PendingDeclickOut  = 0x2,
838                 StopPendingCapture = 0x4,
839                 AutoReturning      = 0x10,
840                 PendingLocate      = 0x20,
841                 PendingSetLoop     = 0x40
842         };
843
844         /* stuff used in process() should be close together to
845            maximise cache hits
846         */
847
848         typedef void (Session::*process_function_type)(nframes_t);
849
850         AudioEngine&            _engine;
851         mutable gint             processing_prohibited;
852         process_function_type    process_function;
853         process_function_type    last_process_function;
854         bool                     waiting_for_sync_offset;
855         nframes_t               _base_frame_rate;
856         nframes_t               _current_frame_rate;  //this includes video pullup offset
857         nframes_t               _nominal_frame_rate;  //ignores audioengine setting, "native" SR
858         int                      transport_sub_state;
859         mutable gint            _record_status;
860         volatile nframes64_t    _transport_frame;
861         Location*                end_location;
862         Location*                start_location;
863         Slave*                  _slave;
864         bool                    _silent;
865
866     // varispeed playback
867         volatile double             _transport_speed;
868         double                      _last_transport_speed;
869         double                      _target_transport_speed;
870         CubicInterpolation          interpolation;
871
872         bool                     auto_play_legal;
873         nframes64_t             _last_slave_transport_frame;
874         nframes_t                maximum_output_latency;
875         volatile nframes64_t    _requested_return_frame;
876         BufferSet*              _scratch_buffers;
877         BufferSet*              _silent_buffers;
878         BufferSet*              _mix_buffers;
879         nframes_t                current_block_size;
880         nframes_t               _worst_output_latency;
881         nframes_t               _worst_input_latency;
882         nframes_t               _worst_track_latency;
883         bool                    _have_captured;
884         float                   _meter_hold;
885         float                   _meter_falloff;
886         bool                    _non_soloed_outs_muted;
887         uint32_t                _listen_cnt;
888         bool                    _writable;
889         bool                    _was_seamless;
890
891         void set_worst_io_latencies ();
892         void set_worst_io_latencies_x (IOChange, void *) {
893                 set_worst_io_latencies ();
894         }
895
896         void update_latency_compensation_proxy (void* ignored);
897
898         void ensure_buffers (ChanCount howmany);
899
900         void process_scrub          (nframes_t);
901         void process_without_events (nframes_t);
902         void process_with_events    (nframes_t);
903         void process_audition       (nframes_t);
904         void process_export         (nframes_t);
905         int  process_export_fw      (nframes_t);
906
907         void block_processing() { g_atomic_int_set (&processing_prohibited, 1); }
908         void unblock_processing() { g_atomic_int_set (&processing_prohibited, 0); }
909         bool processing_blocked() const { return g_atomic_int_get (&processing_prohibited); }
910
911         /* slave tracking */
912
913         static const int delta_accumulator_size = 25;
914         int delta_accumulator_cnt;
915         long delta_accumulator[delta_accumulator_size];
916         long average_slave_delta;
917         int  average_dir;
918         bool have_first_delta_accumulator;
919
920         SlaveState _slave_state;
921         nframes_t slave_wait_end;
922
923         void reset_slave_state ();
924         bool follow_slave (nframes_t);
925         void calculate_moving_average_of_slave_delta(int dir, nframes_t this_delta);
926         void track_slave_state(float slave_speed, nframes_t slave_transport_frame, nframes_t this_delta);
927         void follow_slave_silently(nframes_t nframes, float slave_speed);
928
929         void switch_to_sync_source (SyncSource); /* !RT context */
930         void drop_sync_source ();  /* !RT context */
931         void use_sync_source (Slave*); /* RT context */
932
933         bool post_export_sync;
934         nframes_t post_export_position;
935
936         bool _exporting;
937         bool _exporting_realtime;
938
939         boost::shared_ptr<ExportHandler> export_handler;
940         boost::shared_ptr<ExportStatus>  export_status;
941
942         int  pre_export ();
943         int  stop_audio_export ();
944         void finalize_audio_export ();
945
946         PBD::ScopedConnection export_freewheel_connection;
947
948         void prepare_diskstreams ();
949         void commit_diskstreams (nframes_t, bool& session_requires_butler);
950         int  process_routes (nframes_t);
951         int  silent_process_routes (nframes_t);
952
953         bool get_rec_monitors_input () {
954                 if (actively_recording()) {
955                         return true;
956                 } else {
957                         if (config.get_auto_input()) {
958                                 return false;
959                         } else {
960                                 return true;
961                         }
962                 }
963         }
964
965         int get_transport_declick_required () {
966                 if (transport_sub_state & PendingDeclickIn) {
967                         transport_sub_state &= ~PendingDeclickIn;
968                         return 1;
969                 } else if (transport_sub_state & PendingDeclickOut) {
970                         return -1;
971                 } else {
972                         return 0;
973                 }
974         }
975
976         bool maybe_stop (nframes_t limit);
977         bool maybe_sync_start (nframes_t&);
978
979         void check_declick_out ();
980
981         MIDI::MachineControl*    mmc;
982         MIDI::Port*             _mmc_port;
983         MIDI::Port*             _mtc_port;
984         MIDI::Port*             _midi_port;
985         MIDI::Port*             _midi_clock_port;
986         std::string             _path;
987         std::string             _name;
988         bool                     session_send_mmc;
989         bool                     session_send_mtc;
990         bool                     session_midi_feedback;
991         bool                     play_loop;
992         bool                     loop_changing;
993         nframes_t                last_loopend;
994
995         boost::scoped_ptr<SessionDirectory> _session_dir;
996
997         void hookup_io ();
998         void when_engine_running ();
999         void graph_reordered ();
1000
1001         std::string _current_snapshot_name;
1002
1003         XMLTree*         state_tree;
1004         bool             state_was_pending;
1005         StateOfTheState _state_of_the_state;
1006
1007         void     auto_save();
1008         int      load_options (const XMLNode&);
1009         int      load_state (std::string snapshot_name);
1010
1011         nframes_t _last_roll_location;
1012         nframes_t _last_record_location;
1013
1014         bool              pending_locate_roll;
1015         nframes_t         pending_locate_frame;
1016         bool              pending_locate_flush;
1017         bool              pending_abort;
1018         bool              pending_auto_loop;
1019
1020         Butler* _butler;
1021
1022 #if 0 // these should be here, see comments in their other location above
1023         enum PostTransportWork {
1024                 PostTransportStop               = 0x1,
1025                 PostTransportDisableRecord      = 0x2,
1026                 PostTransportPosition           = 0x8,
1027                 PostTransportDidRecord          = 0x20,
1028                 PostTransportDuration           = 0x40,
1029                 PostTransportLocate             = 0x80,
1030                 PostTransportRoll               = 0x200,
1031                 PostTransportAbort              = 0x800,
1032                 PostTransportOverWrite          = 0x1000,
1033                 PostTransportSpeed              = 0x2000,
1034                 PostTransportAudition           = 0x4000,
1035                 PostTransportScrub              = 0x8000,
1036                 PostTransportReverse            = 0x10000,
1037                 PostTransportInputChange        = 0x20000,
1038                 PostTransportCurveRealloc       = 0x40000,
1039                 PostTransportClearSubstate      = 0x80000
1040         };
1041 #endif
1042         static const PostTransportWork ProcessCannotProceedMask =
1043                 PostTransportWork (
1044                                 PostTransportInputChange|
1045                                 PostTransportSpeed|
1046                                 PostTransportReverse|
1047                                 PostTransportCurveRealloc|
1048                                 PostTransportScrub|
1049                                 PostTransportAudition|
1050                                 PostTransportLocate|
1051                                 PostTransportStop|
1052                                 PostTransportClearSubstate);
1053
1054         gint _post_transport_work; /* accessed only atomic ops */
1055         PostTransportWork post_transport_work() const        { return (PostTransportWork) g_atomic_int_get (&_post_transport_work); }
1056         void set_post_transport_work (PostTransportWork ptw) { g_atomic_int_set (&_post_transport_work, (gint) ptw); }
1057         void add_post_transport_work (PostTransportWork ptw);
1058
1059         uint32_t    cumulative_rf_motion;
1060         uint32_t    rf_scale;
1061
1062         void set_rf_speed (float speed);
1063         void reset_rf_scale (nframes_t frames_moved);
1064
1065         Locations        _locations;
1066         void              locations_changed ();
1067         void              locations_added (Location*);
1068         void              handle_locations_changed (Locations::LocationList&);
1069
1070         PBD::ScopedConnectionList punch_connections;
1071         void             auto_punch_start_changed (Location *);
1072         void             auto_punch_end_changed (Location *);
1073         void             auto_punch_changed (Location *);
1074
1075         PBD::ScopedConnectionList loop_connections;
1076         void             auto_loop_changed (Location *);
1077
1078         void first_stage_init (std::string path, std::string snapshot_name);
1079         int  second_stage_init (bool new_tracks);
1080         void find_current_end ();
1081         void remove_empty_sounds ();
1082
1083         void setup_midi_control ();
1084         int  midi_read (MIDI::Port *);
1085
1086         void enable_record ();
1087
1088         void increment_transport_position (uint32_t val) {
1089                 if (max_frames - val < _transport_frame) {
1090                         _transport_frame = max_frames;
1091                 } else {
1092                         _transport_frame += val;
1093                 }
1094         }
1095
1096         void decrement_transport_position (uint32_t val) {
1097                 if (val < _transport_frame) {
1098                         _transport_frame -= val;
1099                 } else {
1100                         _transport_frame = 0;
1101                 }
1102         }
1103
1104         void post_transport_motion ();
1105         static void *session_loader_thread (void *arg);
1106
1107         void *do_work();
1108
1109         /* SessionEventManager interface */
1110
1111         void process_event (SessionEvent*);
1112         void set_next_event ();
1113         void cleanup_event (SessionEvent*,int);
1114
1115         /* MIDI Machine Control */
1116
1117         void deliver_mmc (MIDI::MachineControl::Command, nframes_t);
1118
1119         void spp_start (MIDI::Parser&, nframes_t timestamp);
1120         void spp_continue (MIDI::Parser&, nframes_t timestamp);
1121         void spp_stop (MIDI::Parser&, nframes_t timestamp);
1122
1123         void mmc_deferred_play (MIDI::MachineControl &);
1124         void mmc_stop (MIDI::MachineControl &);
1125         void mmc_step (MIDI::MachineControl &, int);
1126         void mmc_pause (MIDI::MachineControl &);
1127         void mmc_record_pause (MIDI::MachineControl &);
1128         void mmc_record_strobe (MIDI::MachineControl &);
1129         void mmc_record_exit (MIDI::MachineControl &);
1130         void mmc_track_record_status (MIDI::MachineControl &, uint32_t track, bool enabled);
1131         void mmc_fast_forward (MIDI::MachineControl &);
1132         void mmc_rewind (MIDI::MachineControl &);
1133         void mmc_locate (MIDI::MachineControl &, const MIDI::byte *);
1134         void mmc_shuttle (MIDI::MachineControl &mmc, float speed, bool forw);
1135         void mmc_record_enable (MIDI::MachineControl &mmc, size_t track, bool enabled);
1136
1137         struct timeval last_mmc_step;
1138         double step_speed;
1139
1140         typedef boost::function<bool()> MidiTimeoutCallback;
1141         typedef std::list<MidiTimeoutCallback> MidiTimeoutList;
1142
1143         MidiTimeoutList midi_timeouts;
1144         bool mmc_step_timeout ();
1145
1146         MIDI::byte mmc_buffer[32];
1147         MIDI::byte mtc_msg[16];
1148         MIDI::byte mtc_timecode_bits;   /* encoding of SMTPE type for MTC */
1149         MIDI::byte midi_msg[16];
1150         nframes_t  outbound_mtc_timecode_frame;
1151         Timecode::Time transmitting_timecode_time;
1152         int next_quarter_frame_to_send;
1153
1154         double _frames_per_timecode_frame; /* has to be floating point because of drop frame */
1155         nframes_t _frames_per_hour;
1156         nframes_t _timecode_frames_per_hour;
1157         nframes_t _timecode_offset;
1158         bool _timecode_offset_negative;
1159
1160         /* cache the most-recently requested time conversions. This helps when we
1161          * have multiple clocks showing the same time (e.g. the transport frame) */
1162         bool           last_timecode_valid;
1163         nframes_t last_timecode_when;
1164         Timecode::Time    last_timecode;
1165
1166         bool _send_timecode_update; ///< Flag to send a full frame (Timecode) MTC message this cycle
1167
1168         int send_full_time_code(nframes_t nframes);
1169         int send_midi_time_code_for_cycle(nframes_t nframes);
1170
1171         nframes_t adjust_apparent_position (nframes_t frames);
1172
1173         void reset_record_status ();
1174
1175         int no_roll (nframes_t nframes);
1176         int fail_roll (nframes_t nframes);
1177
1178         bool non_realtime_work_pending() const { return static_cast<bool>(post_transport_work()); }
1179         bool process_can_proceed() const { return !(post_transport_work() & ProcessCannotProceedMask); }
1180
1181         MidiControlUI* midi_control_ui;
1182
1183         int           start_midi_thread ();
1184         void          terminate_midi_thread ();
1185
1186         int           use_config_midi_ports ();
1187
1188         void set_play_loop (bool yn);
1189         void unset_play_loop ();
1190         void overwrite_some_buffers (Diskstream*);
1191         void flush_all_inserts ();
1192         int  micro_locate (nframes_t distance);
1193         void locate (nframes64_t, bool with_roll, bool with_flush, bool with_loop=false, bool force=false);
1194         void start_locate (nframes64_t, bool with_roll, bool with_flush, bool with_loop=false, bool force=false);
1195         void force_locate (nframes64_t frame, bool with_roll = false);
1196         void set_diskstream_speed (Diskstream*, double speed);
1197         void set_transport_speed (double speed, bool abort = false, bool clear_state = false);
1198         void stop_transport (bool abort = false, bool clear_state = false);
1199         void start_transport ();
1200         void realtime_stop (bool abort, bool clear_state);
1201         void non_realtime_start_scrub ();
1202         void non_realtime_set_speed ();
1203         void non_realtime_locate ();
1204         void non_realtime_stop (bool abort, int entry_request_count, bool& finished);
1205         void non_realtime_overwrite (int entry_request_count, bool& finished);
1206         void post_transport ();
1207         void engine_halted ();
1208         void xrun_recovery ();
1209
1210         TempoMap    *_tempo_map;
1211         void          tempo_map_changed (Change);
1212
1213         /* edit/mix groups */
1214
1215         int load_route_groups (const XMLNode&, int);
1216
1217         std::list<RouteGroup *> _route_groups;
1218
1219         /* disk-streams */
1220
1221         SerializedRCUManager<DiskstreamList>  diskstreams;
1222
1223         int load_diskstreams (const XMLNode&);
1224
1225         /* routes stuff */
1226
1227         SerializedRCUManager<RouteList>  routes;
1228
1229         void add_routes (RouteList&, bool save);
1230         uint32_t destructive_index;
1231
1232         boost::shared_ptr<Route> XMLRouteFactory (const XMLNode&, int);
1233
1234         void route_processors_changed (RouteProcessorChange);
1235
1236         /* mixer stuff */
1237
1238         bool solo_update_disabled;
1239
1240         void route_listen_changed (void *src, boost::weak_ptr<Route>);
1241         void route_mute_changed (void *src);
1242         void route_solo_changed (void *src, boost::weak_ptr<Route>);
1243         void update_route_solo_state (boost::shared_ptr<RouteList> r = boost::shared_ptr<RouteList>());
1244
1245         void listen_position_changed ();
1246         void solo_control_mode_changed ();
1247
1248         /* REGION MANAGEMENT */
1249
1250         std::map<std::string,uint32_t> region_name_map;
1251         void update_region_name_map (boost::shared_ptr<Region>);
1252
1253         mutable Glib::Mutex region_lock;
1254         typedef std::map<PBD::ID,boost::shared_ptr<Region> > RegionList;
1255         RegionList regions;
1256
1257         void add_region (boost::shared_ptr<Region>);
1258         void region_changed (Change, boost::weak_ptr<Region>);
1259         void remove_region (boost::weak_ptr<Region>);
1260
1261         int load_regions (const XMLNode& node);
1262
1263         void route_group_changed ();
1264
1265         /* SOURCES */
1266
1267         mutable Glib::Mutex source_lock;
1268         typedef std::map<PBD::ID,boost::shared_ptr<Source> > SourceMap;
1269
1270         SourceMap sources;
1271
1272   public:
1273         SourceMap get_sources() { return sources; }
1274
1275   private:
1276         int load_sources (const XMLNode& node);
1277         XMLNode& get_sources_as_xml ();
1278
1279         boost::shared_ptr<Source> XMLSourceFactory (const XMLNode&);
1280
1281         /* PLAYLISTS */
1282
1283         void remove_playlist (boost::weak_ptr<Playlist>);
1284         void playlist_length_changed ();
1285         void diskstream_playlist_changed (boost::weak_ptr<Diskstream>);
1286
1287         /* NAMED SELECTIONS */
1288
1289         mutable Glib::Mutex named_selection_lock;
1290         typedef std::set<NamedSelection *> NamedSelectionList;
1291         NamedSelectionList named_selections;
1292
1293         int load_named_selections (const XMLNode&);
1294
1295         NamedSelection *named_selection_factory (std::string name);
1296         NamedSelection *XMLNamedSelectionFactory (const XMLNode&);
1297
1298         /* CURVES and AUTOMATION LISTS */
1299         std::map<PBD::ID, AutomationList*> automation_lists;
1300
1301         /* DEFAULT FADE CURVES */
1302
1303         float default_fade_steepness;
1304         float default_fade_msecs;
1305
1306         /* AUDITIONING */
1307
1308         boost::shared_ptr<Auditioner> auditioner;
1309         void set_audition (boost::shared_ptr<Region>);
1310         void non_realtime_set_audition ();
1311         boost::shared_ptr<Region> pending_audition_region;
1312
1313         /* EXPORT */
1314
1315         /* FLATTEN */
1316
1317         int flatten_one_track (AudioTrack&, nframes_t start, nframes_t cnt);
1318
1319         /* INSERT AND SEND MANAGEMENT */
1320
1321         boost::dynamic_bitset<uint32_t> send_bitset;
1322         boost::dynamic_bitset<uint32_t> return_bitset;
1323         boost::dynamic_bitset<uint32_t> insert_bitset;
1324
1325         void add_processor (Processor *);
1326         void remove_processor (Processor *);
1327
1328         /* S/W RAID */
1329
1330         struct space_and_path {
1331                 uint32_t blocks; /* 4kB blocks */
1332                 std::string path;
1333
1334                 space_and_path() {
1335                         blocks = 0;
1336                 }
1337         };
1338
1339         struct space_and_path_ascending_cmp {
1340                 bool operator() (space_and_path a, space_and_path b) {
1341                         return a.blocks > b.blocks;
1342                 }
1343         };
1344
1345         void setup_raid_path (std::string path);
1346
1347         std::vector<space_and_path> session_dirs;
1348         std::vector<space_and_path>::iterator last_rr_session_dir;
1349         uint32_t _total_free_4k_blocks;
1350         Glib::Mutex space_lock;
1351
1352         std::string get_best_session_directory_for_new_source ();
1353
1354         mutable gint _playback_load;
1355         mutable gint _capture_load;
1356         mutable gint _playback_load_min;
1357         mutable gint _capture_load_min;
1358
1359         /* I/O bundles */
1360
1361         SerializedRCUManager<BundleList> _bundles;
1362         XMLNode* _bundle_xml_node;
1363         int load_bundles (XMLNode const &);
1364
1365         void reverse_diskstream_buffers ();
1366
1367         UndoHistory                  _history;
1368         std::stack<UndoTransaction*> _current_trans;
1369
1370         void jack_timebase_callback (jack_transport_state_t, nframes_t, jack_position_t*, int);
1371         int  jack_sync_callback (jack_transport_state_t, jack_position_t*);
1372         void reset_jack_connection (jack_client_t* jack);
1373         void process_rtop (SessionEvent*);
1374
1375         XMLNode& state(bool);
1376
1377         /* click track */
1378
1379         Clicks                 clicks;
1380         bool                  _clicking;
1381         boost::shared_ptr<IO> _click_io;
1382         Sample*                click_data;
1383         Sample*                click_emphasis_data;
1384         nframes_t              click_length;
1385         nframes_t              click_emphasis_length;
1386         mutable Glib::RWLock   click_lock;
1387
1388         static const Sample    default_click[];
1389         static const nframes_t default_click_length;
1390         static const Sample    default_click_emphasis[];
1391         static const nframes_t default_click_emphasis_length;
1392
1393         Click *get_click();
1394         void   setup_click_sounds (int which);
1395         void   clear_clicks ();
1396         void   click (nframes_t start, nframes_t nframes);
1397
1398         std::vector<Route*> master_outs;
1399
1400         /* range playback */
1401
1402         std::list<AudioRange> current_audio_range;
1403         bool _play_range;
1404         void set_play_range (std::list<AudioRange>&, bool leave_rolling);
1405         void unset_play_range ();
1406
1407         /* main outs */
1408         uint32_t main_outs;
1409
1410         boost::shared_ptr<Route> _master_out;
1411         boost::shared_ptr<Route> _control_out;
1412
1413         gain_t* _gain_automation_buffer;
1414         pan_t** _pan_automation_buffer;
1415         void allocate_pan_automation_buffers (nframes_t nframes, uint32_t howmany, bool force);
1416         uint32_t _npan_buffers;
1417
1418         /* VST support */
1419
1420         long _vst_callback (VSTPlugin*,
1421                         long opcode,
1422                         long index,
1423                         long value,
1424                         void* ptr,
1425                         float opt);
1426
1427         /* number of hardware ports we're using,
1428            based on max (requested,available)
1429         */
1430
1431         uint32_t n_physical_outputs;
1432         uint32_t n_physical_inputs;
1433
1434         uint32_t n_physical_audio_outputs;
1435         uint32_t n_physical_audio_inputs;
1436
1437         uint32_t n_physical_midi_outputs;
1438         uint32_t n_physical_midi_inputs;
1439
1440         int find_all_sources (std::string path, std::set<std::string>& result);
1441         int find_all_sources_across_snapshots (std::set<std::string>& result, bool exclude_this_snapshot);
1442
1443         typedef std::set<boost::shared_ptr<PBD::Controllable> > Controllables;
1444         Glib::Mutex controllables_lock;
1445         Controllables controllables;
1446
1447         void reset_native_file_format();
1448         bool first_file_data_format_reset;
1449         bool first_file_header_format_reset;
1450
1451         void config_changed (std::string, bool);
1452
1453         XMLNode& get_control_protocol_state ();
1454
1455         void set_history_depth (uint32_t depth);
1456         void sync_order_keys ();
1457
1458         static bool _disable_all_loaded_plugins;
1459
1460         SessionMetadata * _metadata;
1461
1462         mutable bool have_looped; ///< Used in ::audible_frame(*)
1463
1464         void update_have_rec_enabled_diskstream ();
1465         gint _have_rec_enabled_diskstream;
1466
1467         /* realtime "apply to set of routes" operations */
1468         SessionEvent* get_rt_event (boost::shared_ptr<RouteList> rl, bool yn, SessionEvent::RTeventCallback after, bool group_override, 
1469                 void (Session::*method) (boost::shared_ptr<RouteList>, bool, bool));
1470
1471         void rt_set_solo (boost::shared_ptr<RouteList>, bool yn, bool group_override);
1472         void rt_set_just_one_solo (boost::shared_ptr<RouteList>, bool yn, bool /* ignored*/ );
1473         void rt_set_mute (boost::shared_ptr<RouteList>, bool yn, bool group_override);
1474         void rt_set_listen (boost::shared_ptr<RouteList>, bool yn, bool group_override);
1475         void rt_set_record_enable (boost::shared_ptr<RouteList>, bool yn, bool group_override);
1476 };
1477
1478 } // namespace ARDOUR
1479
1480 #endif /* __ardour_session_h__ */