2019-05-07 21:56:42 +02:00
|
|
|
//
|
|
|
|
// Copyright 2019 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.
|
|
|
|
|
|
|
|
#ifndef ABSL_FLAGS_INTERNAL_FLAG_H_
|
|
|
|
#define ABSL_FLAGS_INTERNAL_FLAG_H_
|
|
|
|
|
2020-01-10 17:42:35 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-10-21 19:21:03 +02:00
|
|
|
#include <atomic>
|
2019-09-06 11:25:12 +02:00
|
|
|
#include <cstring>
|
2020-01-10 17:42:35 +01:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2020-02-05 23:38:00 +01:00
|
|
|
#include <type_traits>
|
2019-09-06 11:25:12 +02:00
|
|
|
|
2020-02-13 15:52:24 +01:00
|
|
|
#include "absl/base/call_once.h"
|
2020-01-10 17:42:35 +01:00
|
|
|
#include "absl/base/config.h"
|
2019-10-21 19:21:03 +02:00
|
|
|
#include "absl/base/thread_annotations.h"
|
2020-01-09 18:58:48 +01:00
|
|
|
#include "absl/flags/config.h"
|
2019-05-07 21:56:42 +02:00
|
|
|
#include "absl/flags/internal/commandlineflag.h"
|
|
|
|
#include "absl/flags/internal/registry.h"
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
#include "absl/memory/memory.h"
|
|
|
|
#include "absl/strings/str_cat.h"
|
2020-01-10 17:42:35 +01:00
|
|
|
#include "absl/strings/string_view.h"
|
2019-10-21 19:21:03 +02:00
|
|
|
#include "absl/synchronization/mutex.h"
|
2019-05-07 21:56:42 +02:00
|
|
|
|
|
|
|
namespace absl {
|
2019-12-12 19:36:03 +01:00
|
|
|
ABSL_NAMESPACE_BEGIN
|
2019-05-07 21:56:42 +02:00
|
|
|
namespace flags_internal {
|
|
|
|
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
template <typename T>
|
|
|
|
class Flag;
|
|
|
|
|
2020-02-14 18:41:25 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2020-02-20 21:34:37 +01:00
|
|
|
// Flag value type operations, eg., parsing, copying, etc. are provided
|
2020-02-14 18:41:25 +01:00
|
|
|
// by function specific to that type with a signature matching FlagOpFn.
|
|
|
|
|
2020-02-20 21:34:37 +01:00
|
|
|
enum class FlagOp {
|
2020-02-14 18:41:25 +01:00
|
|
|
kDelete,
|
|
|
|
kClone,
|
|
|
|
kCopy,
|
|
|
|
kCopyConstruct,
|
|
|
|
kSizeof,
|
|
|
|
kStaticTypeId,
|
|
|
|
kParse,
|
|
|
|
kUnparse,
|
|
|
|
};
|
|
|
|
using FlagOpFn = void* (*)(FlagOp, const void*, void*, void*);
|
|
|
|
|
2020-02-20 21:34:37 +01:00
|
|
|
// Flag value specific operations routine.
|
2020-02-14 18:41:25 +01:00
|
|
|
template <typename T>
|
|
|
|
void* FlagOps(FlagOp op, const void* v1, void* v2, void* v3) {
|
|
|
|
switch (op) {
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kDelete:
|
2020-02-14 18:41:25 +01:00
|
|
|
delete static_cast<const T*>(v1);
|
|
|
|
return nullptr;
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kClone:
|
2020-02-14 18:41:25 +01:00
|
|
|
return new T(*static_cast<const T*>(v1));
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kCopy:
|
2020-02-14 18:41:25 +01:00
|
|
|
*static_cast<T*>(v2) = *static_cast<const T*>(v1);
|
|
|
|
return nullptr;
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kCopyConstruct:
|
2020-02-14 18:41:25 +01:00
|
|
|
new (v2) T(*static_cast<const T*>(v1));
|
|
|
|
return nullptr;
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kSizeof:
|
2020-02-14 18:41:25 +01:00
|
|
|
return reinterpret_cast<void*>(sizeof(T));
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kStaticTypeId:
|
2020-02-14 18:41:25 +01:00
|
|
|
return reinterpret_cast<void*>(&FlagStaticTypeIdGen<T>);
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kParse: {
|
2020-02-14 18:41:25 +01:00
|
|
|
// Initialize the temporary instance of type T based on current value in
|
|
|
|
// destination (which is going to be flag's default value).
|
|
|
|
T temp(*static_cast<T*>(v2));
|
|
|
|
if (!absl::ParseFlag<T>(*static_cast<const absl::string_view*>(v1), &temp,
|
|
|
|
static_cast<std::string*>(v3))) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
*static_cast<T*>(v2) = std::move(temp);
|
|
|
|
return v2;
|
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
case FlagOp::kUnparse:
|
2020-02-14 18:41:25 +01:00
|
|
|
*static_cast<std::string*>(v2) =
|
|
|
|
absl::UnparseFlag<T>(*static_cast<const T*>(v1));
|
|
|
|
return nullptr;
|
|
|
|
default:
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-20 21:34:37 +01:00
|
|
|
// Deletes memory interpreting obj as flag value type pointer.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline void Delete(FlagOpFn op, const void* obj) {
|
2020-02-20 21:34:37 +01:00
|
|
|
op(FlagOp::kDelete, obj, nullptr, nullptr);
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Makes a copy of flag value pointed by obj.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline void* Clone(FlagOpFn op, const void* obj) {
|
2020-02-20 21:34:37 +01:00
|
|
|
return op(FlagOp::kClone, obj, nullptr, nullptr);
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Copies src to dst interpreting as flag value type pointers.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline void Copy(FlagOpFn op, const void* src, void* dst) {
|
2020-02-20 21:34:37 +01:00
|
|
|
op(FlagOp::kCopy, src, dst, nullptr);
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Construct a copy of flag value in a location pointed by dst
|
|
|
|
// based on src - pointer to the flag's value.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline void CopyConstruct(FlagOpFn op, const void* src, void* dst) {
|
2020-02-20 21:34:37 +01:00
|
|
|
op(FlagOp::kCopyConstruct, src, dst, nullptr);
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Returns true if parsing of input text is successfull.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline bool Parse(FlagOpFn op, absl::string_view text, void* dst,
|
|
|
|
std::string* error) {
|
2020-02-20 21:34:37 +01:00
|
|
|
return op(FlagOp::kParse, &text, dst, error) != nullptr;
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Returns string representing supplied value.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline std::string Unparse(FlagOpFn op, const void* val) {
|
|
|
|
std::string result;
|
2020-02-20 21:34:37 +01:00
|
|
|
op(FlagOp::kUnparse, val, &result, nullptr);
|
2020-02-14 18:41:25 +01:00
|
|
|
return result;
|
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Returns size of flag value type.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline size_t Sizeof(FlagOpFn op) {
|
|
|
|
// This sequence of casts reverses the sequence from
|
|
|
|
// `flags_internal::FlagOps()`
|
|
|
|
return static_cast<size_t>(reinterpret_cast<intptr_t>(
|
2020-02-20 21:34:37 +01:00
|
|
|
op(FlagOp::kSizeof, nullptr, nullptr, nullptr)));
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
2020-02-20 21:34:37 +01:00
|
|
|
// Returns static type id coresponding to the value type.
|
2020-02-14 18:41:25 +01:00
|
|
|
inline FlagStaticTypeId StaticTypeId(FlagOpFn op) {
|
|
|
|
return reinterpret_cast<FlagStaticTypeId>(
|
2020-02-20 21:34:37 +01:00
|
|
|
op(FlagOp::kStaticTypeId, nullptr, nullptr, nullptr));
|
2020-02-14 18:41:25 +01:00
|
|
|
}
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Persistent state of the flag data.
|
|
|
|
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
template <typename T>
|
|
|
|
class FlagState : public flags_internal::FlagStateInterface {
|
|
|
|
public:
|
|
|
|
FlagState(Flag<T>* flag, T&& cur, bool modified, bool on_command_line,
|
|
|
|
int64_t counter)
|
|
|
|
: flag_(flag),
|
|
|
|
cur_value_(std::move(cur)),
|
|
|
|
modified_(modified),
|
|
|
|
on_command_line_(on_command_line),
|
|
|
|
counter_(counter) {}
|
|
|
|
|
|
|
|
~FlagState() override = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class Flag<T>;
|
|
|
|
|
|
|
|
// Restores the flag to the saved state.
|
|
|
|
void Restore() const override;
|
|
|
|
|
|
|
|
// Flag and saved flag data.
|
|
|
|
Flag<T>* flag_;
|
|
|
|
T cur_value_;
|
|
|
|
bool modified_;
|
|
|
|
bool on_command_line_;
|
|
|
|
int64_t counter_;
|
|
|
|
};
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Flag help auxiliary structs.
|
|
|
|
|
2019-11-18 20:02:26 +01:00
|
|
|
// This is help argument for absl::Flag encapsulating the string literal pointer
|
|
|
|
// or pointer to function generating it as well as enum descriminating two
|
|
|
|
// cases.
|
|
|
|
using HelpGenFunc = std::string (*)();
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
union FlagHelpMsg {
|
|
|
|
constexpr explicit FlagHelpMsg(const char* help_msg) : literal(help_msg) {}
|
|
|
|
constexpr explicit FlagHelpMsg(HelpGenFunc help_gen) : gen_func(help_gen) {}
|
2019-11-18 20:02:26 +01:00
|
|
|
|
|
|
|
const char* literal;
|
|
|
|
HelpGenFunc gen_func;
|
|
|
|
};
|
|
|
|
|
2020-02-07 22:06:07 +01:00
|
|
|
enum class FlagHelpKind : uint8_t { kLiteral = 0, kGenFunc = 1 };
|
2019-11-18 20:02:26 +01:00
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
struct FlagHelpArg {
|
|
|
|
FlagHelpMsg source;
|
|
|
|
FlagHelpKind kind;
|
2019-11-18 20:02:26 +01:00
|
|
|
};
|
|
|
|
|
2020-01-03 17:41:10 +01:00
|
|
|
extern const char kStrippedFlagHelp[];
|
|
|
|
|
2019-11-18 20:02:26 +01:00
|
|
|
// HelpConstexprWrap is used by struct AbslFlagHelpGenFor##name generated by
|
|
|
|
// ABSL_FLAG macro. It is only used to silence the compiler in the case where
|
|
|
|
// help message expression is not constexpr and does not have type const char*.
|
|
|
|
// If help message expression is indeed constexpr const char* HelpConstexprWrap
|
|
|
|
// is just a trivial identity function.
|
|
|
|
template <typename T>
|
|
|
|
const char* HelpConstexprWrap(const T&) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
constexpr const char* HelpConstexprWrap(const char* p) { return p; }
|
|
|
|
constexpr const char* HelpConstexprWrap(char* p) { return p; }
|
|
|
|
|
|
|
|
// These two HelpArg overloads allows us to select at compile time one of two
|
|
|
|
// way to pass Help argument to absl::Flag. We'll be passing
|
|
|
|
// AbslFlagHelpGenFor##name as T and integer 0 as a single argument to prefer
|
|
|
|
// first overload if possible. If T::Const is evaluatable on constexpr
|
|
|
|
// context (see non template int parameter below) we'll choose first overload.
|
|
|
|
// In this case the help message expression is immediately evaluated and is used
|
|
|
|
// to construct the absl::Flag. No additionl code is generated by ABSL_FLAG.
|
|
|
|
// Otherwise SFINAE kicks in and first overload is dropped from the
|
|
|
|
// consideration, in which case the second overload will be used. The second
|
|
|
|
// overload does not attempt to evaluate the help message expression
|
|
|
|
// immediately and instead delays the evaluation by returing the function
|
|
|
|
// pointer (&T::NonConst) genering the help message when necessary. This is
|
|
|
|
// evaluatable in constexpr context, but the cost is an extra function being
|
|
|
|
// generated in the ABSL_FLAG code.
|
|
|
|
template <typename T, int = (T::Const(), 1)>
|
2020-02-05 23:38:00 +01:00
|
|
|
constexpr FlagHelpArg HelpArg(int) {
|
|
|
|
return {FlagHelpMsg(T::Const()), FlagHelpKind::kLiteral};
|
2019-11-18 20:02:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2020-02-05 23:38:00 +01:00
|
|
|
constexpr FlagHelpArg HelpArg(char) {
|
|
|
|
return {FlagHelpMsg(&T::NonConst), FlagHelpKind::kGenFunc};
|
2019-11-18 20:02:26 +01:00
|
|
|
}
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Flag default value auxiliary structs.
|
|
|
|
|
2019-12-02 19:41:53 +01:00
|
|
|
// Signature for the function generating the initial flag value (usually
|
2019-11-18 20:02:26 +01:00
|
|
|
// based on default value supplied in flag's definition)
|
2019-12-02 19:41:53 +01:00
|
|
|
using FlagDfltGenFunc = void* (*)();
|
|
|
|
|
|
|
|
union FlagDefaultSrc {
|
|
|
|
constexpr explicit FlagDefaultSrc(FlagDfltGenFunc gen_func_arg)
|
|
|
|
: gen_func(gen_func_arg) {}
|
|
|
|
|
|
|
|
void* dynamic_value;
|
|
|
|
FlagDfltGenFunc gen_func;
|
|
|
|
};
|
|
|
|
|
2020-02-07 22:06:07 +01:00
|
|
|
enum class FlagDefaultKind : uint8_t { kDynamicValue = 0, kGenFunc = 1 };
|
2019-11-18 20:02:26 +01:00
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Flag current value auxiliary structs.
|
|
|
|
|
|
|
|
// The minimum atomic size we believe to generate lock free code, i.e. all
|
|
|
|
// trivially copyable types not bigger this size generate lock free code.
|
|
|
|
static constexpr int kMinLockFreeAtomicSize = 8;
|
|
|
|
|
|
|
|
// The same as kMinLockFreeAtomicSize but maximum atomic size. As double words
|
|
|
|
// might use two registers, we want to dispatch the logic for them.
|
|
|
|
#if defined(ABSL_FLAGS_INTERNAL_ATOMIC_DOUBLE_WORD)
|
|
|
|
static constexpr int kMaxLockFreeAtomicSize = 16;
|
|
|
|
#else
|
|
|
|
static constexpr int kMaxLockFreeAtomicSize = 8;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// We can use atomic in cases when it fits in the register, trivially copyable
|
|
|
|
// in order to make memcpy operations.
|
|
|
|
template <typename T>
|
|
|
|
struct IsAtomicFlagTypeTrait {
|
|
|
|
static constexpr bool value =
|
|
|
|
(sizeof(T) <= kMaxLockFreeAtomicSize &&
|
|
|
|
type_traits_internal::is_trivially_copyable<T>::value);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Clang does not always produce cmpxchg16b instruction when alignment of a 16
|
|
|
|
// bytes type is not 16.
|
|
|
|
struct alignas(16) FlagsInternalTwoWordsType {
|
|
|
|
int64_t first;
|
|
|
|
int64_t second;
|
|
|
|
};
|
|
|
|
|
|
|
|
constexpr bool operator==(const FlagsInternalTwoWordsType& that,
|
|
|
|
const FlagsInternalTwoWordsType& other) {
|
|
|
|
return that.first == other.first && that.second == other.second;
|
|
|
|
}
|
|
|
|
constexpr bool operator!=(const FlagsInternalTwoWordsType& that,
|
|
|
|
const FlagsInternalTwoWordsType& other) {
|
|
|
|
return !(that == other);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr int64_t SmallAtomicInit() { return 0xababababababababll; }
|
|
|
|
|
|
|
|
template <typename T, typename S = void>
|
|
|
|
struct BestAtomicType {
|
|
|
|
using type = int64_t;
|
|
|
|
static constexpr int64_t AtomicInit() { return SmallAtomicInit(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct BestAtomicType<
|
|
|
|
T, typename std::enable_if<(kMinLockFreeAtomicSize < sizeof(T) &&
|
|
|
|
sizeof(T) <= kMaxLockFreeAtomicSize),
|
|
|
|
void>::type> {
|
|
|
|
using type = FlagsInternalTwoWordsType;
|
|
|
|
static constexpr FlagsInternalTwoWordsType AtomicInit() {
|
|
|
|
return {SmallAtomicInit(), SmallAtomicInit()};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FlagValue {
|
|
|
|
// Heap allocated value.
|
|
|
|
void* dynamic = nullptr;
|
|
|
|
// For some types, a copy of the current value is kept in an atomically
|
|
|
|
// accessible field.
|
|
|
|
union Atomics {
|
|
|
|
// Using small atomic for small types.
|
|
|
|
std::atomic<int64_t> small_atomic;
|
|
|
|
template <typename T,
|
|
|
|
typename K = typename std::enable_if<
|
|
|
|
(sizeof(T) <= kMinLockFreeAtomicSize), void>::type>
|
|
|
|
int64_t load() const {
|
|
|
|
return small_atomic.load(std::memory_order_acquire);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(ABSL_FLAGS_INTERNAL_ATOMIC_DOUBLE_WORD)
|
|
|
|
// Using big atomics for big types.
|
|
|
|
std::atomic<FlagsInternalTwoWordsType> big_atomic;
|
|
|
|
template <typename T, typename K = typename std::enable_if<
|
|
|
|
(kMinLockFreeAtomicSize < sizeof(T) &&
|
|
|
|
sizeof(T) <= kMaxLockFreeAtomicSize),
|
|
|
|
void>::type>
|
|
|
|
FlagsInternalTwoWordsType load() const {
|
|
|
|
return big_atomic.load(std::memory_order_acquire);
|
|
|
|
}
|
|
|
|
constexpr Atomics()
|
|
|
|
: big_atomic{FlagsInternalTwoWordsType{SmallAtomicInit(),
|
|
|
|
SmallAtomicInit()}} {}
|
|
|
|
#else
|
|
|
|
constexpr Atomics() : small_atomic{SmallAtomicInit()} {}
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
Atomics atomics{};
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Flag callback auxiliary structs.
|
|
|
|
|
2019-08-23 20:38:04 +02:00
|
|
|
// Signature for the mutation callback used by watched Flags
|
|
|
|
// The callback is noexcept.
|
|
|
|
// TODO(rogeeff): add noexcept after C++17 support is added.
|
2020-02-05 23:38:00 +01:00
|
|
|
using FlagCallbackFunc = void (*)();
|
|
|
|
|
|
|
|
struct FlagCallback {
|
|
|
|
FlagCallbackFunc func;
|
|
|
|
absl::Mutex guard; // Guard for concurrent callback invocations.
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Flag implementation, which does not depend on flag value type.
|
|
|
|
// The class encapsulates the Flag's data and access to it.
|
2019-08-23 20:38:04 +02:00
|
|
|
|
2019-12-02 19:41:53 +01:00
|
|
|
struct DynValueDeleter {
|
2020-02-05 23:38:00 +01:00
|
|
|
explicit DynValueDeleter(FlagOpFn op_arg = nullptr) : op(op_arg) {}
|
|
|
|
void operator()(void* ptr) const {
|
|
|
|
if (op != nullptr) Delete(op, ptr);
|
|
|
|
}
|
2019-12-02 19:41:53 +01:00
|
|
|
|
2020-02-21 21:51:36 +01:00
|
|
|
FlagOpFn op;
|
2019-12-02 19:41:53 +01:00
|
|
|
};
|
2019-08-23 20:38:04 +02:00
|
|
|
|
2019-10-21 19:21:03 +02:00
|
|
|
class FlagImpl {
|
|
|
|
public:
|
2020-02-05 23:38:00 +01:00
|
|
|
constexpr FlagImpl(const char* name, const char* filename, FlagOpFn op,
|
2020-02-14 18:41:25 +01:00
|
|
|
FlagHelpArg help, FlagDfltGenFunc default_value_gen)
|
2020-01-03 17:41:10 +01:00
|
|
|
: name_(name),
|
|
|
|
filename_(filename),
|
|
|
|
op_(op),
|
2019-11-18 20:02:26 +01:00
|
|
|
help_(help.source),
|
2020-02-07 22:06:07 +01:00
|
|
|
help_source_kind_(static_cast<uint8_t>(help.kind)),
|
|
|
|
def_kind_(static_cast<uint8_t>(FlagDefaultKind::kGenFunc)),
|
|
|
|
modified_(false),
|
|
|
|
on_command_line_(false),
|
|
|
|
counter_(0),
|
|
|
|
callback_(nullptr),
|
2020-02-21 21:51:36 +01:00
|
|
|
default_value_(default_value_gen),
|
2019-12-12 19:36:03 +01:00
|
|
|
data_guard_{} {}
|
2019-10-21 19:21:03 +02:00
|
|
|
|
|
|
|
// Constant access methods
|
2020-01-03 17:41:10 +01:00
|
|
|
absl::string_view Name() const;
|
|
|
|
std::string Filename() const;
|
2019-11-18 20:02:26 +01:00
|
|
|
std::string Help() const;
|
2019-12-02 19:41:53 +01:00
|
|
|
bool IsModified() const ABSL_LOCKS_EXCLUDED(*DataGuard());
|
|
|
|
bool IsSpecifiedOnCommandLine() const ABSL_LOCKS_EXCLUDED(*DataGuard());
|
|
|
|
std::string DefaultValue() const ABSL_LOCKS_EXCLUDED(*DataGuard());
|
|
|
|
std::string CurrentValue() const ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2020-02-10 19:18:03 +01:00
|
|
|
void Read(void* dst) const ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2020-01-09 18:58:48 +01:00
|
|
|
|
2020-02-04 23:18:00 +01:00
|
|
|
template <typename T, typename std::enable_if<
|
2020-02-05 23:38:00 +01:00
|
|
|
!IsAtomicFlagTypeTrait<T>::value, int>::type = 0>
|
2020-02-04 23:18:00 +01:00
|
|
|
void Get(T* dst) const {
|
2020-02-14 18:41:25 +01:00
|
|
|
AssertValidType(&flags_internal::FlagStaticTypeIdGen<T>);
|
2020-02-10 19:18:03 +01:00
|
|
|
Read(dst);
|
2020-02-04 23:18:00 +01:00
|
|
|
}
|
|
|
|
// Overload for `GetFlag()` for types that support lock-free reads.
|
2020-02-05 23:38:00 +01:00
|
|
|
template <typename T, typename std::enable_if<IsAtomicFlagTypeTrait<T>::value,
|
|
|
|
int>::type = 0>
|
2020-02-04 23:18:00 +01:00
|
|
|
void Get(T* dst) const {
|
2020-02-10 19:18:03 +01:00
|
|
|
// For flags of types which can be accessed "atomically" we want to avoid
|
|
|
|
// slowing down flag value access due to type validation. That's why
|
|
|
|
// this validation is hidden behind !NDEBUG
|
|
|
|
#ifndef NDEBUG
|
2020-02-14 18:41:25 +01:00
|
|
|
AssertValidType(&flags_internal::FlagStaticTypeIdGen<T>);
|
2020-02-10 19:18:03 +01:00
|
|
|
#endif
|
|
|
|
using U = flags_internal::BestAtomicType<T>;
|
|
|
|
typename U::type r = value_.atomics.template load<T>();
|
2020-01-09 18:58:48 +01:00
|
|
|
if (r != U::AtomicInit()) {
|
2020-02-04 23:18:00 +01:00
|
|
|
std::memcpy(static_cast<void*>(dst), &r, sizeof(T));
|
|
|
|
} else {
|
2020-02-10 19:18:03 +01:00
|
|
|
Read(dst);
|
2019-10-21 19:21:03 +02:00
|
|
|
}
|
|
|
|
}
|
2020-02-10 19:18:03 +01:00
|
|
|
template <typename T>
|
|
|
|
void Set(const T& src) {
|
2020-02-14 18:41:25 +01:00
|
|
|
AssertValidType(&flags_internal::FlagStaticTypeIdGen<T>);
|
2020-02-10 19:18:03 +01:00
|
|
|
Write(&src);
|
|
|
|
}
|
2019-10-21 19:21:03 +02:00
|
|
|
|
|
|
|
// Mutating access methods
|
2020-02-10 19:18:03 +01:00
|
|
|
void Write(const void* src) ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2020-01-03 17:41:10 +01:00
|
|
|
bool SetFromString(absl::string_view value, FlagSettingMode set_mode,
|
|
|
|
ValueSource source, std::string* err)
|
2019-12-02 19:41:53 +01:00
|
|
|
ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2019-10-21 19:21:03 +02:00
|
|
|
// If possible, updates copy of the Flag's value that is stored in an
|
|
|
|
// atomic word.
|
2019-12-02 19:41:53 +01:00
|
|
|
void StoreAtomic() ABSL_EXCLUSIVE_LOCKS_REQUIRED(*DataGuard());
|
2019-10-21 19:21:03 +02:00
|
|
|
|
|
|
|
// Interfaces to operate on callbacks.
|
2020-02-05 23:38:00 +01:00
|
|
|
void SetCallback(const FlagCallbackFunc mutation_callback)
|
2019-12-02 19:41:53 +01:00
|
|
|
ABSL_LOCKS_EXCLUDED(*DataGuard());
|
|
|
|
void InvokeCallback() const ABSL_EXCLUSIVE_LOCKS_REQUIRED(*DataGuard());
|
2019-10-21 19:21:03 +02:00
|
|
|
|
|
|
|
// Interfaces to save/restore mutable flag data
|
|
|
|
template <typename T>
|
2020-02-05 23:38:00 +01:00
|
|
|
std::unique_ptr<FlagStateInterface> SaveState(Flag<T>* flag) const
|
|
|
|
ABSL_LOCKS_EXCLUDED(*DataGuard()) {
|
2019-10-21 19:21:03 +02:00
|
|
|
T&& cur_value = flag->Get();
|
|
|
|
absl::MutexLock l(DataGuard());
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
return absl::make_unique<FlagState<T>>(
|
2019-10-21 19:21:03 +02:00
|
|
|
flag, std::move(cur_value), modified_, on_command_line_, counter_);
|
|
|
|
}
|
2020-01-03 17:41:10 +01:00
|
|
|
bool RestoreState(const void* value, bool modified, bool on_command_line,
|
|
|
|
int64_t counter) ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2019-10-21 19:21:03 +02:00
|
|
|
|
|
|
|
// Value validation interfaces.
|
2020-01-03 17:41:10 +01:00
|
|
|
void CheckDefaultValueParsingRoundtrip() const
|
2019-12-02 19:41:53 +01:00
|
|
|
ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2019-10-21 19:21:03 +02:00
|
|
|
bool ValidateInputValue(absl::string_view value) const
|
2019-12-02 19:41:53 +01:00
|
|
|
ABSL_LOCKS_EXCLUDED(*DataGuard());
|
2019-10-21 19:21:03 +02:00
|
|
|
|
|
|
|
private:
|
2020-02-05 23:38:00 +01:00
|
|
|
// Ensures that `data_guard_` is initialized and returns it.
|
2019-12-12 19:36:03 +01:00
|
|
|
absl::Mutex* DataGuard() const ABSL_LOCK_RETURNED((absl::Mutex*)&data_guard_);
|
2019-12-02 19:41:53 +01:00
|
|
|
// Returns heap allocated value of type T initialized with default value.
|
|
|
|
std::unique_ptr<void, DynValueDeleter> MakeInitValue() const
|
|
|
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(*DataGuard());
|
2020-02-21 21:51:36 +01:00
|
|
|
// Flag initialization called via absl::call_once.
|
2020-02-05 23:38:00 +01:00
|
|
|
void Init();
|
2020-02-21 21:51:36 +01:00
|
|
|
// Attempts to parse supplied `value` std::string. If parsing is successful,
|
|
|
|
// returns new value. Otherwsie returns nullptr.
|
|
|
|
std::unique_ptr<void, DynValueDeleter> TryParse(absl::string_view value,
|
|
|
|
std::string* err) const
|
|
|
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(*DataGuard());
|
|
|
|
// Stores the flag value based on the pointer to the source.
|
|
|
|
void StoreValue(const void* src) ABSL_EXCLUSIVE_LOCKS_REQUIRED(*DataGuard());
|
2019-12-02 19:41:53 +01:00
|
|
|
|
2020-02-07 22:06:07 +01:00
|
|
|
FlagHelpKind HelpSourceKind() const {
|
|
|
|
return static_cast<FlagHelpKind>(help_source_kind_);
|
|
|
|
}
|
|
|
|
FlagDefaultKind DefaultKind() const
|
|
|
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(*DataGuard()) {
|
|
|
|
return static_cast<FlagDefaultKind>(def_kind_);
|
|
|
|
}
|
2020-02-10 19:18:03 +01:00
|
|
|
// Used in read/write operations to validate source/target has correct type.
|
|
|
|
// For example if flag is declared as absl::Flag<int> FLAGS_foo, a call to
|
|
|
|
// absl::GetFlag(FLAGS_foo) validates that the type of FLAGS_foo is indeed
|
|
|
|
// int. To do that we pass the "assumed" type id (which is deduced from type
|
|
|
|
// int) as an argument `op`, which is in turn is validated against the type id
|
|
|
|
// stored in flag object by flag definition statement.
|
2020-02-14 18:41:25 +01:00
|
|
|
void AssertValidType(FlagStaticTypeId type_id) const;
|
2020-02-07 22:06:07 +01:00
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
// Immutable flag's state.
|
|
|
|
|
|
|
|
// Flags name passed to ABSL_FLAG as second arg.
|
|
|
|
const char* const name_;
|
|
|
|
// The file name where ABSL_FLAG resides.
|
|
|
|
const char* const filename_;
|
2020-02-14 18:41:25 +01:00
|
|
|
// Type-specific operations "vtable".
|
2020-02-05 23:38:00 +01:00
|
|
|
const FlagOpFn op_;
|
|
|
|
// Help message literal or function to generate it.
|
|
|
|
const FlagHelpMsg help_;
|
2019-11-18 20:02:26 +01:00
|
|
|
// Indicates if help message was supplied as literal or generator func.
|
2020-02-07 22:06:07 +01:00
|
|
|
const uint8_t help_source_kind_ : 1;
|
2020-02-05 23:38:00 +01:00
|
|
|
|
2020-02-13 15:52:24 +01:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// The bytes containing the const bitfields must not be shared with bytes
|
|
|
|
// containing the mutable bitfields.
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Unique tag for absl::call_once call to initialize this flag.
|
|
|
|
//
|
|
|
|
// The placement of this variable between the immutable and mutable bitfields
|
|
|
|
// is important as prevents them from occupying the same byte. If you remove
|
|
|
|
// this variable, make sure to maintain this property.
|
|
|
|
absl::once_flag init_control_;
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
// Mutable flag's state (guarded by `data_guard_`).
|
|
|
|
|
2020-02-21 21:51:36 +01:00
|
|
|
// If def_kind_ == kDynamicValue, default_value_ holds a dynamically allocated
|
2020-02-07 22:06:07 +01:00
|
|
|
// value.
|
|
|
|
uint8_t def_kind_ : 1 ABSL_GUARDED_BY(*DataGuard());
|
2020-02-05 23:38:00 +01:00
|
|
|
// Has this flag's value been modified?
|
2020-02-07 22:06:07 +01:00
|
|
|
bool modified_ : 1 ABSL_GUARDED_BY(*DataGuard());
|
2020-02-05 23:38:00 +01:00
|
|
|
// Has this flag been specified on command line.
|
2020-02-07 22:06:07 +01:00
|
|
|
bool on_command_line_ : 1 ABSL_GUARDED_BY(*DataGuard());
|
2020-02-05 23:38:00 +01:00
|
|
|
|
|
|
|
// Mutation counter
|
2020-02-07 22:06:07 +01:00
|
|
|
int64_t counter_ ABSL_GUARDED_BY(*DataGuard());
|
2020-02-05 23:38:00 +01:00
|
|
|
// Optional flag's callback and absl::Mutex to guard the invocations.
|
2020-02-07 22:06:07 +01:00
|
|
|
FlagCallback* callback_ ABSL_GUARDED_BY(*DataGuard());
|
2019-12-02 19:41:53 +01:00
|
|
|
// Either a pointer to the function generating the default value based on the
|
|
|
|
// value specified in ABSL_FLAG or pointer to the dynamically set default
|
|
|
|
// value via SetCommandLineOptionWithMode. def_kind_ is used to distinguish
|
|
|
|
// these two cases.
|
2020-02-21 21:51:36 +01:00
|
|
|
FlagDefaultSrc default_value_ ABSL_GUARDED_BY(*DataGuard());
|
2020-02-05 23:38:00 +01:00
|
|
|
// Current Flag Value
|
|
|
|
FlagValue value_;
|
2019-10-21 19:21:03 +02:00
|
|
|
|
2019-12-12 19:36:03 +01:00
|
|
|
// This is reserved space for an absl::Mutex to guard flag data. It will be
|
|
|
|
// initialized in FlagImpl::Init via placement new.
|
|
|
|
// We can't use "absl::Mutex data_guard_", since this class is not literal.
|
|
|
|
// We do not want to use "absl::Mutex* data_guard_", since this would require
|
|
|
|
// heap allocation during initialization, which is both slows program startup
|
|
|
|
// and can fail. Using reserved space + placement new allows us to avoid both
|
|
|
|
// problems.
|
|
|
|
alignas(absl::Mutex) mutable char data_guard_[sizeof(absl::Mutex)];
|
2019-10-21 19:21:03 +02:00
|
|
|
};
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2020-02-21 21:51:36 +01:00
|
|
|
// The Flag object parameterized by the flag's value type. This class implements
|
|
|
|
// flag reflection handle interface.
|
2020-02-05 23:38:00 +01:00
|
|
|
|
2019-05-07 21:56:42 +02:00
|
|
|
template <typename T>
|
2019-08-23 20:38:04 +02:00
|
|
|
class Flag final : public flags_internal::CommandLineFlag {
|
2019-05-07 21:56:42 +02:00
|
|
|
public:
|
2020-02-14 18:41:25 +01:00
|
|
|
constexpr Flag(const char* name, const char* filename, const FlagHelpArg help,
|
2020-02-05 23:38:00 +01:00
|
|
|
const FlagDfltGenFunc default_value_gen)
|
2020-02-14 18:41:25 +01:00
|
|
|
: impl_(name, filename, &FlagOps<T>, help, default_value_gen) {}
|
2019-07-17 22:35:47 +02:00
|
|
|
|
|
|
|
T Get() const {
|
2019-10-21 19:21:03 +02:00
|
|
|
// See implementation notes in CommandLineFlag::Get().
|
2019-07-17 22:35:47 +02:00
|
|
|
union U {
|
|
|
|
T value;
|
|
|
|
U() {}
|
|
|
|
~U() { value.~T(); }
|
|
|
|
};
|
|
|
|
U u;
|
|
|
|
|
2020-02-04 23:18:00 +01:00
|
|
|
impl_.Get(&u.value);
|
2019-07-17 22:35:47 +02:00
|
|
|
return std::move(u.value);
|
|
|
|
}
|
2020-02-10 19:18:03 +01:00
|
|
|
void Set(const T& v) { impl_.Set(v); }
|
2020-02-05 23:38:00 +01:00
|
|
|
void SetCallback(const FlagCallbackFunc mutation_callback) {
|
2019-10-21 19:21:03 +02:00
|
|
|
impl_.SetCallback(mutation_callback);
|
2019-08-23 20:38:04 +02:00
|
|
|
}
|
|
|
|
|
2019-10-21 19:21:03 +02:00
|
|
|
// CommandLineFlag interface
|
2020-01-03 17:41:10 +01:00
|
|
|
absl::string_view Name() const override { return impl_.Name(); }
|
|
|
|
std::string Filename() const override { return impl_.Filename(); }
|
|
|
|
absl::string_view Typename() const override { return ""; }
|
2019-11-18 20:02:26 +01:00
|
|
|
std::string Help() const override { return impl_.Help(); }
|
2019-10-21 19:21:03 +02:00
|
|
|
bool IsModified() const override { return impl_.IsModified(); }
|
|
|
|
bool IsSpecifiedOnCommandLine() const override {
|
|
|
|
return impl_.IsSpecifiedOnCommandLine();
|
2019-08-23 20:38:04 +02:00
|
|
|
}
|
2019-10-21 19:21:03 +02:00
|
|
|
std::string DefaultValue() const override { return impl_.DefaultValue(); }
|
|
|
|
std::string CurrentValue() const override { return impl_.CurrentValue(); }
|
|
|
|
bool ValidateInputValue(absl::string_view value) const override {
|
|
|
|
return impl_.ValidateInputValue(value);
|
2019-09-06 11:25:12 +02:00
|
|
|
}
|
|
|
|
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
// Interfaces to save and restore flags to/from persistent state.
|
|
|
|
// Returns current flag state or nullptr if flag does not support
|
|
|
|
// saving and restoring a state.
|
2020-02-05 23:38:00 +01:00
|
|
|
std::unique_ptr<FlagStateInterface> SaveState() override {
|
2019-10-21 19:21:03 +02:00
|
|
|
return impl_.SaveState(this);
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Restores the flag state to the supplied state object. If there is
|
|
|
|
// nothing to restore returns false. Otherwise returns true.
|
2020-02-05 23:38:00 +01:00
|
|
|
bool RestoreState(const FlagState<T>& flag_state) {
|
2020-01-03 17:41:10 +01:00
|
|
|
return impl_.RestoreState(&flag_state.cur_value_, flag_state.modified_,
|
|
|
|
flag_state.on_command_line_, flag_state.counter_);
|
2019-10-21 19:21:03 +02:00
|
|
|
}
|
2020-02-05 23:38:00 +01:00
|
|
|
bool SetFromString(absl::string_view value, FlagSettingMode set_mode,
|
|
|
|
ValueSource source, std::string* error) override {
|
2020-01-03 17:41:10 +01:00
|
|
|
return impl_.SetFromString(value, set_mode, source, error);
|
2019-10-21 19:21:03 +02:00
|
|
|
}
|
|
|
|
void CheckDefaultValueParsingRoundtrip() const override {
|
2020-01-03 17:41:10 +01:00
|
|
|
impl_.CheckDefaultValueParsingRoundtrip();
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
}
|
|
|
|
|
2019-10-21 19:21:03 +02:00
|
|
|
private:
|
|
|
|
friend class FlagState<T>;
|
|
|
|
|
2020-02-10 19:18:03 +01:00
|
|
|
void Read(void* dst) const override { impl_.Read(dst); }
|
2020-02-14 18:41:25 +01:00
|
|
|
FlagStaticTypeId TypeId() const override { return &FlagStaticTypeIdGen<T>; }
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
|
2020-02-10 19:18:03 +01:00
|
|
|
// Flag's data
|
2019-10-21 19:21:03 +02:00
|
|
|
FlagImpl impl_;
|
2019-05-07 21:56:42 +02:00
|
|
|
};
|
|
|
|
|
Export of internal Abseil changes
--
f13697e3d33803f9667d124072da4f6dd8bfbf85 by Andy Soffer <asoffer@google.com>:
Addressing https://github.com/abseil/abseil-cpp/issues/314, fixing
CMakeLists.txt to reference ABSL_TEST_COPTS rather than ABSL_DEFAULT_COPTS.
ABSL_TEST_COPTS should be preferred for all tests so that they are configured consistently (moreover, CMake should agree with Bazel).
PiperOrigin-RevId: 274932312
--
c31c24a1fa6bb98136adf51ef37c0818ac366690 by Derek Mauro <dmauro@google.com>:
Silence MSAN in the stack consumption test utility
PiperOrigin-RevId: 274912950
--
2412913c05a246cd527cd4c31452f126e9129f3a by CJ Johnson <johnsoncj@google.com>:
Internal change
PiperOrigin-RevId: 274847103
--
75e984a93b5760873501b96ac3229ccfd955daf8 by Abseil Team <absl-team@google.com>:
Reformat BUILD file to current standards.
PiperOrigin-RevId: 274815392
--
a2780e085f1df1e4ca2c814a58c893d1b78a1d9c by Samuel Benzaquen <sbenza@google.com>:
Fix invalid result regarding leading zeros in the exponent.
PiperOrigin-RevId: 274808017
--
dd402e1cb5c4ebacb576372ae24bf289d729d323 by Samuel Benzaquen <sbenza@google.com>:
Make string_view's relational operators constexpr when possible.
PiperOrigin-RevId: 274807873
--
b4ef32565653a5da1cb8bb8d0351586d23519658 by Abseil Team <absl-team@google.com>:
Internal rework.
PiperOrigin-RevId: 274787159
--
70d81971c5914e6785b8e8a9d4f6eb2655dd62c0 by Gennadiy Rozental <rogeeff@google.com>:
Internal rework.
PiperOrigin-RevId: 274715557
--
14f5b0440e353b899cafaaa15b53e77f98f401af by Gennadiy Rozental <rogeeff@google.com>:
Make deprecated statements about ParseFLag/UnparseFlag consistent in a file.
PiperOrigin-RevId: 274668123
--
2e85adbdbb92612e4d750bc34fbca3333128b42d by Abseil Team <absl-team@google.com>:
Allow absl::c_equal to be used with arrays.
This is achieved by allowing container size computation for arrays.
PiperOrigin-RevId: 274426830
--
219719f107226d328773e6cec99fb473f5d3119c by Gennadiy Rozental <rogeeff@google.com>:
Release correct extension interfaces to support usage of absl::Time and absl::Duration as ABSL_FLAG
PiperOrigin-RevId: 274273788
--
47a77f93fda23b69b4a6bdbd506fe643c69a5579 by Gennadiy Rozental <rogeeff@google.com>:
Rework of flags persistence/FlagSaver internals.
PiperOrigin-RevId: 274225213
--
7807be3fe757c19e3b0c487298387683d4c9f5b3 by Abseil Team <absl-team@google.com>:
Switch reference to sdkddkver.h to lowercase, matching conventions used in the Windows SDK and other uses. This helps to avoid confusion on case-sensitive filesystems.
PiperOrigin-RevId: 274061877
--
561304090087a19f1d10f0475f564fe132ebf06e by Andy Getzendanner <durandal@google.com>:
Fix ABSL_WAITER_MODE detection for mingw
Import of https://github.com/abseil/abseil-cpp/pull/342
PiperOrigin-RevId: 274030071
--
9b3caac2cf202b9d440dfa1b4ffd538ac4bf715b by Derek Mauro <dmauro@google.com>:
Support using Abseil with the musl libc implementation.
Only test changes were required:
* Workaround for a bug in sigaltstack() on musl
* printf-style pointer formatting (%p) is implementation defined,
so verify StrFromat produces something compatible
* Fix detection of feenableexcept()
PiperOrigin-RevId: 274011666
--
73e8a938fc139e1cc8670d4513a445bacc855539 by Abseil Team <absl-team@google.com>:
nvcc workaround: explicitly specify the definition of node_handle::Base
PiperOrigin-RevId: 274011392
--
ab9cc6d042aca7d48e16c504ab10eab39433f4b2 by Andy Soffer <asoffer@google.com>:
Internal change
PiperOrigin-RevId: 273996318
--
e567c4979ca99c7e71821ec1523b8f5edd2c76ac by Abseil Team <absl-team@google.com>:
Introduce a type alias to work around an nvcc bug.
On the previous code, nvcc gets confused thinking that T has to be a parameter
pack, as IsDecomposable accepts one.
PiperOrigin-RevId: 273980472
--
105b6e6339b77a32f4432de05f44cd3f9c436751 by Eric Fiselier <ericwf@google.com>:
Import of CCTZ from GitHub.
PiperOrigin-RevId: 273955589
--
8feb87ff1d7e721fe094855e67c19539d5e582b7 by Abseil Team <absl-team@google.com>:
Avoid dual-exporting scheduling_mode.h
PiperOrigin-RevId: 273825112
--
fbc37854776d295dae98fb9d06a541f296daab95 by Andy Getzendanner <durandal@google.com>:
Fix ABSL_HAVE_ALARM check on mingw
Import of https://github.com/abseil/abseil-cpp/pull/341
PiperOrigin-RevId: 273817839
--
6aedcd63a735b9133e143b043744ba0a25407f6f by Andy Soffer <asoffer@google.com>:
Remove bit_gen_view.h now that all callers have been migrated to bit_gen_ref.h
Tested:
TGP - https://test.corp.google.com/ui#id=OCL:273762409:BASE:273743370:1570639020744:3001bcb5
PiperOrigin-RevId: 273810331
--
6573de24a66ba715c579f7f32b5c48a1d743c7f8 by Abseil Team <absl-team@google.com>:
Internal change.
PiperOrigin-RevId: 273589963
--
91c8c28b6dca26d98b39e8e06a8ed17c701ff793 by Abseil Team <absl-team@google.com>:
Update macro name for `ABSL_GUARDED_BY()` in the example section.
PiperOrigin-RevId: 273286983
--
0ff7d1a93d70f8ecd693f8dbb98b7a4a016ca2a4 by Abseil Team <absl-team@google.com>:
Fix potential integer overflow in the absl time library.
In absl::FromTM, the tm.tm_year is added by 1900 regarding that tm.tm_year represents the years since 1900. This change checks integer overflow before doing the arithmetic operation.
PiperOrigin-RevId: 273092952
--
b41c2a1310086807be09a833099ae6d4009f037c by Gennadiy Rozental <rogeeff@google.com>:
Correctly Unlock the global mutex in case of concurrent flag initialization.
Fixes #386
PiperOrigin-RevId: 272979749
--
c53103e71b2a6063af3c6d4ff68aa2d8f9ae9e06 by Abseil Team <absl-team@google.com>:
Try to become idle only when there is no wakeup.
Immediately after waking up (when futex wait returns), the current thread tries
to become idle doing bunch of memory loads and a branch. Problem is that there
is a good chance that we woke up due to a wakeup, especially for actively used
threads. For such wakeups, calling MaybeBecomeIdle() would be a waste of
cycles.
Instead, call MaybeBecomeIdle() only when we are sure there is no wakeup. For
idle threads the net effect should be the same. For active, threads this will
be more efficient.
Moreover, since MaybeBecomeIdle() is called before waiting on the futex, the
current thread will try to become idle before sleeping. This should result
in more accurate idleness and more efficient release of thread resources.
PiperOrigin-RevId: 272940381
GitOrigin-RevId: f13697e3d33803f9667d124072da4f6dd8bfbf85
Change-Id: I36de05aec12595183725652dd362dfa58fb095d0
2019-10-16 03:18:40 +02:00
|
|
|
template <typename T>
|
|
|
|
inline void FlagState<T>::Restore() const {
|
|
|
|
if (flag_->RestoreState(*this)) {
|
|
|
|
ABSL_INTERNAL_LOG(INFO,
|
|
|
|
absl::StrCat("Restore saved value of ", flag_->Name(),
|
|
|
|
" to: ", flag_->CurrentValue()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-07 21:56:42 +02:00
|
|
|
// This class facilitates Flag object registration and tail expression-based
|
|
|
|
// flag definition, for example:
|
|
|
|
// ABSL_FLAG(int, foo, 42, "Foo help").OnUpdate(NotifyFooWatcher);
|
|
|
|
template <typename T, bool do_register>
|
|
|
|
class FlagRegistrar {
|
|
|
|
public:
|
|
|
|
explicit FlagRegistrar(Flag<T>* flag) : flag_(flag) {
|
2019-07-17 22:35:47 +02:00
|
|
|
if (do_register) flags_internal::RegisterCommandLineFlag(flag_);
|
2019-05-07 21:56:42 +02:00
|
|
|
}
|
|
|
|
|
2020-02-05 23:38:00 +01:00
|
|
|
FlagRegistrar& OnUpdate(FlagCallbackFunc cb) && {
|
2019-05-07 21:56:42 +02:00
|
|
|
flag_->SetCallback(cb);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the registrar "die" gracefully as a bool on a line where registration
|
|
|
|
// happens. Registrar objects are intended to live only as temporary.
|
|
|
|
operator bool() const { return true; } // NOLINT
|
|
|
|
|
|
|
|
private:
|
|
|
|
Flag<T>* flag_; // Flag being registered (not owned).
|
|
|
|
};
|
|
|
|
|
|
|
|
// This struct and corresponding overload to MakeDefaultValue are used to
|
|
|
|
// facilitate usage of {} as default value in ABSL_FLAG macro.
|
|
|
|
struct EmptyBraces {};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T* MakeFromDefaultValue(T t) {
|
|
|
|
return new T(std::move(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T* MakeFromDefaultValue(EmptyBraces) {
|
|
|
|
return new T;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace flags_internal
|
2019-12-12 19:36:03 +01:00
|
|
|
ABSL_NAMESPACE_END
|
2019-05-07 21:56:42 +02:00
|
|
|
} // namespace absl
|
|
|
|
|
|
|
|
#endif // ABSL_FLAGS_INTERNAL_FLAG_H_
|