further optimizations for multiple-track-at-once addition. as in "whoah!"
[ardour.git] / libs / pbd / pthread_utils.cc
1 /*
2     Copyright (C) 2002 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 #include <map>
22 #include <iostream>
23 #include <string>
24 #include <stdint.h>
25
26 #include <pbd/pthread_utils.h>
27
28 using namespace std;
29
30 typedef std::map<string,pthread_t> ThreadMap;
31 static ThreadMap all_threads;
32 static pthread_mutex_t thread_map_lock = PTHREAD_MUTEX_INITIALIZER;
33
34 namespace PBD {
35    sigc::signal<void,pthread_t,std::string> ThreadCreated;
36    sigc::signal<void,pthread_t,std::string,uint32_t> ThreadCreatedWithRequestSize;
37 }
38
39 using namespace PBD;
40
41 int  
42 pthread_create_and_store (string name, pthread_t  *thread, pthread_attr_t *attr, void * (*start_routine)(void *), void * arg)
43 {
44         int ret;
45
46         if ((ret = pthread_create (thread, attr, start_routine, arg)) == 0) {
47                 std::pair<string,pthread_t> newpair;
48                 newpair.first = name;
49                 newpair.second = *thread;
50
51                 pthread_mutex_lock (&thread_map_lock);
52                 all_threads.insert (newpair);
53
54                 pthread_mutex_unlock (&thread_map_lock);
55         }
56         
57         return ret;
58 }
59
60 string
61 pthread_name ()
62 {
63         pthread_t self = pthread_self();
64         string str;
65
66         pthread_mutex_lock (&thread_map_lock);
67         for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
68                 if (i->second == self) {
69                         str = i->first;
70                         pthread_mutex_unlock (&thread_map_lock);
71                         return str;
72                 }
73         }
74         pthread_mutex_unlock (&thread_map_lock);
75         return "unknown";
76 }
77
78 void
79 pthread_kill_all (int signum) 
80 {       
81         pthread_mutex_lock (&thread_map_lock);
82         for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
83                 if (i->second != pthread_self()) {
84                         pthread_kill (i->second, signum);
85                 }
86         }
87         all_threads.clear();
88         pthread_mutex_unlock (&thread_map_lock);
89 }
90
91 void
92 pthread_cancel_all () 
93 {       
94         pthread_mutex_lock (&thread_map_lock);
95         for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
96                 if (i->second != pthread_self()) {
97                         pthread_cancel (i->second);
98                 }
99         }
100         all_threads.clear();
101         pthread_mutex_unlock (&thread_map_lock);
102 }
103
104 void
105 pthread_cancel_one (pthread_t thread) 
106 {       
107         pthread_mutex_lock (&thread_map_lock);
108         for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
109                 if (i->second == thread) {
110                         all_threads.erase (i);
111                         break;
112                 }
113         }
114
115         pthread_cancel (thread);
116         pthread_mutex_unlock (&thread_map_lock);
117 }
118
119 void
120 pthread_exit_pbd (void* status) 
121 {       
122         pthread_t thread = pthread_self();
123
124         pthread_mutex_lock (&thread_map_lock);
125         for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
126                 if (i->second == thread) {
127                         all_threads.erase (i);
128                         break;
129                 }
130         }
131         pthread_mutex_unlock (&thread_map_lock);
132         pthread_exit (status);
133 }