more MTC debugging
[ardour.git] / libs / ardour / session_handle.cc
1 /*
2     Copyright (C) 2009 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 #include "pbd/error.h"
21 #include "pbd/boost_debug.h"
22
23 #include "ardour/session.h"
24 #include "ardour/session_handle.h"
25
26 #include "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         cerr << string_compose (_("programming error: %1"), "SessionHandleRef exists across sesssion deletion!") << endl;
86 }