2008-06-02 17:41:35 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
2009-12-26 11:15:11 -05:00
|
|
|
#include <set>
|
2008-06-02 17:41:35 -04:00
|
|
|
#include <string>
|
2009-12-31 14:49:22 -05:00
|
|
|
#include <cstring>
|
2008-06-02 17:41:35 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/pthread_utils.h"
|
2009-04-16 12:02:25 -04:00
|
|
|
#ifdef WINE_THREAD_SUPPORT
|
|
|
|
#include <fst.h>
|
|
|
|
#endif
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2013-07-16 13:00:49 -04:00
|
|
|
#ifdef COMPILER_MSVC
|
|
|
|
DECLARE_DEFAULT_COMPARISONS(pthread_t) // Needed for 'DECLARE_DEFAULT_COMPARISONS'. Objects in an STL container can be
|
|
|
|
// searched and sorted. Thus, when instantiating the container, MSVC complains
|
|
|
|
// if the type of object being contained has no appropriate comparison operators
|
|
|
|
// defined (specifically, if operators '<' and '==' are undefined). This seems
|
|
|
|
// to be the case with ptw32 'pthread_t' which is a simple struct.
|
|
|
|
#endif
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
using namespace std;
|
|
|
|
|
2013-07-11 11:43:43 -04:00
|
|
|
typedef std::list<pthread_t> ThreadMap;
|
2008-06-02 17:41:35 -04:00
|
|
|
static ThreadMap all_threads;
|
|
|
|
static pthread_mutex_t thread_map_lock = PTHREAD_MUTEX_INITIALIZER;
|
2012-07-25 13:48:55 -04:00
|
|
|
static Glib::Threads::Private<char> thread_name (free);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
namespace PBD {
|
2009-12-22 15:21:43 -05:00
|
|
|
PBD::Signal4<void,std::string, pthread_t,std::string,uint32_t> ThreadCreatedWithRequestSize;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
using namespace PBD;
|
|
|
|
|
2009-04-16 12:02:25 -04:00
|
|
|
static int thread_creator (pthread_t* thread_id, const pthread_attr_t* attr, void *(*function)(void*), void* arg)
|
|
|
|
{
|
|
|
|
#ifdef WINE_THREAD_SUPPORT
|
|
|
|
return wine_pthread_create (thread_id, attr, function, arg);
|
|
|
|
#else
|
|
|
|
return pthread_create (thread_id, attr, function, arg);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
void
|
2009-12-08 22:05:14 -05:00
|
|
|
PBD::notify_gui_about_thread_creation (std::string target_gui, pthread_t thread, std::string str, int request_count)
|
2008-12-12 09:43:24 -05:00
|
|
|
{
|
2009-12-08 22:05:14 -05:00
|
|
|
ThreadCreatedWithRequestSize (target_gui, thread, str, request_count);
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
|
|
|
|
2009-12-26 11:15:11 -05:00
|
|
|
struct ThreadStartWithName {
|
|
|
|
void* (*thread_work)(void*);
|
|
|
|
void* arg;
|
2009-12-31 14:49:22 -05:00
|
|
|
std::string name;
|
2009-12-26 11:15:11 -05:00
|
|
|
|
2009-12-31 14:49:22 -05:00
|
|
|
ThreadStartWithName (void* (*f)(void*), void* a, const std::string& s)
|
2009-12-26 11:15:11 -05:00
|
|
|
: thread_work (f), arg (a), name (s) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void*
|
|
|
|
fake_thread_start (void* arg)
|
|
|
|
{
|
|
|
|
ThreadStartWithName* ts = (ThreadStartWithName*) arg;
|
|
|
|
void* (*thread_work)(void*) = ts->thread_work;
|
|
|
|
void* thread_arg = ts->arg;
|
|
|
|
|
2013-08-15 11:44:47 -04:00
|
|
|
/* name will be deleted by the default handler for GStaticPrivate, when the thread exits */
|
|
|
|
|
2009-12-31 14:49:22 -05:00
|
|
|
pthread_set_name (ts->name.c_str());
|
2009-12-26 11:15:11 -05:00
|
|
|
|
2013-08-15 11:44:47 -04:00
|
|
|
/* we don't need this object anymore */
|
|
|
|
|
2009-12-26 11:15:11 -05:00
|
|
|
delete ts;
|
|
|
|
|
2013-08-15 11:44:47 -04:00
|
|
|
/* actually run the thread's work function */
|
|
|
|
|
|
|
|
void* ret = thread_work (thread_arg);
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
|
|
|
|
pthread_mutex_lock (&thread_map_lock);
|
|
|
|
|
|
|
|
for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
|
|
|
|
if (pthread_equal ((*i), pthread_self())) {
|
|
|
|
all_threads.erase (i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock (&thread_map_lock);
|
|
|
|
|
|
|
|
/* done */
|
|
|
|
|
|
|
|
return ret;
|
2009-12-26 11:15:11 -05:00
|
|
|
}
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
int
|
2009-12-08 22:05:14 -05:00
|
|
|
pthread_create_and_store (string name, pthread_t *thread, void * (*start_routine)(void *), void * arg)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
pthread_attr_t default_attr;
|
2009-12-08 22:05:14 -05:00
|
|
|
int ret;
|
2009-12-26 11:15:11 -05:00
|
|
|
|
2009-12-08 22:05:14 -05:00
|
|
|
// set default stack size to sensible default for memlocking
|
|
|
|
pthread_attr_init(&default_attr);
|
|
|
|
pthread_attr_setstacksize(&default_attr, 500000);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-12-31 14:49:22 -05:00
|
|
|
ThreadStartWithName* ts = new ThreadStartWithName (start_routine, arg, name);
|
2009-12-26 11:15:11 -05:00
|
|
|
|
|
|
|
if ((ret = thread_creator (thread, &default_attr, fake_thread_start, ts)) == 0) {
|
2008-06-02 17:41:35 -04:00
|
|
|
pthread_mutex_lock (&thread_map_lock);
|
2013-07-11 11:43:43 -04:00
|
|
|
all_threads.push_back (*thread);
|
2008-06-02 17:41:35 -04:00
|
|
|
pthread_mutex_unlock (&thread_map_lock);
|
|
|
|
}
|
|
|
|
|
2009-12-08 22:05:14 -05:00
|
|
|
pthread_attr_destroy(&default_attr);
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-12-26 11:15:11 -05:00
|
|
|
void
|
|
|
|
pthread_set_name (const char *str)
|
|
|
|
{
|
2009-12-31 14:49:22 -05:00
|
|
|
/* copy string and delete it when exiting */
|
|
|
|
|
2012-07-25 13:48:55 -04:00
|
|
|
thread_name.set (strdup (str));
|
2009-12-26 11:15:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2008-06-02 17:41:35 -04:00
|
|
|
pthread_name ()
|
|
|
|
{
|
2009-12-26 11:15:11 -05:00
|
|
|
const char* str = thread_name.get ();
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-12-26 11:15:11 -05:00
|
|
|
if (str) {
|
|
|
|
return str;
|
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread_kill_all (int signum)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock (&thread_map_lock);
|
|
|
|
for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
|
2013-07-11 11:40:59 -04:00
|
|
|
if (!pthread_equal ((*i), pthread_self())) {
|
2009-12-26 11:15:11 -05:00
|
|
|
pthread_kill ((*i), signum);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
all_threads.clear();
|
|
|
|
pthread_mutex_unlock (&thread_map_lock);
|
|
|
|
}
|
|
|
|
|
2009-12-09 13:37:06 -05:00
|
|
|
void
|
|
|
|
pthread_cancel_all ()
|
|
|
|
{
|
|
|
|
pthread_mutex_lock (&thread_map_lock);
|
2013-08-24 12:18:06 -04:00
|
|
|
|
2013-08-15 11:44:47 -04:00
|
|
|
for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ) {
|
|
|
|
|
|
|
|
ThreadMap::iterator nxt = i;
|
|
|
|
++nxt;
|
|
|
|
|
2013-07-11 11:40:59 -04:00
|
|
|
if (!pthread_equal ((*i), pthread_self())) {
|
2009-12-26 11:15:11 -05:00
|
|
|
pthread_cancel ((*i));
|
2009-12-09 13:37:06 -05:00
|
|
|
}
|
2013-08-15 11:44:47 -04:00
|
|
|
|
|
|
|
i = nxt;
|
2009-12-09 13:37:06 -05:00
|
|
|
}
|
|
|
|
all_threads.clear();
|
|
|
|
pthread_mutex_unlock (&thread_map_lock);
|
|
|
|
}
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
void
|
|
|
|
pthread_cancel_one (pthread_t thread)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock (&thread_map_lock);
|
|
|
|
for (ThreadMap::iterator i = all_threads.begin(); i != all_threads.end(); ++i) {
|
2013-07-11 11:40:59 -04:00
|
|
|
if (pthread_equal ((*i), thread)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
all_threads.erase (i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_cancel (thread);
|
|
|
|
pthread_mutex_unlock (&thread_map_lock);
|
|
|
|
}
|
|
|
|
|