change MidiPlaylist::dump() into ::render(); change type of initial argument
[ardour.git] / libs / ardour / session_handle.cc
1 /*
2  * Copyright (C) 2009-2016 Paul Davis <paul@linuxaudiosystems.com>
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include "pbd/demangle.h"
20 #include "pbd/error.h"
21
22 #include "ardour/boost_debug.h"
23 #include "ardour/session.h"
24 #include "ardour/session_handle.h"
25
26 #include "pbd/i18n.h"
27
28 using namespace std;
29 using namespace ARDOUR;
30 using namespace PBD;
31
32 SessionHandlePtr::SessionHandlePtr (Session* s)
33         : _session (s)
34 {
35         if (_session) {
36                 _session->DropReferences.connect_same_thread (_session_connections, boost::bind (&SessionHandlePtr::session_going_away, this));
37         }
38 }
39
40 void
41 SessionHandlePtr::set_session (Session* s)
42 {
43         _session_connections.drop_connections ();
44
45         if (_session) {
46                 _session = 0;
47         }
48
49         if (s) {
50                 _session = s;
51                 _session->DropReferences.connect_same_thread (_session_connections, boost::bind (&SessionHandlePtr::session_going_away, this));
52         }
53 }
54
55 void
56 SessionHandlePtr::session_going_away ()
57 {
58         set_session (0);
59 }
60
61 /*-------------------------*/
62
63
64 SessionHandleRef::SessionHandleRef (Session& s)
65         : _session (s)
66 {
67         _session.DropReferences.connect_same_thread (*this, boost::bind (&SessionHandleRef::session_going_away, this));
68         _session.Destroyed.connect_same_thread (*this, boost::bind (&SessionHandleRef::insanity_check, this));
69 }
70
71 SessionHandleRef::~SessionHandleRef ()
72 {
73 }
74
75 void
76 SessionHandleRef::session_going_away ()
77 {
78         /* a handleRef is allowed to exist at the time of DropReferences, but not at the time of Destroyed
79          */
80 }
81
82 void
83 SessionHandleRef::insanity_check ()
84 {
85 #ifndef NDEBUG
86         cerr << string_compose (
87                 _("programming error: %1"),
88                 string_compose("SessionHandleRef exists across session deletion! Dynamic type: %1 @ %2",
89                                PBD::demangled_name (*this), this))
90              << endl;
91 #endif
92 }