|
- /*
- Copyright (C) 2004-2006 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.
-
- */
-
- #include "JackLibClient.h"
- #include "JackTime.h"
- #include "JackLibGlobals.h"
- #include "JackGlobals.h"
- #include "JackChannel.h"
-
- namespace Jack
- {
-
- // Used for external C API (JackAPI.cpp)
- JackGraphManager* GetGraphManager()
- {
- assert(JackLibGlobals::fGlobals->fGraphManager);
- return JackLibGlobals::fGlobals->fGraphManager;
- }
-
- JackEngineControl* GetEngineControl()
- {
- assert(JackLibGlobals::fGlobals->fEngineControl);
- return JackLibGlobals::fGlobals->fEngineControl;
- }
-
- JackSynchro** GetSynchroTable()
- {
- assert(JackLibGlobals::fGlobals);
- return JackLibGlobals::fGlobals->fSynchroTable;
- }
-
- //-------------------
- // Client management
- //-------------------
-
- JackLibClient::JackLibClient(JackSynchro** table): JackClient(table)
- {
- JackLog("JackLibClient::JackLibClient table = %x\n", table);
- fChannel = JackGlobals::MakeClientChannel();
- }
-
- JackLibClient::~JackLibClient()
- {
- JackLog("JackLibClient::~JackLibClient\n");
- delete fChannel;
- }
-
- int JackLibClient::Open(const char* name)
- {
- int shared_engine, shared_client, shared_ports, result;
- JackLog("JackLibClient::Open %s\n", name);
-
- // Open server/client channel
- if (fChannel->Open(name, this) < 0) {
- jack_error("Cannot connect to the server");
- goto error;
- }
-
- // Start receiving notifications
- if (fChannel->Start() < 0) {
- jack_error("Cannot start channel");
- goto error;
- }
-
- // Require new client
- fChannel->ClientNew(name, &shared_engine, &shared_client, &shared_ports, &result);
- if (result < 0) {
- jack_error("Cannot open %s client", name);
- goto error;
- }
-
- try {
- // Map shared memory segments
- JackLibGlobals::fGlobals->fEngineControl = shared_engine;
- JackLibGlobals::fGlobals->fGraphManager = shared_ports;
- fClientControl = shared_client;
- verbose = GetEngineControl()->fVerbose;
- } catch (int n) {
- jack_error("Map shared memory segments exception %d", n);
- goto error;
- }
-
- SetupDriverSync(false);
-
- // Connect shared synchro : the synchro must be usable in I/O mode when several clients live in the same process
- if (!fSynchroTable[fClientControl->fRefNum]->Connect(name)) {
- jack_error("Cannot ConnectSemaphore %s client", name);
- goto error;
- }
-
- JackLog("JackLibClient::Open: name, refnum %s %ld\n", name, fClientControl->fRefNum);
- return 0;
-
- error:
- fChannel->Stop();
- fChannel->Close();
- return -1;
- }
-
- // Notifications received from the server
- // TODO this should be done once for all clients in the process, when a shared notification channel
- // will be shared by all clients...
- int JackLibClient::ClientNotifyImp(int refnum, const char* name, int notify, int sync, int value)
- {
- int res = 0;
-
- // Done all time
- switch (notify) {
-
- case JackNotifyChannelInterface::kAddClient:
- JackLog("JackClient::AddClient name = %s, ref = %ld \n", name, refnum);
- // the synchro must be usable in I/O mode when several clients live in the same process
- res = fSynchroTable[refnum]->Connect(name) ? 0 : -1;
- break;
-
- case JackNotifyChannelInterface::kRemoveClient:
- JackLog("JackClient::RemoveClient name = %s, ref = %ld \n", name, refnum);
- if (strcmp(GetClientControl()->fName, name) != 0)
- res = fSynchroTable[refnum]->Disconnect() ? 0 : -1;
- break;
- }
-
- return res;
- }
-
- JackGraphManager* JackLibClient::GetGraphManager() const
- {
- assert(JackLibGlobals::fGlobals->fGraphManager);
- return JackLibGlobals::fGlobals->fGraphManager;
- }
-
- JackEngineControl* JackLibClient::GetEngineControl() const
- {
- assert(JackLibGlobals::fGlobals->fEngineControl);
- return JackLibGlobals::fGlobals->fEngineControl;
- }
-
- JackClientControl* JackLibClient::GetClientControl() const
- {
- return fClientControl;
- }
-
- } // end of namespace
-
-
|