X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Fabstract_ui.h;h=89bc41e185af44e755ee20bc5815619d0ba6396f;hb=6180c5a5fc9a663858d12c31a6783e12f02bfcba;hp=905074c474bba983547f076619ff3fb5543e0efc;hpb=b550a6e85bdb43e342f4955f4e16ffbc47fb06cb;p=ardour.git diff --git a/libs/pbd/pbd/abstract_ui.h b/libs/pbd/pbd/abstract_ui.h index 905074c474..89bc41e185 100644 --- a/libs/pbd/pbd/abstract_ui.h +++ b/libs/pbd/pbd/abstract_ui.h @@ -1,5 +1,5 @@ /* - Copyright (C) 1998-2009 Paul Davis + Copyright (C) 1998-2009 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 @@ -26,39 +26,56 @@ #include +#include "pbd/libpbd_visibility.h" #include "pbd/receiver.h" #include "pbd/ringbufferNPT.h" #include "pbd/signals.h" #include "pbd/base_ui.h" +/* We have a special case in libpbd of a template class that gets instantiated + * as the base class of several classes in other libraries. It is not possible + * to use LIBFOO_API to mark this visible, because the FOO in each case is + * different. So we define this generic visible/export/hidden/import pair + * of macros to try to deal with this special case. These should NEVER be + * used anywhere except AbstractUI (or similar cases if they arise. + * + * Note the assumption here that other libs are being built as DLLs if this one is. + */ + +#ifdef ABSTRACT_UI_EXPORTS +#define ABSTRACT_UI_API LIBPBD_DLL_EXPORT +#else +#define ABSTRACT_UI_API LIBPBD_DLL_IMPORT +#endif + + class Touchable; template -class AbstractUI : public BaseUI +class ABSTRACT_UI_API AbstractUI : public BaseUI { - public: +public: AbstractUI (const std::string& name); - virtual ~AbstractUI() {} + virtual ~AbstractUI(); - void register_thread (std::string, pthread_t, std::string, uint32_t num_requests); + void register_thread (pthread_t, std::string, uint32_t num_requests); void call_slot (EventLoop::InvalidationRecord*, const boost::function&); - Glib::Threads::Mutex& slot_invalidation_mutex() { return request_buffer_map_lock; } + Glib::Threads::Mutex& slot_invalidation_mutex() { return request_buffer_map_lock; } Glib::Threads::Mutex request_buffer_map_lock; - protected: + static void* request_buffer_factory (uint32_t num_requests); + +protected: struct RequestBuffer : public PBD::RingBufferNPT { - bool dead; - AbstractUI& ui; - RequestBuffer (uint32_t size, AbstractUI& uir) - : PBD::RingBufferNPT (size) - , dead (false) - , ui (uir) {} - }; + bool dead; + RequestBuffer (uint32_t size) + : PBD::RingBufferNPT (size) + , dead (false) {} + }; typedef typename RequestBuffer::rw_vector RequestBufferVector; -#if defined(__MINGW32__) - +#if defined(COMPILER_MINGW) && defined(PTW32_VERSION) struct pthread_cmp { bool operator() (const ptw32_handle_t& thread1, const ptw32_handle_t& thread2) @@ -74,11 +91,10 @@ class AbstractUI : public BaseUI #endif RequestBufferMap request_buffers; - static Glib::Threads::Private per_thread_request_buffer; - - Glib::Threads::Mutex request_list_lock; + static Glib::Threads::Private per_thread_request_buffer; + std::list request_list; - + RequestObject* get_request (RequestType); void handle_ui_requests (); void send_request (RequestObject *); @@ -88,5 +104,3 @@ class AbstractUI : public BaseUI }; #endif /* __pbd_abstract_ui_h__ */ - -