scoped_set_env.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // Copyright 2019 The Abseil Authors.
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // https://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. //
  16. #ifndef Y_ABSL_BASE_INTERNAL_SCOPED_SET_ENV_H_
  17. #define Y_ABSL_BASE_INTERNAL_SCOPED_SET_ENV_H_
  18. #include <util/generic/string.h>
  19. #include "y_absl/base/config.h"
  20. namespace y_absl {
  21. Y_ABSL_NAMESPACE_BEGIN
  22. namespace base_internal {
  23. class ScopedSetEnv {
  24. public:
  25. ScopedSetEnv(const char* var_name, const char* new_value);
  26. ~ScopedSetEnv();
  27. private:
  28. TString var_name_;
  29. TString old_value_;
  30. // True if the environment variable was initially not set.
  31. bool was_unset_;
  32. };
  33. } // namespace base_internal
  34. Y_ABSL_NAMESPACE_END
  35. } // namespace y_absl
  36. #endif // Y_ABSL_BASE_INTERNAL_SCOPED_SET_ENV_H_