absl_vlog_is_on.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // Copyright 2022 The Abseil Authors.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // -----------------------------------------------------------------------------
  16. // File: log/absl_vlog_is_on.h
  17. // -----------------------------------------------------------------------------
  18. //
  19. // This header defines the `ABSL_VLOG_IS_ON()` macro that controls the
  20. // variable-verbosity conditional logging.
  21. //
  22. // It's used by `VLOG` in log.h, or it can also be used directly like this:
  23. //
  24. // if (ABSL_VLOG_IS_ON(2)) {
  25. // foo_server.RecomputeStatisticsExpensive();
  26. // LOG(INFO) << foo_server.LastStatisticsAsString();
  27. // }
  28. //
  29. // Each source file has an effective verbosity level that's a non-negative
  30. // integer computed from the `--vmodule` and `--v` flags.
  31. // `ABSL_VLOG_IS_ON(n)` is true, and `VLOG(n)` logs, if that effective verbosity
  32. // level is greater than or equal to `n`.
  33. //
  34. // `--vmodule` takes a comma-delimited list of key=value pairs. Each key is a
  35. // pattern matched against filenames, and the values give the effective severity
  36. // level applied to matching files. '?' and '*' characters in patterns are
  37. // interpreted as single-character and zero-or-more-character wildcards.
  38. // Patterns including a slash character are matched against full pathnames,
  39. // while those without are matched against basenames only. One suffix (i.e. the
  40. // last . and everything after it) is stripped from each filename prior to
  41. // matching, as is the special suffix "-inl".
  42. //
  43. // Files are matched against globs in `--vmodule` in order, and the first match
  44. // determines the verbosity level.
  45. //
  46. // Files which do not match any pattern in `--vmodule` use the value of `--v` as
  47. // their effective verbosity level. The default is 0.
  48. //
  49. // SetVLOGLevel helper function is provided to do limited dynamic control over
  50. // V-logging by appending to `--vmodule`. Because these go at the beginning of
  51. // the list, they take priority over any globs previously added.
  52. //
  53. // Resetting --vmodule will override all previous modifications to `--vmodule`,
  54. // including via SetVLOGLevel.
  55. #ifndef ABSL_LOG_ABSL_VLOG_IS_ON_H_
  56. #define ABSL_LOG_ABSL_VLOG_IS_ON_H_
  57. #include "absl/base/attributes.h"
  58. #include "absl/base/config.h"
  59. #include "absl/log/internal/vlog_config.h" // IWYU pragma: export
  60. #include "absl/strings/string_view.h"
  61. // IWYU pragma: private, include "absl/log/log.h"
  62. // This is expanded at the callsite to allow the compiler to optimize
  63. // always-false cases out of the build.
  64. // An ABSL_MAX_VLOG_VERBOSITY of 2 means that VLOG(3) and above should never
  65. // log.
  66. #ifdef ABSL_MAX_VLOG_VERBOSITY
  67. #define ABSL_LOG_INTERNAL_MAX_LOG_VERBOSITY_CHECK(x) \
  68. ((x) <= ABSL_MAX_VLOG_VERBOSITY)&&
  69. #else
  70. #define ABSL_LOG_INTERNAL_MAX_LOG_VERBOSITY_CHECK(x)
  71. #endif
  72. // Each ABSL_VLOG_IS_ON call site gets its own VLogSite that registers with the
  73. // global linked list of sites to asynchronously update its verbosity level on
  74. // changes to --v or --vmodule. The verbosity can also be set by manually
  75. // calling SetVLOGLevel.
  76. //
  77. // ABSL_VLOG_IS_ON is not async signal safe, but it is guaranteed not to
  78. // allocate new memory.
  79. #define ABSL_VLOG_IS_ON(verbose_level) \
  80. (ABSL_LOG_INTERNAL_MAX_LOG_VERBOSITY_CHECK(verbose_level)[]() \
  81. ->::absl::log_internal::VLogSite * \
  82. { \
  83. ABSL_CONST_INIT static ::absl::log_internal::VLogSite site(__FILE__); \
  84. return &site; \
  85. }() \
  86. ->IsEnabled(verbose_level))
  87. #endif // ABSL_LOG_ABSL_VLOG_IS_ON_H_