Use jack_client_open instead of old jack_client_new.
[jack2.git] / common / JackEngineControl.cpp
blob872dcd320b8ade2ad862ae3d7ce805181e914b0c
1 /*
2 Copyright (C) 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 Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include "JackClientInterface.h"
22 #include "JackEngineControl.h"
23 #include "JackGraphManager.h"
24 #include "JackClientControl.h"
25 #include <algorithm>
26 #include <math.h>
28 namespace Jack
31 static inline jack_time_t JACK_MAX(jack_time_t a, jack_time_t b)
33 return (a < b) ? b : a;
36 void JackEngineControl::CalcCPULoad(JackClientInterface** table,
37 JackGraphManager* manager,
38 jack_time_t cur_cycle_begin,
39 jack_time_t prev_cycle_end)
41 fPrevCycleTime = fCurCycleTime;
42 fCurCycleTime = cur_cycle_begin;
43 jack_time_t last_cycle_end = prev_cycle_end;
45 // In Asynchronous mode, last cycle end is the max of client end dates
46 if (!fSyncMode) {
47 for (int i = fDriverNum; i < CLIENT_NUM; i++) {
48 JackClientInterface* client = table[i];
49 JackClientTiming* timing = manager->GetClientTiming(i);
50 if (client && client->GetClientControl()->fActive && timing->fStatus == Finished)
51 last_cycle_end = JACK_MAX(last_cycle_end, timing->fFinishedAt);
55 // Store the execution time for later averaging
56 fRollingClientUsecs[fRollingClientUsecsIndex++] = last_cycle_end - fPrevCycleTime;
57 if (fRollingClientUsecsIndex >= JACK_ENGINE_ROLLING_COUNT)
58 fRollingClientUsecsIndex = 0;
60 // Every so often, recompute the current maximum use over the
61 // last JACK_ENGINE_ROLLING_COUNT client iterations.
63 if (++fRollingClientUsecsCnt % fRollingInterval == 0) {
65 jack_time_t max_usecs = 0;
66 for (int i = 0; i < JACK_ENGINE_ROLLING_COUNT; i++)
67 max_usecs = JACK_MAX(fRollingClientUsecs[i], max_usecs);
69 fMaxUsecs = JACK_MAX(fMaxUsecs, max_usecs);
70 fSpareUsecs = jack_time_t((max_usecs < fPeriodUsecs) ? fPeriodUsecs - max_usecs : 0);
71 fCPULoad = ((1.f - (float(fSpareUsecs) / float(fPeriodUsecs))) * 50.f + (fCPULoad * 0.5f));
75 void JackEngineControl::ResetRollingUsecs()
77 memset(fRollingClientUsecs, 0, sizeof(fRollingClientUsecs));
78 fRollingClientUsecsIndex = 0;
79 fRollingClientUsecsCnt = 0;
80 fSpareUsecs = 0;
81 fRollingInterval = int(floor((JACK_ENGINE_ROLLING_INTERVAL * 1000.f) / fPeriodUsecs));
84 void JackEngineControl::NotifyXRun(float delayed_usecs)
86 fXrunDelayedUsecs = delayed_usecs;
87 if (delayed_usecs > fMaxDelayedUsecs)
88 fMaxDelayedUsecs = delayed_usecs;
91 } // end of namespace