[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
danakj | 0a44860 | 2015-03-10 00:31:16 | [diff] [blame] | 5 | #ifndef BASE_PENDING_TASK_H_ |
6 | #define BASE_PENDING_TASK_H_ | ||||
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 7 | |
ajwong | 4f13f74 | 2017-02-09 23:52:40 | [diff] [blame] | 8 | #include <array> |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 9 | |
[email protected] | c360bae7 | 2011-11-18 06:08:02 | [diff] [blame] | 10 | #include "base/base_export.h" |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 11 | #include "base/callback.h" |
Brett Wilson | 3d88e776 | 2017-08-14 19:54:38 | [diff] [blame] | 12 | #include "base/containers/queue.h" |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 13 | #include "base/location.h" |
[email protected] | 8f9a3a5 | 2013-06-28 15:14:18 | [diff] [blame] | 14 | #include "base/time/time.h" |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 15 | |
16 | namespace base { | ||||
17 | |||||
Hajime Hoshi | 64853ef | 2017-10-11 12:56:07 | [diff] [blame^] | 18 | enum class Nestable { |
19 | kNonNestable, | ||||
20 | kNestable, | ||||
21 | }; | ||||
22 | |||||
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 23 | // Contains data about a pending task. Stored in TaskQueue and DelayedTaskQueue |
24 | // for use by classes that queue and execute tasks. | ||||
Brett Wilson | b57e3dd | 2017-09-08 00:47:49 | [diff] [blame] | 25 | struct BASE_EXPORT PendingTask { |
Brett Wilson | 8e88b31 | 2017-09-12 05:22:16 | [diff] [blame] | 26 | PendingTask(const Location& posted_from, |
tzik | 739ffe3 | 2016-10-14 14:34:58 | [diff] [blame] | 27 | OnceClosure task, |
Hajime Hoshi | 64853ef | 2017-10-11 12:56:07 | [diff] [blame^] | 28 | TimeTicks delayed_run_time = TimeTicks(), |
29 | Nestable nestable = Nestable::kNestable); | ||||
tzik | b6769d5 | 2016-07-07 20:20:06 | [diff] [blame] | 30 | PendingTask(PendingTask&& other); |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 31 | ~PendingTask(); |
32 | |||||
tzik | b6769d5 | 2016-07-07 20:20:06 | [diff] [blame] | 33 | PendingTask& operator=(PendingTask&& other); |
34 | |||||
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 35 | // Used to support sorting. |
36 | bool operator<(const PendingTask& other) const; | ||||
37 | |||||
38 | // The task to run. | ||||
tzik | 739ffe3 | 2016-10-14 14:34:58 | [diff] [blame] | 39 | OnceClosure task; |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 40 | |
41 | // The site this PendingTask was posted from. | ||||
Brett Wilson | 8e88b31 | 2017-09-12 05:22:16 | [diff] [blame] | 42 | Location posted_from; |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 43 | |
Brett Wilson | b57e3dd | 2017-09-08 00:47:49 | [diff] [blame] | 44 | // The time when the task should be run. |
45 | base::TimeTicks delayed_run_time; | ||||
46 | |||||
ajwong | 4f13f74 | 2017-02-09 23:52:40 | [diff] [blame] | 47 | // Task backtrace. |
48 | std::array<const void*, 4> task_backtrace; | ||||
49 | |||||
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 50 | // Secondary sort key for run time. |
51 | int sequence_num; | ||||
52 | |||||
53 | // OK to dispatch from a nested loop. | ||||
Hajime Hoshi | 64853ef | 2017-10-11 12:56:07 | [diff] [blame^] | 54 | Nestable nestable; |
cpu | ee890795 | 2014-08-28 23:25:37 | [diff] [blame] | 55 | |
56 | // Needs high resolution timers. | ||||
57 | bool is_high_res; | ||||
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 58 | }; |
59 | |||||
Brett Wilson | 3d88e776 | 2017-08-14 19:54:38 | [diff] [blame] | 60 | using TaskQueue = base::queue<PendingTask>; |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 61 | |
[email protected] | 262060ff | 2011-11-17 23:26:53 | [diff] [blame] | 62 | // PendingTasks are sorted by their |delayed_run_time| property. |
danakj | 5d79215 | 2016-06-15 20:47:47 | [diff] [blame] | 63 | using DelayedTaskQueue = std::priority_queue<base::PendingTask>; |
[email protected] | 262060ff | 2011-11-17 23:26:53 | [diff] [blame] | 64 | |
[email protected] | dd1f9fe | 2011-11-15 23:36:30 | [diff] [blame] | 65 | } // namespace base |
66 | |||||
danakj | 0a44860 | 2015-03-10 00:31:16 | [diff] [blame] | 67 | #endif // BASE_PENDING_TASK_H_ |