Dmitry Baikov patch for JackGraphManager.cpp.
[jack2.git] / common / JackSocketClientChannel.h
blobebedc9bf9985969ea581e102724143be8bb363d9
1 /*
2 Copyright (C) 2004-2006 Grame
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __JackSocketClientChannel__
21 #define __JackSocketClientChannel__
23 #include "JackChannel.h"
24 #include "JackSocket.h"
25 #include "JackThread.h"
26 #include "JackRequest.h"
28 namespace Jack
31 /*!
32 \brief JackClientChannel using sockets.
35 class JackSocketClientChannel : public JackClientChannelInterface, public JackRunnableInterface
38 private:
40 JackClientSocket fRequestSocket; // Socket to communicate with the server
41 JackServerSocket fNotificationListenSocket; // Socket listener for server notification
42 JackClientSocket* fNotificationSocket; // Socket for server notification
43 JackThread* fThread; // Thread to execute the event loop
44 JackClient* fClient;
46 void ServerSyncCall(JackRequest* req, JackResult* res, int* result);
47 void ServerAsyncCall(JackRequest* req, JackResult* res, int* result);
49 public:
51 JackSocketClientChannel();
52 virtual ~JackSocketClientChannel();
54 int Open(const char* name, JackClient* obj);
55 void Close();
57 int Start();
58 void Stop();
60 void ClientOpen(const char* name, int* shared_engine, int* shared_client, int* shared_graph, int* result);
61 void ClientClose(int refnum, int* result);
63 void ClientActivate(int refnum, int* result);
64 void ClientDeactivate(int refnum, int* result);
66 void PortRegister(int refnum, const char* name, unsigned int flags, unsigned int buffer_size, jack_port_id_t* port_index, int* result);
67 void PortUnRegister(int refnum, jack_port_id_t port_index, int* result);
69 void PortConnect(int refnum, const char* src, const char* dst, int* result);
70 void PortDisconnect(int refnum, const char* src, const char* dst, int* result);
72 void PortConnect(int refnum, jack_port_id_t src, jack_port_id_t dst, int* result);
73 void PortDisconnect(int refnum, jack_port_id_t src, jack_port_id_t dst, int* result);
75 void SetBufferSize(jack_nframes_t buffer_size, int* result);
76 void SetFreewheel(int onoff, int* result);
78 void ReleaseTimebase(int refnum, int* result);
79 void SetTimebaseCallback(int refnum, int conditional, int* result);
81 // JackRunnableInterface interface
82 bool Init();
83 bool Execute();
86 } // end of namespace
88 #endif