summaryrefslogtreecommitdiff
path: root/windows/JackWinNamedPipeClientChannel.h
diff options
context:
space:
mode:
authorsletz <sletz@0c269be4-1314-0410-8aa9-9f06e86f4224>2006-09-03 07:39:10 +0000
committersletz <sletz@0c269be4-1314-0410-8aa9-9f06e86f4224>2006-09-03 07:39:10 +0000
commit73e2d7a6d35779cb92a17ae98b27dd752eea02c9 (patch)
tree3a23f6217af15439947ab650f0ef60e28541ba2b /windows/JackWinNamedPipeClientChannel.h
parente33aa60c7095c11075995bcca6b35a92c719f9e7 (diff)
downloadjack2-73e2d7a6d35779cb92a17ae98b27dd752eea02c9.tar.gz
First import
git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1195 0c269be4-1314-0410-8aa9-9f06e86f4224
Diffstat (limited to 'windows/JackWinNamedPipeClientChannel.h')
-rw-r--r--windows/JackWinNamedPipeClientChannel.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/windows/JackWinNamedPipeClientChannel.h b/windows/JackWinNamedPipeClientChannel.h
new file mode 100644
index 00000000..dc519a4e
--- /dev/null
+++ b/windows/JackWinNamedPipeClientChannel.h
@@ -0,0 +1,88 @@
+/*
+Copyright (C) 2004-2006 Grame
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+
+#ifndef __JackWinNamedPipeClientChannel__
+#define __JackWinNamedPipeClientChannel__
+
+#include "JackChannel.h"
+#include "JackWinNamedPipe.h"
+#include "JackThread.h"
+#include "JackRequest.h"
+
+namespace Jack
+{
+
+/*!
+\brief JackClientChannel using pipes.
+*/
+
+class JackWinNamedPipeClientChannel : public JackClientChannelInterface, public JackRunnableInterface
+{
+
+ private:
+
+ JackWinNamedPipeClient fRequestPipe; // Pipe to communicate with the server
+ JackWinNamedPipeServer fNotificationListenPipe; // Pipe listener for server notification
+ JackThread* fThread; // Thread to execute the event loop
+ JackClient* fClient;
+
+ void ServerSyncCall(JackRequest* req, JackResult* res, int* result);
+ void ServerAsyncCall(JackRequest* req, JackResult* res, int* result);
+
+ public:
+
+ JackWinNamedPipeClientChannel();
+ virtual ~JackWinNamedPipeClientChannel();
+
+ int Open(const char* name, JackClient* obj);
+ void Close();
+
+ int Start();
+ void Stop();
+
+ void ClientNew(const char* name, int* shared_engine, int* shared_client, int* shared_ports, int* result);
+ void ClientClose(int refnum, int* result);
+
+ void ClientActivate(int refnum, int* result);
+ void ClientDeactivate(int refnum, int* result);
+
+ void PortRegister(int refnum, const char* name, unsigned int flags, unsigned int buffer_size, jack_port_id_t* port_index, int* result);
+ void PortUnRegister(int refnum, jack_port_id_t port_index, int* result);
+
+ void PortConnect(int refnum, const char* src, const char* dst, int* result);
+ void PortDisconnect(int refnum, const char* src, const char* dst, int* result);
+
+ void PortConnect(int refnum, jack_port_id_t src, jack_port_id_t dst, int* result);
+ void PortDisconnect(int refnum, jack_port_id_t src, jack_port_id_t dst, int* result);
+
+ void SetBufferSize(jack_nframes_t nframes, int* result);
+ void SetFreewheel(int onoff, int* result);
+
+ void ReleaseTimebase(int refnum, int* result);
+ void SetTimebaseCallback(int refnum, int conditional, int* result);
+
+ // JackRunnableInterface interface
+ bool Init();
+ bool Execute();
+};
+
+} // end of namespace
+
+#endif
+