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