Files
core/include/o3tl/environment.hxx
Mike Kaganski bddeb8996a Introduce o3tl::getEnvironment
Getting environment variable values into OUString is a common task.
In many places, we either use getenv and convert to OUString; or
use osl_getEnvironment (usually ignoring its return value), which
is a bit awkward.

The introduced o3tl::getEnvironment is a wrapper around the latter.
One of upsides of using it is minimizing direct access to pData.

o3tl::setEnvironment is also added for symmetry.

Change-Id: I420093de4873cc08c8b64d218ab93218d8ad398f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187973
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Tested-by: Jenkins
2025-07-17 07:02:59 +02:00

33 lines
827 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <sal/config.h>
#include <osl/process.h>
#include <rtl/ustring.hxx>
namespace o3tl
{
inline OUString getEnvironment(const OUString& name)
{
OUString ret;
osl_getEnvironment(name.pData, &ret.pData);
return ret;
}
inline void setEnvironment(const OUString& name, const OUString& value)
{
osl_setEnvironment(name.pData, value.pData);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */