ca3f87560a
-- 5a5dba4252e764e6737070bf0a31074bf23a3b41 by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 244898913 -- 3eb7d5b445ffbf08a104e39cd15aecf568417333 by Matt Calabrese <calabrese@google.com>: Introduce absl::is_trivially_move_constructible and absl::is_trivially_move_assignable, and update the absl::is_trivially_copy_constructible and absl::is_trivially_copy_assignable traits to use similar techniques (should now be closer to the standard behavior). PiperOrigin-RevId: 244859015 -- 7da05a24fa786cab3985de0c39a186d73dcbcfb5 by Abseil Team <absl-team@google.com>: Fix misspellings in comments in raw_hash_set.h. PiperOrigin-RevId: 244754700 -- 5c057be96048f21473d5ec45005ab4dcd8dd354f by Derek Mauro <dmauro@google.com>: Internal change PiperOrigin-RevId: 244744239 -- 592394e3c2e98f1238d3fb6fcb0d20c3e3739ba9 by Derek Mauro <dmauro@google.com>: Limit the raw_hash_set prefetch test to x86-64. PiperOrigin-RevId: 244737534 -- 99ebe4e003633c8ff7838b035b31a827994879ef by Derek Mauro <dmauro@google.com>: Workaround warning 4091 in an MSVC header. PiperOrigin-RevId: 244701744 -- 0aa23f09a32efe7985ee55b0217190f08da42477 by Abseil Team <absl-team@google.com>: Fix comment typo. PiperOrigin-RevId: 244659371 -- c6cdb87e9f28062c8daa29b3d8d68182ecc16383 by Derek Mauro <dmauro@google.com>: Fix -Wundef warnings and support -Wundef. PiperOrigin-RevId: 244244968 -- 06b81245f7696b20c3c63b0618d33ac25e29cad6 by Abseil Team <absl-team@google.com>: Fix a typo in inlined_vector.h. PiperOrigin-RevId: 244230809 -- 94877a2125d2cfe837384240e4d6551f39d737e4 by Greg Falcon <gfalcon@google.com>: Fix sysinfo_test for emscripten. PiperOrigin-RevId: 244198804 -- ec7783531ef7f9df2da37d341d61f7cb2bf843f0 by Shaindel Schwartz <shaindel@google.com>: Import of CCTZ from GitHub. Fixes #291. PiperOrigin-RevId: 244184598 -- b652c14fa95ea206c217487ee713b11f5d1762b3 by Matt Calabrese <calabrese@google.com>: Emulate the `in_place_index` and `in_place_type` variable templates such that they are syntactically usable in C++11 with `any` and `variant`. Also pull in the variable templates from namespace std when available. The main observable differences here are: 1) The types of `in_place_index_t<I>` and `in_place_type_t<T>` become function pointer types rather than structs when using the implementation that is not an alias of the std equivalents. 2) The types of `in_place_index<I>` and `in_place_type<T>` are not directly `in_place_index_t<I>` and `in_place_type_t<T>`, but rather they become function types that decay to the corresponding function pointer types. 3) The default constructor for `in_place_index_t` and `in_place_type_t` instantiations is no longer explicit, but for these templates I think that's less important than for something like `in_place_t` since the _type_t and _index_t versions basically never have their template parameter non-deduced when participating in overload resolution with conflicting candidates. 4) While idiomatic usage of `in_place_type_t` and `in_place_index_t` with std::variant and std::any should not be affected, there is the possibility that strange, non-idiomatic uses may be affected in the wild. 5) Default construction (rather than value-initialization) leads to a default-constructed pointer. PiperOrigin-RevId: 244180003 -- b9ac5a96581837ffa24532117b7ea302a5569751 by Derek Mauro <dmauro@google.com>: Fix MSVC debug assertion. isprint is undefined for values not representable as unsigned char or EOF. PiperOrigin-RevId: 244083005 -- 41758be6137c2f25e84b50f23938e49484be2903 by Shaindel Schwartz <shaindel@google.com>: Update config settings for Apple platforms. PiperOrigin-RevId: 244040587 -- c90df6a26db94b0305a0c954455a621542a89d91 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 244024427 -- c71e9ceb89495354eca7d02bd905ffeaa9029aec by Derek Mauro <dmauro@google.com>: Adds missing ABSL_DEFAULT_COPTS and ABSL_TEST_COPTS to CMakeLists.txt Don't error on deprecated declarations in tests. It is completely reasonable to test that code marked deprecated still works. PiperOrigin-RevId: 244003941 -- e1326a96527a8ba9b8d120161545260da9c4562e by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 243990623 -- 90b8e12934c7711e1bfcc0117d21288bf9220dee by Abseil Team <absl-team@google.com>: Add variation of absl::Base64Escape/WebSafeBase64Escape that directly returns its result. PiperOrigin-RevId: 243894308 -- 317fef3344481ebc5c35712d42f5d8a0fa64dff4 by Abseil Team <absl-team@google.com>: Enable raw logging in Emscripten builds. PiperOrigin-RevId: 243893705 GitOrigin-RevId: 5a5dba4252e764e6737070bf0a31074bf23a3b41 Change-Id: I19293aab73cc98d9e9bf6a9fdc30819764adb9db
235 lines
7.4 KiB
C++
235 lines
7.4 KiB
C++
// Copyright 2017 The Abseil Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "absl/base/internal/raw_logging.h"
|
|
|
|
#include <stddef.h>
|
|
#include <cstdarg>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
|
|
#include "absl/base/attributes.h"
|
|
#include "absl/base/config.h"
|
|
#include "absl/base/internal/atomic_hook.h"
|
|
#include "absl/base/log_severity.h"
|
|
|
|
// We know how to perform low-level writes to stderr in POSIX and Windows. For
|
|
// these platforms, we define the token ABSL_LOW_LEVEL_WRITE_SUPPORTED.
|
|
// Much of raw_logging.cc becomes a no-op when we can't output messages,
|
|
// although a FATAL ABSL_RAW_LOG message will still abort the process.
|
|
|
|
// ABSL_HAVE_POSIX_WRITE is defined when the platform provides posix write()
|
|
// (as from unistd.h)
|
|
//
|
|
// This preprocessor token is also defined in raw_io.cc. If you need to copy
|
|
// this, consider moving both to config.h instead.
|
|
#if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || \
|
|
defined(__Fuchsia__) || defined(__native_client__) || \
|
|
defined(__EMSCRIPTEN__)
|
|
#include <unistd.h>
|
|
|
|
|
|
#define ABSL_HAVE_POSIX_WRITE 1
|
|
#define ABSL_LOW_LEVEL_WRITE_SUPPORTED 1
|
|
#else
|
|
#undef ABSL_HAVE_POSIX_WRITE
|
|
#endif
|
|
|
|
// ABSL_HAVE_SYSCALL_WRITE is defined when the platform provides the syscall
|
|
// syscall(SYS_write, /*int*/ fd, /*char* */ buf, /*size_t*/ len);
|
|
// for low level operations that want to avoid libc.
|
|
#if (defined(__linux__) || defined(__FreeBSD__)) && !defined(__ANDROID__)
|
|
#include <sys/syscall.h>
|
|
#define ABSL_HAVE_SYSCALL_WRITE 1
|
|
#define ABSL_LOW_LEVEL_WRITE_SUPPORTED 1
|
|
#else
|
|
#undef ABSL_HAVE_SYSCALL_WRITE
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include <io.h>
|
|
|
|
#define ABSL_HAVE_RAW_IO 1
|
|
#define ABSL_LOW_LEVEL_WRITE_SUPPORTED 1
|
|
#else
|
|
#undef ABSL_HAVE_RAW_IO
|
|
#endif
|
|
|
|
// TODO(gfalcon): We want raw-logging to work on as many platforms as possible.
|
|
// Explicitly #error out when not ABSL_LOW_LEVEL_WRITE_SUPPORTED, except for a
|
|
// whitelisted set of platforms for which we expect not to be able to raw log.
|
|
|
|
ABSL_CONST_INIT static absl::base_internal::AtomicHook<
|
|
absl::raw_logging_internal::LogPrefixHook> log_prefix_hook;
|
|
ABSL_CONST_INIT static absl::base_internal::AtomicHook<
|
|
absl::raw_logging_internal::AbortHook> abort_hook;
|
|
|
|
#ifdef ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
static const char kTruncated[] = " ... (message truncated)\n";
|
|
|
|
// sprintf the format to the buffer, adjusting *buf and *size to reflect the
|
|
// consumed bytes, and return whether the message fit without truncation. If
|
|
// truncation occurred, if possible leave room in the buffer for the message
|
|
// kTruncated[].
|
|
inline static bool VADoRawLog(char** buf, int* size, const char* format,
|
|
va_list ap) ABSL_PRINTF_ATTRIBUTE(3, 0);
|
|
inline static bool VADoRawLog(char** buf, int* size,
|
|
const char* format, va_list ap) {
|
|
int n = vsnprintf(*buf, *size, format, ap);
|
|
bool result = true;
|
|
if (n < 0 || n > *size) {
|
|
result = false;
|
|
if (static_cast<size_t>(*size) > sizeof(kTruncated)) {
|
|
n = *size - sizeof(kTruncated); // room for truncation message
|
|
} else {
|
|
n = 0; // no room for truncation message
|
|
}
|
|
}
|
|
*size -= n;
|
|
*buf += n;
|
|
return result;
|
|
}
|
|
#endif // ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
|
|
static constexpr int kLogBufSize = 3000;
|
|
|
|
namespace {
|
|
|
|
// CAVEAT: vsnprintf called from *DoRawLog below has some (exotic) code paths
|
|
// that invoke malloc() and getenv() that might acquire some locks.
|
|
|
|
// Helper for RawLog below.
|
|
// *DoRawLog writes to *buf of *size and move them past the written portion.
|
|
// It returns true iff there was no overflow or error.
|
|
bool DoRawLog(char** buf, int* size, const char* format, ...)
|
|
ABSL_PRINTF_ATTRIBUTE(3, 4);
|
|
bool DoRawLog(char** buf, int* size, const char* format, ...) {
|
|
va_list ap;
|
|
va_start(ap, format);
|
|
int n = vsnprintf(*buf, *size, format, ap);
|
|
va_end(ap);
|
|
if (n < 0 || n > *size) return false;
|
|
*size -= n;
|
|
*buf += n;
|
|
return true;
|
|
}
|
|
|
|
void RawLogVA(absl::LogSeverity severity, const char* file, int line,
|
|
const char* format, va_list ap) ABSL_PRINTF_ATTRIBUTE(4, 0);
|
|
void RawLogVA(absl::LogSeverity severity, const char* file, int line,
|
|
const char* format, va_list ap) {
|
|
char buffer[kLogBufSize];
|
|
char* buf = buffer;
|
|
int size = sizeof(buffer);
|
|
#ifdef ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
bool enabled = true;
|
|
#else
|
|
bool enabled = false;
|
|
#endif
|
|
|
|
#ifdef ABSL_MIN_LOG_LEVEL
|
|
if (severity < static_cast<absl::LogSeverity>(ABSL_MIN_LOG_LEVEL) &&
|
|
severity < absl::LogSeverity::kFatal) {
|
|
enabled = false;
|
|
}
|
|
#endif
|
|
|
|
auto log_prefix_hook_ptr = log_prefix_hook.Load();
|
|
if (log_prefix_hook_ptr) {
|
|
enabled = log_prefix_hook_ptr(severity, file, line, &buf, &size);
|
|
} else {
|
|
if (enabled) {
|
|
DoRawLog(&buf, &size, "[%s : %d] RAW: ", file, line);
|
|
}
|
|
}
|
|
const char* const prefix_end = buf;
|
|
|
|
#ifdef ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
if (enabled) {
|
|
bool no_chop = VADoRawLog(&buf, &size, format, ap);
|
|
if (no_chop) {
|
|
DoRawLog(&buf, &size, "\n");
|
|
} else {
|
|
DoRawLog(&buf, &size, "%s", kTruncated);
|
|
}
|
|
absl::raw_logging_internal::SafeWriteToStderr(buffer, strlen(buffer));
|
|
}
|
|
#else
|
|
static_cast<void>(format);
|
|
static_cast<void>(ap);
|
|
#endif
|
|
|
|
// Abort the process after logging a FATAL message, even if the output itself
|
|
// was suppressed.
|
|
if (severity == absl::LogSeverity::kFatal) {
|
|
abort_hook(file, line, buffer, prefix_end, buffer + kLogBufSize);
|
|
abort();
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
namespace absl {
|
|
namespace raw_logging_internal {
|
|
void SafeWriteToStderr(const char *s, size_t len) {
|
|
#if defined(ABSL_HAVE_SYSCALL_WRITE)
|
|
syscall(SYS_write, STDERR_FILENO, s, len);
|
|
#elif defined(ABSL_HAVE_POSIX_WRITE)
|
|
write(STDERR_FILENO, s, len);
|
|
#elif defined(ABSL_HAVE_RAW_IO)
|
|
_write(/* stderr */ 2, s, len);
|
|
#else
|
|
// stderr logging unsupported on this platform
|
|
(void) s;
|
|
(void) len;
|
|
#endif
|
|
}
|
|
|
|
void RawLog(absl::LogSeverity severity, const char* file, int line,
|
|
const char* format, ...) ABSL_PRINTF_ATTRIBUTE(4, 5);
|
|
void RawLog(absl::LogSeverity severity, const char* file, int line,
|
|
const char* format, ...) {
|
|
va_list ap;
|
|
va_start(ap, format);
|
|
RawLogVA(severity, file, line, format, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
// Non-formatting version of RawLog().
|
|
//
|
|
// TODO(gfalcon): When string_view no longer depends on base, change this
|
|
// interface to take its message as a string_view instead.
|
|
static void DefaultInternalLog(absl::LogSeverity severity, const char* file,
|
|
int line, const std::string& message) {
|
|
RawLog(severity, file, line, "%s", message.c_str());
|
|
}
|
|
|
|
bool RawLoggingFullySupported() {
|
|
#ifdef ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
return true;
|
|
#else // !ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
return false;
|
|
#endif // !ABSL_LOW_LEVEL_WRITE_SUPPORTED
|
|
}
|
|
|
|
ABSL_CONST_INIT absl::base_internal::AtomicHook<InternalLogFunction>
|
|
internal_log_function(DefaultInternalLog);
|
|
|
|
void RegisterInternalLogFunction(InternalLogFunction func) {
|
|
internal_log_function.Store(func);
|
|
}
|
|
|
|
} // namespace raw_logging_internal
|
|
} // namespace absl
|