blob: d8b5403123894b58da37ce066359a9b845defe02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/platform/Environment.h>
#include <stdio.h>
#include <utility>
namespace Aws
{
namespace Environment
{
/*
using std::getenv generates a warning on windows so we use _dupenv_s instead. The character array returned by this function is our responsibility to clean up, so rather than returning raw strings
that would need to be manually freed in all the client functions, just copy it into a Aws::String instead, freeing it here.
*/
Aws::String GetEnv(const char *variableName)
{
char* variableValue = nullptr;
std::size_t valueSize = 0;
auto queryResult = _dupenv_s(&variableValue, &valueSize, variableName);
Aws::String result;
if(queryResult == 0 && variableValue != nullptr && valueSize > 0)
{
result.assign(variableValue, valueSize - 1); // don't copy the c-string terminator byte
free(variableValue);
}
return result;
}
} // namespace Environment
} // namespace Aws
|