|  | /*
Copyright (C) 2008 Grame
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.
*/
#ifndef __JackLockedEngine__
#define __JackLockedEngine__
#include "JackEngine.h"
#include "JackMutex.h"
namespace Jack
{
/*!
\brief Locked Engine.
*/
class JackLockedEngine : public JackEngine, public JackLockAble
{
    private:
        JackEngine* fEngine;
      
    public:
        JackLockedEngine(JackEngine* engine):fEngine(engine)
        {}
        virtual ~JackLockedEngine()
        { 
            delete fEngine;
        }
        int Open()
        {
            // No lock needed
            return fEngine->Open();
        }
        int Close()
        {
            // No lock needed
            return fEngine->Close();
        }
        // Client management
        int ClientCheck(const char* name, char* name_res, int protocol, int options, int* status)
        {
            JackLock lock(this);
            return fEngine->ClientCheck(name, name_res, protocol, options, status);
        }
        int ClientExternalOpen(const char* name, int* ref, int* shared_engine, int* shared_client, int* shared_graph_manager)
        {
            JackLock lock(this);
            return fEngine->ClientExternalOpen(name, ref, shared_engine, shared_client, shared_graph_manager);
        }
        int ClientInternalOpen(const char* name, int* ref, JackEngineControl** shared_engine, JackGraphManager** shared_manager, JackClientInterface* client, bool wait)
        {
            JackLock lock(this);
            return fEngine->ClientInternalOpen(name, ref, shared_engine, shared_manager, client, wait);
        }
        int ClientExternalClose(int refnum)
        {
            JackLock lock(this);
            return fEngine->ClientExternalClose(refnum);
        }
        int ClientInternalClose(int refnum, bool wait)
        {
            JackLock lock(this);
            return fEngine->ClientInternalClose(refnum, wait);
        }
        int ClientActivate(int refnum)
        {
            JackLock lock(this);
            return fEngine->ClientActivate(refnum);
        }
        int ClientDeactivate(int refnum)
        {
            JackLock lock(this);
            return fEngine->ClientDeactivate(refnum);
        }
        // Internal client management
        int GetInternalClientName(int int_ref, char* name_res)
        {
            JackLock lock(this);
            return fEngine->GetInternalClientName(int_ref, name_res);
        }
        int InternalClientHandle(const char* client_name, int* status, int* int_ref)
        {
            JackLock lock(this);
            return fEngine->InternalClientHandle(client_name, status, int_ref);
        }
        int InternalClientUnload(int refnum, int* status)
        {
            JackLock lock(this);
            return fEngine->InternalClientUnload(refnum, status);
        }
        // Port management
        int PortRegister(int refnum, const char* name, const char *type, unsigned int flags, unsigned int buffer_size, unsigned int* port)
        {
            JackLock lock(this);
            return fEngine->PortRegister(refnum, name, type, flags, buffer_size, port);
        }
        int PortUnRegister(int refnum, jack_port_id_t port)
        {
            JackLock lock(this);
            return fEngine->PortUnRegister(refnum, port);
        }
        int PortConnect(int refnum, const char* src, const char* dst)
        {
            JackLock lock(this);
            return fEngine->PortConnect(refnum, src, dst);
        }
        int PortDisconnect(int refnum, const char* src, const char* dst)
        {
            JackLock lock(this);
            return fEngine->PortDisconnect(refnum, src, dst);
        }
        int PortConnect(int refnum, jack_port_id_t src, jack_port_id_t dst)
        {
            JackLock lock(this);
            return fEngine->PortConnect(refnum, src, dst);
        }
        int PortDisconnect(int refnum, jack_port_id_t src, jack_port_id_t dst)
        {
            JackLock lock(this);
            return fEngine->PortDisconnect(refnum, src, dst);
        }
        // Graph
        bool Process(jack_time_t callback_usecs)
        {
            // RT : no lock
            return fEngine->Process(callback_usecs);
        }
        // Notifications
        void NotifyXRun(jack_time_t callback_usecs)
        {
            //  RT : no lock
            fEngine->NotifyXRun(callback_usecs);
        }
        void NotifyXRun(int refnum)
        {
            JackLock lock(this);
            fEngine->NotifyXRun(refnum);
        }
        void NotifyGraphReorder()
        {
            JackLock lock(this);
            fEngine->NotifyGraphReorder();
        }
        void NotifyBufferSize(jack_nframes_t nframes)
        {
            JackLock lock(this);
            fEngine->NotifyBufferSize(nframes);
        }
        void NotifyFreewheel(bool onoff)
        {
            JackLock lock(this);
            fEngine->NotifyFreewheel(onoff);
        }
        void NotifyPortRegistation(jack_port_id_t port_index, bool onoff)
        {
            JackLock lock(this);
            fEngine->NotifyPortRegistation(port_index, onoff);
        }
        void NotifyPortConnect(jack_port_id_t src, jack_port_id_t dst, bool onoff)
        {
            JackLock lock(this);
            fEngine->NotifyPortConnect(src, dst, onoff);
        }
        void NotifyActivate(int refnum)
        {
            JackLock lock(this);
            fEngine->NotifyActivate(refnum);
        }
};
} // end of namespace
#endif
 |