annotate src/share/vm/runtime/task.hpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents 5a76ab815e34
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 61
diff changeset
2 * Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // A PeriodicTask has the sole purpose of executing its task
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // function with regular intervals.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // Usage:
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // PeriodicTask pf(10);
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // pf.enroll();
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // pf.disenroll();
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class PeriodicTask: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Useful constants.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // The interval constants are used to ensure the declared interval
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // is appropriate; it must be between min_interval and max_interval,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // and have a granularity of interval_gran (all in millis).
a61af66fc99e Initial load
duke
parents:
diff changeset
39 enum { max_tasks = 10, // Max number of periodic tasks in system
a61af66fc99e Initial load
duke
parents:
diff changeset
40 interval_gran = 10,
a61af66fc99e Initial load
duke
parents:
diff changeset
41 min_interval = 10,
a61af66fc99e Initial load
duke
parents:
diff changeset
42 max_interval = 10000 };
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 static int num_tasks() { return _num_tasks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 size_t _counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 const size_t _interval;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static int _num_tasks;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static PeriodicTask* _tasks[PeriodicTask::max_tasks];
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static void real_time_tick(size_t delay_time);
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static elapsedTimer _timer; // measures time between ticks
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static int _ticks; // total number of ticks
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static int _intervalHistogram[max_interval]; // to check spacing of timer interrupts
a61af66fc99e Initial load
duke
parents:
diff changeset
58 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static void print_intervals();
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Only the WatcherThread can cause us to execute PeriodicTasks
a61af66fc99e Initial load
duke
parents:
diff changeset
62 friend class WatcherThread;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 PeriodicTask(size_t interval_time); // interval is in milliseconds of elapsed time
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ~PeriodicTask();
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Tells whether is enrolled
a61af66fc99e Initial load
duke
parents:
diff changeset
68 bool is_enrolled() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Make the task active
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // NOTE: this may only be called before the WatcherThread has been started
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void enroll();
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Make the task deactive
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // NOTE: this may only be called either while the WatcherThread is
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // inactive or by a task from within its task() method. One-shot or
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // several-shot tasks may be implemented this way.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void disenroll();
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void execute_if_pending(size_t delay_time) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _counter += delay_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (_counter >= _interval) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _counter = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 task();
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Returns how long (time in milliseconds) before the next time we should
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // execute this task.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 size_t time_to_next_interval() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 assert(_interval > _counter, "task counter greater than interval?");
a61af66fc99e Initial load
duke
parents:
diff changeset
92 return _interval - _counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Calculate when the next periodic task will fire.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Called by the WatcherThread's run method.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // This assumes that periodic tasks aren't entering the system
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // dynamically, except for during startup.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 static size_t time_to_wait() {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (_num_tasks == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Don't wait any more; shut down the thread since we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // currently support dynamic enrollment.
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 size_t delay = _tasks[0]->time_to_next_interval();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 for (int index = 1; index < _num_tasks; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 delay = MIN2(delay, _tasks[index]->time_to_next_interval());
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 return delay;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // The task to perform at each period
a61af66fc99e Initial load
duke
parents:
diff changeset
114 virtual void task() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 };