f31bd37dbcb9a7631637a0831dc4dfa357e3fe0e
[folly.git] / folly / experimental / EnvUtil.cpp
1 /*
2  * Copyright 2017 Facebook, Inc.
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  *   http://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
17 #include <folly/experimental/EnvUtil.h>
18
19 #include <folly/String.h>
20 #include <folly/portability/Stdlib.h>
21 #include <folly/portability/Unistd.h>
22
23 namespace folly {
24 namespace test {
25
26 static std::map<std::string, std::string> getEnvVarMap() {
27   std::map<std::string, std::string> data;
28   for (auto it = environ; *it != nullptr; ++it) {
29     std::string key, value;
30     split("=", *it, key, value);
31     if (key.empty()) {
32       continue;
33     }
34     CHECK(!data.count(key)) << "already contains: " << key;
35     data.emplace(move(key), move(value));
36   }
37   return data;
38 }
39
40 EnvVarSaver::EnvVarSaver() {
41   saved_ = getEnvVarMap();
42 }
43
44 EnvVarSaver::~EnvVarSaver() {
45   for (const auto& kvp : getEnvVarMap()) {
46     if (saved_.count(kvp.first)) {
47       continue;
48     }
49     PCHECK(0 == unsetenv(kvp.first.c_str()));
50   }
51   for (const auto& kvp : saved_) {
52     PCHECK(0 == setenv(kvp.first.c_str(), kvp.second.c_str(), (int)true));
53   }
54 }
55 }
56 }