1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* Copyright (C) 2006 Constantin Kaplinsky. All Rights Reserved.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
//
// PollingScheduler class. It is used for deciding when to start new
// polling pass, and how much time it is ok to sleep before starting.
// PollingScheduler is given a desired polling interval, but it can
// add time between polling passes if needed for satisfying processor
// usage limitation.
//
#ifndef __POLLINGSCHEDULER_H__
#define __POLLINGSCHEDULER_H__
#include <x0vncserver/TimeMillis.h>
class PollingScheduler {
public:
PollingScheduler(int interval, int maxload = 50);
// Set polling parameters.
void setParameters(int interval, int maxload = 50);
// Reset the object into the initial state (no polling performed).
void reset();
// Check if the object is active (not in the initial state).
bool isRunning();
// Tell the scheduler that new polling pass is just being started.
void newPass();
// Inform the scheduler about times when we sleep.
void sleepStarted();
void sleepFinished();
// This function estimates time remaining before new polling pass.
int millisRemaining() const;
// This function tells if it's ok to start polling pass right now.
bool goodTimeToPoll() const;
protected:
// Parameters.
int m_interval;
int m_maxload;
// This boolean flag is true when we do not poll the screen.
bool m_initialState;
// Time stamp saved on starting current polling pass.
TimeMillis m_passStarted;
// Desired duration of current polling pass.
int m_ratedDuration;
// These are for measuring sleep time in current pass.
TimeMillis m_sleepStarted;
bool m_sleeping;
int m_sleptThisPass;
// Ring buffer for tracking past timing errors.
int m_errors[8];
int m_errorSum;
int m_errorAbsSum;
// Ring buffer for tracking total pass durations (work + sleep).
int m_durations[8];
int m_durationSum;
// Ring buffer for tracking past sleep times.
int m_slept[8];
int m_sleptSum;
// Indexer for all ring buffers.
int m_idx;
// Pass counter.
int m_count;
};
#endif // __POLLINGSCHEDULER_H__
|