blob: 684b1dc5027091cbac6cb8f0dd01fe7bb181103a [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
11#ifndef WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_
12#define WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_
13
perkj9c16fe82016-07-12 15:04:07 -070014#include "webrtc/base/thread_checker.h"
15
16namespace rtc {
17
perkj32012f82016-07-14 23:32:08 -070018class TaskQueue;
perkj9c16fe82016-07-12 15:04:07 -070019// 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:
kthelgason44e0efe2016-11-02 10:28:20 -070037 typedef const void* QueueId;
perkj9c16fe82016-07-12 15:04:07 -070038 CriticalSection lock_;
39 ThreadChecker thread_checker_;
40 mutable bool attached_;
kthelgason44e0efe2016-11-02 10:28:20 -070041 mutable QueueId valid_queue_;
perkj9c16fe82016-07-12 15:04:07 -070042};
43
44} // namespace rtc
45#endif // WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_