added RCU handling of Session route list, and major use of shared_ptr<T> everywhere...
[ardour.git] / libs / ardour / ardour / session_route.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     $Id$
19 */
20
21 #ifndef __ardour_session_route_h__
22 #define __ardour_session_route_h__
23
24 #include <iostream>
25
26 #include <glibmm/thread.h>
27
28 #include <ardour/session.h>
29 #include <ardour/route.h>
30
31 namespace ARDOUR {
32
33 template<class T> void 
34 Session::foreach_route (T *obj, void (T::*func)(Route&))
35 {
36         boost::shared_ptr<RouteList> r = routes.reader();
37         RouteList public_order (*r);
38         RoutePublicOrderSorter cmp;
39
40         public_order.sort (cmp);
41
42         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
43                 (obj->*func) (**i);
44         }
45 }
46
47 template<class T> void 
48 Session::foreach_route (T *obj, void (T::*func)(boost::shared_ptr<Route>))
49 {
50         boost::shared_ptr<RouteList> r = routes.reader();
51         RouteList public_order (*r);
52         RoutePublicOrderSorter cmp;
53
54         public_order.sort (cmp);
55
56         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
57                 (obj->*func) (*i);
58         }
59 }
60
61 template<class T, class A> void 
62 Session::foreach_route (T *obj, void (T::*func)(Route&, A), A arg1)
63 {
64         boost::shared_ptr<RouteList> r = routes.reader();
65         RouteList public_order (*r);
66         RoutePublicOrderSorter cmp;
67
68         public_order.sort (cmp);
69
70         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
71                 (obj->*func) (**i, arg1);
72         }
73 }
74
75 } /* namespace */
76
77 #endif /* __ardour_session_route_h__ */