1 // Copyright (c) 2012 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.
5 #ifndef CONTENT_GPU_GPU_WATCHDOG_THREAD_H_
6 #define CONTENT_GPU_GPU_WATCHDOG_THREAD_H_
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/weak_ptr.h"
10 #include "base/message_loop.h"
11 #include "base/threading/thread.h"
12 #include "base/time.h"
13 #include "content/common/gpu/gpu_watchdog.h"
17 // A thread that intermitently sends tasks to a group of watched message loops
18 // and deliberately crashes if one of them does not respond after a timeout.
19 class GpuWatchdogThread
: public base::Thread
,
21 public base::RefCountedThreadSafe
<GpuWatchdogThread
> {
23 explicit GpuWatchdogThread(int timeout
);
25 // Accessible on watched thread but only modified by watchdog thread.
26 bool armed() const { return armed_
; }
27 void PostAcknowledge();
29 // Implement GpuWatchdog.
30 virtual void CheckArmed() OVERRIDE
;
33 virtual void Init() OVERRIDE
;
34 virtual void CleanUp() OVERRIDE
;
37 friend class base::RefCountedThreadSafe
<GpuWatchdogThread
>;
39 // An object of this type intercepts the reception and completion of all tasks
40 // on the watched thread and checks whether the watchdog is armed.
41 class GpuWatchdogTaskObserver
: public MessageLoop::TaskObserver
{
43 explicit GpuWatchdogTaskObserver(GpuWatchdogThread
* watchdog
);
44 virtual ~GpuWatchdogTaskObserver();
46 // Implements MessageLoop::TaskObserver.
47 virtual void WillProcessTask(base::TimeTicks time_posted
) OVERRIDE
;
48 virtual void DidProcessTask(base::TimeTicks time_posted
) OVERRIDE
;
51 GpuWatchdogThread
* watchdog_
;
54 virtual ~GpuWatchdogThread();
58 void DeliberatelyTerminateToRecoverFromHang();
61 base::TimeDelta
GetWatchedThreadTime();
64 MessageLoop
* watched_message_loop_
;
65 base::TimeDelta timeout_
;
67 GpuWatchdogTaskObserver task_observer_
;
70 void* watched_thread_handle_
;
71 base::TimeDelta arm_cpu_time_
;
74 base::Time arm_absolute_time_
;
76 base::WeakPtrFactory
<GpuWatchdogThread
> weak_factory_
;
78 DISALLOW_COPY_AND_ASSIGN(GpuWatchdogThread
);
81 } // namespace content
83 #endif // CONTENT_GPU_GPU_WATCHDOG_THREAD_H_