Merge branch 'master' into port_register_notification_defer
[jack2.git] / macosx / JackMachPort.h
blob85176b3ffe2a070b894cf550171e0c75fcdb9d6b
1 /*
2 Copyright (C) 2004-2008 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 __JackMachPort__
21 #define __JackMachPort__
23 #include <mach/mach.h>
24 #include <mach/mach_types.h>
25 #include <mach/message.h>
26 #include <mach/mach_error.h>
27 #include <servers/bootstrap.h>
29 namespace Jack
32 /*!
33 \brief Mach port.
36 class JackMachPort
39 protected:
41 mach_port_t fBootPort;
42 mach_port_t fServerPort;
44 public:
46 JackMachPort():fBootPort(0), fServerPort(0)
48 virtual ~JackMachPort()
51 virtual bool AllocatePort(const char* name);
52 virtual bool AllocatePort(const char* name, int queue);
53 virtual bool ConnectPort(const char* name);
54 virtual bool DisconnectPort();
55 virtual bool DestroyPort();
56 virtual mach_port_t GetPort();
59 /*!
60 \brief Mach port set.
63 class JackMachPortSet : public JackMachPort
66 private:
68 mach_port_t fPortSet;
70 public:
72 JackMachPortSet():fPortSet(0)
74 virtual ~JackMachPortSet()
77 bool AllocatePort(const char* name);
78 bool AllocatePort(const char* name, int queue);
79 bool DisconnectPort();
80 bool DestroyPort();
81 mach_port_t GetPortSet();
82 mach_port_t AddPort();
85 } // end of namespace
87 #endif