mirror of
https://github.com/NixOS/nix.git
synced 2025-11-16 23:42:43 +01:00
For example, instead of doing
#include "nix/store-config.hh"
#include "nix/derived-path.hh"
Now do
#include "nix/store/config.hh"
#include "nix/store/derived-path.hh"
This was originally planned in the issue, and also recent requested by
Eelco.
Most of the change is purely mechanical. There is just one small
additional issue. See how, in the example above, we took this
opportunity to also turn `<comp>-config.hh` into `<comp>/config.hh`.
Well, there was already a `nix/util/config.{cc,hh}`. Even though there
is not a public configuration header for libutil (which also would be
called `nix/util/config.{cc,hh}`) that's still confusing, To avoid any
such confusion, we renamed that to `nix/util/configuration.{cc,hh}`.
Finally, note that the libflake headers already did this, so we didn't
need to do anything to them. We wouldn't want to mistakenly get
`nix/flake/flake/flake.hh`!
Progress on #7876
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
#include "nix/util/environment-variables.hh"
|
|
|
|
#ifdef _WIN32
|
|
# include "processenv.h"
|
|
|
|
namespace nix {
|
|
|
|
std::optional<OsString> getEnvOs(const OsString & key)
|
|
{
|
|
// Determine the required buffer size for the environment variable value
|
|
DWORD bufferSize = GetEnvironmentVariableW(key.c_str(), nullptr, 0);
|
|
if (bufferSize == 0) {
|
|
return std::nullopt;
|
|
}
|
|
|
|
/* Allocate a buffer to hold the environment variable value.
|
|
WARNING: Do not even think about using uniform initialization here,
|
|
we DONT want to call the initializer list ctor accidentally. */
|
|
std::wstring value(bufferSize, L'\0');
|
|
|
|
// Retrieve the environment variable value
|
|
DWORD resultSize = GetEnvironmentVariableW(key.c_str(), &value[0], bufferSize);
|
|
if (resultSize == 0) {
|
|
return std::nullopt;
|
|
}
|
|
|
|
// Resize the string to remove the extra null characters
|
|
value.resize(resultSize);
|
|
|
|
return value;
|
|
}
|
|
|
|
int unsetenv(const char * name)
|
|
{
|
|
return -SetEnvironmentVariableA(name, nullptr);
|
|
}
|
|
|
|
int setEnv(const char * name, const char * value)
|
|
{
|
|
return -SetEnvironmentVariableA(name, value);
|
|
}
|
|
|
|
int setEnvOs(const OsString & name, const OsString & value)
|
|
{
|
|
return -SetEnvironmentVariableW(name.c_str(), value.c_str());
|
|
}
|
|
|
|
}
|
|
#endif
|