2 Copyright (C) 2001-2003 Paul Davis
3 Copyright (C) 2004-2008 Grame
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "JackSystemDeps.h"
22 #include "JackGraphManager.h"
23 #include "JackInternalClient.h"
24 #include "JackServer.h"
25 #include "JackDebugClient.h"
26 #include "JackServerGlobals.h"
27 #include "JackTools.h"
28 #include "JackCompilerDeps.h"
29 #include "JackLockedEngine.h"
36 EXPORT jack_client_t
* jack_client_open_aux (const char *client_name
,
37 jack_options_t options
,
38 jack_status_t
*status
, va_list ap
);
39 EXPORT jack_client_t
* jack_client_open (const char *client_name
,
40 jack_options_t options
,
41 jack_status_t
*status
, ...);
42 EXPORT
int jack_client_close (jack_client_t
*client
);
43 EXPORT
int jack_get_client_pid (const char *name
);
51 EXPORT jack_client_t
* jack_client_open_aux(const char* client_name
, jack_options_t options
, jack_status_t
* status
, va_list ap
)
53 jack_varargs_t va
; /* variable arguments */
54 jack_status_t my_status
;
57 if (client_name
== NULL
) {
58 jack_error("jack_client_open called with a NULL client_name");
62 jack_log("jack_client_open %s", client_name
);
64 if (status
== NULL
) /* no status from caller? */
65 status
= &my_status
; /* use local status word */
66 *status
= (jack_status_t
)0;
68 /* validate parameters */
69 if ((options
& ~JackOpenOptions
)) {
70 int my_status1
= *status
| (JackFailure
| JackInvalidOption
);
71 *status
= (jack_status_t
)my_status1
;
75 /* parse variable arguments */
77 jack_varargs_parse(options
, ap
, &va
);
79 jack_varargs_init(&va
);
82 if (!JackServerGlobals::Init()) { // jack server initialisation
83 int my_status1
= (JackFailure
| JackServerError
);
84 *status
= (jack_status_t
)my_status1
;
89 client
= new JackDebugClient(new JackInternalClient(JackServerGlobals::fInstance
, GetSynchroTable())); // Debug mode
91 client
= new JackInternalClient(JackServerGlobals::fInstance
, GetSynchroTable());
94 int res
= client
->Open(va
.server_name
, client_name
, options
, status
);
97 JackServerGlobals::Destroy(); // jack server destruction
98 int my_status1
= (JackFailure
| JackServerError
);
99 *status
= (jack_status_t
)my_status1
;
102 return (jack_client_t
*)client
;
106 EXPORT jack_client_t
* jack_client_open(const char* ext_client_name
, jack_options_t options
, jack_status_t
* status
, ...)
108 assert(JackGlobals::fOpenMutex
);
109 JackGlobals::fOpenMutex
->Lock();
111 va_start(ap
, status
);
112 jack_client_t
* res
= jack_client_open_aux(ext_client_name
, options
, status
, ap
);
114 JackGlobals::fOpenMutex
->Unlock();
118 EXPORT
int jack_client_close(jack_client_t
* ext_client
)
120 assert(JackGlobals::fOpenMutex
);
121 JackGlobals::fOpenMutex
->Lock();
123 jack_log("jack_client_close");
124 JackClient
* client
= (JackClient
*)ext_client
;
125 if (client
== NULL
) {
126 jack_error("jack_client_close called with a NULL client");
128 res
= client
->Close();
130 JackServerGlobals::Destroy(); // jack server destruction
131 jack_log("jack_client_close res = %d", res
);
133 JackGlobals::fOpenMutex
->Unlock();
137 EXPORT
int jack_get_client_pid(const char *name
)
139 return (JackServerGlobals::fInstance
!= NULL
)
140 ? JackServerGlobals::fInstance
->GetEngine()->GetClientPID(name
)