Merge branch 'master' into develop
[jack2.git] / common / JackServer.h
blob71192e9e17a54cc5339412d5e94bc2d0e48a1593
1 /*
2 Copyright (C) 2001 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 #ifndef __JackServer__
22 #define __JackServer__
24 #include "JackCompilerDeps.h"
25 #include "driver_interface.h"
26 #include "JackDriverLoader.h"
27 #include "JackDriverInfo.h"
28 #include "JackConnectionManager.h"
29 #include "JackGlobals.h"
30 #include "JackPlatformPlug.h"
31 #include "jslist.h"
33 namespace Jack
36 class JackGraphManager;
37 class JackDriverClientInterface;
38 struct JackEngineControl;
39 class JackLockedEngine;
40 class JackLoadableInternalClient;
42 /*!
43 \brief The Jack server.
46 class SERVER_EXPORT JackServer
49 private:
51 JackDriverInfo* fDriverInfo;
52 JackDriverClientInterface* fAudioDriver;
53 JackDriverClientInterface* fFreewheelDriver;
54 JackDriverClientInterface* fThreadedFreewheelDriver;
55 JackLockedEngine* fEngine;
56 JackEngineControl* fEngineControl;
57 JackGraphManager* fGraphManager;
58 JackServerChannel fRequestChannel;
59 JackConnectionManager fConnectionState;
60 JackSynchro fSynchroTable[CLIENT_NUM];
61 bool fFreewheel;
63 int InternalClientLoadAux(JackLoadableInternalClient* client, const char* so_name, const char* client_name, int options, int* int_ref, jack_uuid_t uuid, int* status);
65 public:
67 JackServer(bool sync, bool temporary, int timeout, bool rt, int priority, int port_max, bool verbose, jack_timer_type_t clock, char self_connect_mode, const char* server_name);
68 ~JackServer();
70 // Server control
71 int Open(jack_driver_desc_t* driver_desc, JSList* driver_params);
72 int Close();
74 int Start();
75 int Stop();
77 bool IsRunning();
79 // RT thread
80 void Notify(int refnum, int notify, int value);
82 // From request thread : API
83 int SetBufferSize(jack_nframes_t buffer_size);
84 int SetFreewheel(bool onoff);
86 // Internals clients
87 int InternalClientLoad1(const char* client_name, const char* so_name, const char* objet_data, int options, int* int_ref, jack_uuid_t uuid, int* status);
88 int InternalClientLoad2(const char* client_name, const char* so_name, const JSList * parameters, int options, int* int_ref, jack_uuid_t uuid, int* status);
90 // Internal session file
91 int LoadInternalSessionFile(const char* file);
93 // Transport management
94 int ReleaseTimebase(int refnum);
95 int SetTimebaseCallback(int refnum, int conditional);
97 // Backend management
98 JackDriverInfo* AddSlave(jack_driver_desc_t* driver_desc, JSList* driver_params);
99 void RemoveSlave(JackDriverInfo* info);
100 int SwitchMaster(jack_driver_desc_t* driver_desc, JSList* driver_params);
102 // Object access
103 JackLockedEngine* GetEngine();
104 JackEngineControl* GetEngineControl();
105 JackSynchro* GetSynchroTable();
106 JackGraphManager* GetGraphManager();
110 } // end of namespace
113 #endif