The QProcessEnvironment class holds the environment variables that can be passed to a program. More...
Header: | #include <QProcessEnvironment> |
CMake: | find_package(Qt6 COMPONENTS Core REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
Note: All functions in this class are reentrant.
QProcessEnvironment(const QProcessEnvironment &other) | |
QProcessEnvironment() | |
QProcessEnvironment & | operator=(const QProcessEnvironment &other) |
~QProcessEnvironment() | |
void | clear() |
bool | contains(const QString &name) const |
void | insert(const QString &name, const QString &value) |
void | insert(const QProcessEnvironment &e) |
bool | isEmpty() const |
QStringList | keys() const |
void | remove(const QString &name) |
void | swap(QProcessEnvironment &other) |
QStringList | toStringList() const |
QString | value(const QString &name, const QString &defaultValue = QString()) const |
bool | operator!=(const QProcessEnvironment &other) const |
bool | operator==(const QProcessEnvironment &other) const |
QProcessEnvironment | systemEnvironment() |
A process's environment is composed of a set of key=value pairs known as environment variables. The QProcessEnvironment class wraps that concept and allows easy manipulation of those variables. It's meant to be used along with QProcess, to set the environment for child processes. It cannot be used to change the current process's environment.
The environment of the calling process can be obtained using QProcessEnvironment::systemEnvironment().
On Unix systems, the variable names are case-sensitive. Note that the Unix environment allows both variable names and contents to contain arbitrary binary data (except for the NUL character). QProcessEnvironment will preserve such variables, but does not support manipulating variables whose names or values cannot be encoded by the current locale settings (see QString::toLocal8Bit).
On Windows, the variable names are case-insensitive, but case-preserving. QProcessEnvironment behaves accordingly.
See also QProcess, QProcess::systemEnvironment(), and QProcess::setProcessEnvironment().
Creates a QProcessEnvironment object that is a copy of other.
Creates a new QProcessEnvironment object. This constructor creates an empty environment. If set on a QProcess, this will cause the current environment variables to be removed.
Copies the contents of the other QProcessEnvironment object into this one.
Frees the resources associated with this QProcessEnvironment object.
Removes all key=value pairs from this QProcessEnvironment object, making it empty.
See also isEmpty() and systemEnvironment().
Returns true
if the environment variable of name name is found in this QProcessEnvironment object.
See also insert() and value().
Inserts the environment variable of name name and contents value into this QProcessEnvironment object. If that variable already existed, it is replaced by the new value.
On most systems, inserting a variable with no contents will have the same effect for applications as if the variable had not been set at all. However, to guarantee that there are no incompatibilities, to remove a variable, please use the remove() function.
See also contains(), remove(), and value().
This is an overloaded function.
Inserts the contents of e in this QProcessEnvironment object. Variables in this object that also exist in e will be overwritten.
Returns true
if this QProcessEnvironment object is empty: that is there are no key=value pairs set.
See also clear(), systemEnvironment(), and insert().
Returns a list containing all the variable names in this QProcessEnvironment object.
Removes the environment variable identified by name from this QProcessEnvironment object. If that variable did not exist before, nothing happens.
See also contains(), insert(), and value().
[since 5.0]
void QProcessEnvironment::swap(QProcessEnvironment &other)
Swaps this process environment instance with other. This function is very fast and never fails.
This function was introduced in Qt 5.0.
[static]
QProcessEnvironment QProcessEnvironment::systemEnvironment()
The systemEnvironment function returns the environment of the calling process.
It is returned as a QProcessEnvironment. This function does not cache the system environment. Therefore, it's possible to obtain an updated version of the environment if low-level C library functions like setenv
or putenv
have been called.
However, note that repeated calls to this function will recreate the QProcessEnvironment object, which is a non-trivial operation.
See also QProcess::systemEnvironment().
Converts this QProcessEnvironment object into a list of strings, one for each environment variable that is set. The environment variable's name and its value are separated by an equal character ('=').
The QStringList contents returned by this function are suitable for presentation. Use with the QProcess::setEnvironment function is not recommended due to potential encoding problems under Unix, and worse performance.
See also systemEnvironment(), QProcess::systemEnvironment(), and QProcess::setProcessEnvironment().
Searches this QProcessEnvironment object for a variable identified by name and returns its value. If the variable is not found in this object, then defaultValue is returned instead.
See also contains(), insert(), and remove().
Returns true
if this and the other QProcessEnvironment objects are different.
See also operator==().
Returns true
if this and the other QProcessEnvironment objects are equal.
Two QProcessEnvironment objects are considered equal if they have the same set of key=value pairs. The comparison of keys is done case-sensitive on platforms where the environment is case-sensitive.
See also operator!=() and contains().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qprocessenvironment.html