cef_thread_checker_impl.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // Copyright (c) 2011 Google Inc. All rights reserved.
  2. //
  3. // Redistribution and use in source and binary forms, with or without
  4. // modification, are permitted provided that the following conditions are
  5. // met:
  6. //
  7. // * Redistributions of source code must retain the above copyright
  8. // notice, this list of conditions and the following disclaimer.
  9. // * Redistributions in binary form must reproduce the above
  10. // copyright notice, this list of conditions and the following disclaimer
  11. // in the documentation and/or other materials provided with the
  12. // distribution.
  13. // * Neither the name of Google Inc. nor the name Chromium Embedded
  14. // Framework nor the names of its contributors may be used to endorse
  15. // or promote products derived from this software without specific prior
  16. // written permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. // Do not include this header file directly. Use base/cef_thread_checker.h
  30. // instead.
  31. #ifndef CEF_INCLUDE_BASE_INTERNAL_THREAD_CHECKER_IMPL_H_
  32. #define CEF_INCLUDE_BASE_INTERNAL_THREAD_CHECKER_IMPL_H_
  33. #include "include/base/cef_lock.h"
  34. #include "include/base/cef_platform_thread.h"
  35. namespace base {
  36. // Real implementation of ThreadChecker, for use in debug mode, or
  37. // for temporary use in release mode (e.g. to CHECK on a threading issue
  38. // seen only in the wild).
  39. //
  40. // Note: You should almost always use the ThreadChecker class to get the
  41. // right version for your build configuration.
  42. class ThreadCheckerImpl {
  43. public:
  44. ThreadCheckerImpl();
  45. ~ThreadCheckerImpl();
  46. bool CalledOnValidThread() const;
  47. // Changes the thread that is checked for in CalledOnValidThread. This may
  48. // be useful when an object may be created on one thread and then used
  49. // exclusively on another thread.
  50. void DetachFromThread();
  51. private:
  52. void EnsureThreadIdAssigned() const;
  53. mutable base::Lock lock_;
  54. // This is mutable so that CalledOnValidThread can set it.
  55. // It's guarded by |lock_|.
  56. mutable PlatformThreadRef valid_thread_id_;
  57. };
  58. } // namespace base
  59. #endif // CEF_INCLUDE_BASE_INTERNAL_THREAD_CHECKER_IMPL_H_