blob: 86d5ef021306db9de2c103707a699caf9aaf25e9 [file] [log] [blame]
perkj9c16fe82016-07-12 15:04:07 -07001/*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef RTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_
12#define RTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_
perkj9c16fe82016-07-12 15:04:07 -070013
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#include "rtc_base/thread_checker.h"
perkj9c16fe82016-07-12 15:04:07 -070015
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020016namespace rtc {
perkj9c16fe82016-07-12 15:04:07 -070017
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020018class TaskQueue;
19// Real implementation of SequencedTaskChecker, for use in debug mode, or
20// for temporary use in release mode.
21//
22// Note: You should almost always use the SequencedTaskChecker class to get the
23// right version for your build configuration.
24class SequencedTaskCheckerImpl {
25 public:
26 SequencedTaskCheckerImpl();
27 ~SequencedTaskCheckerImpl();
28
29 bool CalledSequentially() const;
30
31 // Changes the task queue or thread that is checked for in IsCurrent. This
32 // may be useful when an object may be created on one task queue / thread and
33 // then used exclusively on another thread.
34 void Detach();
35
36 private:
Tommi10b40ce2018-02-19 13:34:00 +010037 friend class internal::AnnounceOnThread;
38 bool IsCurrent() const { return CalledSequentially(); }
39
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020040 typedef const void* QueueId;
41 CriticalSection lock_;
42 ThreadChecker thread_checker_;
43 mutable bool attached_;
44 mutable QueueId valid_queue_;
45};
46
47} // namespace rtc
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020048#endif // RTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_