Merged timbyr's win32 branch. -r 547:566.
[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         RouteList public_order;
37
38         {
39                 Glib::RWLock::ReaderLock lm (route_lock);
40                 public_order = routes;
41         }
42
43         RoutePublicOrderSorter cmp;
44         public_order.sort (cmp);
45
46         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
47                 (obj->*func) (**i);
48         }
49 }
50
51 template<class T> void 
52 Session::foreach_route (T *obj, void (T::*func)(Route*))
53 {
54         RouteList public_order;
55
56         {
57                 Glib::RWLock::ReaderLock lm (route_lock);
58                 public_order = routes;
59         }
60
61         RoutePublicOrderSorter cmp;
62         public_order.sort (cmp);
63
64         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
65                 (obj->*func) (*i);
66         }
67 }
68
69
70 template<class T, class A> void 
71 Session::foreach_route (T *obj, void (T::*func)(Route&, A), A arg1)
72 {
73         RouteList public_order;
74
75         {
76                 Glib::RWLock::ReaderLock lm (route_lock);
77                 public_order = routes;
78         }
79
80         RoutePublicOrderSorter cmp;
81         public_order.sort (cmp);
82
83         for (RouteList::iterator i = public_order.begin(); i != public_order.end(); i++) {
84                 (obj->*func) (**i, arg1);
85         }
86 }
87
88 } /* namespace */
89
90 #endif /* __ardour_session_route_h__ */