LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
|
#include "sal/config.h"
#include "osl/file.h"
#include "osl/security.h"
#include "osl/time.h"
#include "rtl/locale.h"
#include "rtl/ustring.h"
#include "sal/saldllapi.h"
Go to the source code of this file.
Classes | |
struct | oslProcessInfo |
Macros | |
#define | osl_Process_WAIT 0x0001 /* wait for completion */ |
#define | osl_Process_SEARCHPATH 0x0002 /* search path for executable */ |
#define | osl_Process_DETACHED 0x0004 /* run detached */ |
#define | osl_Process_NORMAL 0x0000 /* run in normal window */ |
#define | osl_Process_HIDDEN 0x0010 /* run hidden */ |
#define | osl_Process_MINIMIZED 0x0020 /* run in minimized window */ |
#define | osl_Process_MAXIMIZED 0x0040 /* run in maximized window */ |
#define | osl_Process_FULLSCREEN 0x0080 /* run in fullscreen window */ |
#define | osl_Process_IDENTIFIER 0x0001 /* retrieves the process identifier */ |
#define | osl_Process_EXITCODE 0x0002 /* retrieves exit code of the process */ |
#define | osl_Process_CPUTIMES 0x0004 /* retrieves used cpu time */ |
#define | osl_Process_HEAPUSAGE 0x0008 /* retrieves the used size of heap */ |
Typedefs | |
typedef sal_Int32 | oslProcessOption |
typedef sal_Int32 | oslProcessData |
typedef sal_uInt32 | oslProcessIdentifier |
typedef sal_uInt32 | oslProcessExitCode |
typedef void * | oslProcess |
Process handle. More... | |
Enumerations | |
enum | oslProcessError { osl_Process_E_None, osl_Process_E_NotFound, osl_Process_E_TimedOut, osl_Process_E_NoPermission, osl_Process_E_Unknown, osl_Process_E_InvalidError, osl_Process_E_FORCE_EQUAL_SIZE = SAL_MAX_ENUM } |
Functions | |
SAL_DLLPUBLIC oslProcessError | osl_executeProcess (rtl_uString *ustrImageName, rtl_uString *ustrArguments[], sal_uInt32 nArguments, oslProcessOption Options, oslSecurity Security, rtl_uString *ustrDirectory, rtl_uString *ustrEnvironments[], sal_uInt32 nEnvironmentVars, oslProcess *pProcess) |
Execute a process. More... | |
SAL_DLLPUBLIC oslProcessError | osl_executeProcess_WithRedirectedIO (rtl_uString *strImageName, rtl_uString *ustrArguments[], sal_uInt32 nArguments, oslProcessOption Options, oslSecurity Security, rtl_uString *ustrDirectory, rtl_uString *ustrEnvironments[], sal_uInt32 nEnvironmentVars, oslProcess *pProcess, oslFileHandle *pChildInputWrite, oslFileHandle *pChildOutputRead, oslFileHandle *pChildErrorRead) |
Execute a process and redirect child process standard IO. More... | |
SAL_DLLPUBLIC oslProcessError | osl_terminateProcess (oslProcess Process) |
Terminate a process. More... | |
SAL_DLLPUBLIC oslProcess | osl_getProcess (oslProcessIdentifier Ident) SAL_COLD |
SAL_DLLPUBLIC void | osl_freeProcessHandle (oslProcess Process) |
Free the specified process-handle. More... | |
SAL_DLLPUBLIC oslProcessError | osl_joinProcess (oslProcess Process) |
Wait for completion of the specified childprocess. More... | |
SAL_DLLPUBLIC oslProcessError | osl_joinProcessWithTimeout (oslProcess Process, const TimeValue *pTimeout) |
Wait with a timeout for the completion of the specified child process. More... | |
SAL_DLLPUBLIC oslProcessError | osl_getProcessInfo (oslProcess Process, oslProcessData Fields, oslProcessInfo *pInfo) |
Retrieves information about a Process. More... | |
SAL_DLLPUBLIC oslProcessError | osl_getExecutableFile (rtl_uString **strFile) |
Get the filename of the executable. More... | |
SAL_DLLPUBLIC sal_uInt32 | osl_getCommandArgCount (void) |
SAL_DLLPUBLIC oslProcessError | osl_getCommandArg (sal_uInt32 nArg, rtl_uString **strCommandArg) |
Get the nArg-th command-line argument passed to the main-function of this process. More... | |
SAL_DLLPUBLIC void | osl_setCommandArgs (int argc, char **argv) |
Set the command-line arguments as passed to the main-function of this process. More... | |
SAL_DLLPUBLIC oslProcessError | osl_getEnvironment (rtl_uString *strVar, rtl_uString **strValue) |
Get the value of one environment variable. More... | |
SAL_DLLPUBLIC oslProcessError | osl_setEnvironment (rtl_uString *strVar, rtl_uString *strValue) |
Set the value of one environment variable. More... | |
SAL_DLLPUBLIC oslProcessError | osl_clearEnvironment (rtl_uString *strVar) |
Unsets the value of one environment variable. More... | |
SAL_DLLPUBLIC oslProcessError | osl_getProcessWorkingDir (rtl_uString **pustrWorkingDir) |
Get the working directory of the current process as a file URL. More... | |
SAL_DLLPUBLIC oslProcessError | osl_getProcessLocale (rtl_Locale **ppLocale) |
Get the locale the process is currently running in. More... | |
SAL_DLLPUBLIC oslProcessError | osl_setProcessLocale (rtl_Locale *pLocale) |
Change the locale of the process. More... | |
#define osl_Process_CPUTIMES 0x0004 /* retrieves used cpu time */ |
#define osl_Process_DETACHED 0x0004 /* run detached */ |
#define osl_Process_EXITCODE 0x0002 /* retrieves exit code of the process */ |
#define osl_Process_FULLSCREEN 0x0080 /* run in fullscreen window */ |
#define osl_Process_HEAPUSAGE 0x0008 /* retrieves the used size of heap */ |
#define osl_Process_HIDDEN 0x0010 /* run hidden */ |
#define osl_Process_IDENTIFIER 0x0001 /* retrieves the process identifier */ |
#define osl_Process_MAXIMIZED 0x0040 /* run in maximized window */ |
#define osl_Process_MINIMIZED 0x0020 /* run in minimized window */ |
#define osl_Process_NORMAL 0x0000 /* run in normal window */ |
#define osl_Process_SEARCHPATH 0x0002 /* search path for executable */ |
#define osl_Process_WAIT 0x0001 /* wait for completion */ |
typedef void* oslProcess |
Process handle.
typedef sal_Int32 oslProcessData |
typedef sal_uInt32 oslProcessExitCode |
typedef sal_uInt32 oslProcessIdentifier |
typedef sal_Int32 oslProcessOption |
enum oslProcessError |
SAL_DLLPUBLIC oslProcessError osl_clearEnvironment | ( | rtl_uString * | strVar | ) |
Unsets the value of one environment variable.
[in] | strVar | denotes the name of the variable to unset. |
SAL_DLLPUBLIC oslProcessError osl_executeProcess | ( | rtl_uString * | ustrImageName, |
rtl_uString * | ustrArguments[], | ||
sal_uInt32 | nArguments, | ||
oslProcessOption | Options, | ||
oslSecurity | Security, | ||
rtl_uString * | ustrDirectory, | ||
rtl_uString * | ustrEnvironments[], | ||
sal_uInt32 | nEnvironmentVars, | ||
oslProcess * | pProcess | ||
) |
Execute a process.
Executes the program image provided in strImageName in a new process.
[in] | ustrImageName | The file URL of the executable to be started. Can be NULL in this case the file URL of the executable must be the first element in ustrArguments. |
[in] | ustrArguments | An array of argument strings. Can be NULL if strImageName is not NULL. If strImageName is NULL it is expected that the first element contains the file URL of the executable to start. |
[in] | nArguments | The number of arguments provided. If this number is 0 strArguments will be ignored. |
[in] | Options | A combination of int-constants to describe the mode of execution. |
[in] | Security | The user and his rights for which the process is started. May be NULL in which case the process will be started in the context of the current user. |
[in] | ustrDirectory | The file URL of the working directory of the new process. If the specified directory does not exist or is inaccessible the working directory of the newly created process is undefined. If this parameter is NULL or the caller provides an empty string the new process will have the same current working directory as the calling process. |
[in] | ustrEnvironments | An array of strings describing environment variables that should be merged into the environment of the new process. Each string has to be in the form "variable=value". This parameter can be NULL in which case the new process gets the same environment as the parent process. |
[in] | nEnvironmentVars | The number of environment variables to set. |
[out] | pProcess | Pointer to a oslProcess variable, which receives the handle of the newly created process. This parameter must not be NULL. |
osl_Process_E_None | on success |
osl_Process_E_NotFound | if the specified executable could not be found |
osl_Process_E_InvalidError | if invalid parameters will be detected |
osl_Process_E_Unknown | if arbitrary other errors occur |
SAL_DLLPUBLIC oslProcessError osl_executeProcess_WithRedirectedIO | ( | rtl_uString * | strImageName, |
rtl_uString * | ustrArguments[], | ||
sal_uInt32 | nArguments, | ||
oslProcessOption | Options, | ||
oslSecurity | Security, | ||
rtl_uString * | ustrDirectory, | ||
rtl_uString * | ustrEnvironments[], | ||
sal_uInt32 | nEnvironmentVars, | ||
oslProcess * | pProcess, | ||
oslFileHandle * | pChildInputWrite, | ||
oslFileHandle * | pChildOutputRead, | ||
oslFileHandle * | pChildErrorRead | ||
) |
Execute a process and redirect child process standard IO.
[in] | strImageName | The file URL of the executable to be started. Can be NULL in this case the file URL of the executable must be the first element in ustrArguments. |
[in] | ustrArguments | An array of argument strings. Can be NULL if strImageName is not NULL. If strImageName is NULL it is expected that the first element contains the file URL of the executable to start. |
[in] | nArguments | The number of arguments provided. If this number is 0 strArguments will be ignored. |
[in] | Options | A combination of int-constants to describe the mode of execution. |
[in] | Security | The user and his rights for which the process is started. May be NULL in which case the process will be started in the context of the current user. |
[in] | ustrDirectory | The file URL of the working directory of the new process. If the specified directory does not exist or is inaccessible the working directory of the newly created process is undefined. If this parameter is NULL or the caller provides an empty string the new process will have the same current working directory as the calling process. |
[in] | ustrEnvironments | An array of strings describing environment variables that should be merged into the environment of the new process. Each string has to be in the form "variable=value". This parameter can be NULL in which case the new process gets the same environment as the parent process. |
[in] | nEnvironmentVars | The number of environment variables to set. |
[out] | pProcess | Pointer to a oslProcess variable, which receives the handle of the newly created process. This parameter must not be NULL. |
[out] | pChildInputWrite | Pointer to a oslFileHandle variable that receives the handle which can be used to write to the child process standard input device. The returned handle is not random accessible. The handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL. |
[out] | pChildOutputRead | Pointer to a oslFileHandle variable that receives the handle which can be used to read from the child process standard output device. The returned handle is not random accessible. The Handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL. |
[out] | pChildErrorRead | Pointer to a oslFileHandle variable that receives the handle which can be used to read from the child process standard error device. The returned handle is not random accessible. The Handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL. |
osl_Process_E_None | on success |
osl_Process_E_NotFound | if the specified executable could not be found |
osl_Process_E_InvalidError | if invalid parameters will be detected |
osl_Process_E_Unknown | if arbitrary other errors occur |
SAL_DLLPUBLIC void osl_freeProcessHandle | ( | oslProcess | Process | ) |
Free the specified process-handle.
[in] | Process |
SAL_DLLPUBLIC oslProcessError osl_getCommandArg | ( | sal_uInt32 | nArg, |
rtl_uString ** | strCommandArg | ||
) |
Get the nArg-th command-line argument passed to the main-function of this process.
[in] | nArg | The number of the argument to return. |
[out] | strCommandArg | The string receives the nArg-th command-line argument. |
SAL_DLLPUBLIC sal_uInt32 osl_getCommandArgCount | ( | void | ) |
SAL_DLLPUBLIC oslProcessError osl_getEnvironment | ( | rtl_uString * | strVar, |
rtl_uString ** | strValue | ||
) |
Get the value of one environment variable.
[in] | strVar | denotes the name of the variable to get. |
[out] | strValue | string that receives the value of environment variable. |
SAL_DLLPUBLIC oslProcessError osl_getExecutableFile | ( | rtl_uString ** | strFile | ) |
Get the filename of the executable.
[out] | strFile | the string that receives the executable file path. |
Ideally this will return the true executable file path as a file: URL, but actually in case something else happens to have been passed as argv[0] to osl_setCommandArgs(), it will return that either as a file URL, or as such in case it doesn't look like an absolute pathname.
SAL_DLLPUBLIC oslProcess osl_getProcess | ( | oslProcessIdentifier | Ident | ) |
Retrieve the process handle of a process identifier
[in] | Ident | a process identifier |
SAL_DLLPUBLIC oslProcessError osl_getProcessInfo | ( | oslProcess | Process, |
oslProcessData | Fields, | ||
oslProcessInfo * | pInfo | ||
) |
Retrieves information about a Process.
[in] | Process | the process handle of the process |
[in] | Fields | the information which is to be retrieved this can be one or more of osl_Process_IDENTIFIER osl_Process_EXITCODE osl_Process_CPUTIMES osl_Process_HEAPUSAGE |
[out] | pInfo | a pointer to a valid oslProcessInfo structure. the Size field has to be initialized with the size of the oslProcessInfo structure. on success the Field member holds the (or'ed) retrieved valid information fields. |
osl_Process_E_None | on success |
osl_Process_E_Unknown | on failure |
SAL_DLLPUBLIC oslProcessError osl_getProcessLocale | ( | rtl_Locale ** | ppLocale | ) |
Get the locale the process is currently running in.
[out] | ppLocale | a pointer that receives the currently selected locale structure |
SAL_DLLPUBLIC oslProcessError osl_getProcessWorkingDir | ( | rtl_uString ** | pustrWorkingDir | ) |
Get the working directory of the current process as a file URL.
The file URL is encoded as common for the OSL file API.
[out] | pustrWorkingDir | string that receives the working directory file URL. |
SAL_DLLPUBLIC oslProcessError osl_joinProcess | ( | oslProcess | Process | ) |
Wait for completion of the specified childprocess.
[in] | Process |
ols_Process_E_None |
SAL_DLLPUBLIC oslProcessError osl_joinProcessWithTimeout | ( | oslProcess | Process, |
const TimeValue * | pTimeout | ||
) |
Wait with a timeout for the completion of the specified child process.
[in] | Process | A process identifier. |
[in] | pTimeout | A timeout value or NULL for infinite waiting. The unit of resolution is second. |
osl_Process_E_None | on success |
osl_Process_E_TimedOut | waiting for the child process timed out |
osl_Process_E_Unknown | an error occurred or the parameter are invalid |
SAL_DLLPUBLIC void osl_setCommandArgs | ( | int | argc, |
char ** | argv | ||
) |
Set the command-line arguments as passed to the main-function of this process.
Deprecated: This function is only for internal use. Passing the args from main will only work for Unix, on Windows there's no effect, the full command line will automatically be taken. This is due to Windows 9x/ME limitation that don't allow UTF-16 wmain to provide a osl_setCommandArgsU( int argc, sal_Unicode **argv );
[in] | argc | The number of elements in the argv array. |
[in] | argv | The array of command-line arguments. |
SAL_DLLPUBLIC oslProcessError osl_setEnvironment | ( | rtl_uString * | strVar, |
rtl_uString * | strValue | ||
) |
Set the value of one environment variable.
[in] | strVar | denotes the name of the variable to set. |
[in] | strValue | string of the new value of environment variable. |
SAL_DLLPUBLIC oslProcessError osl_setProcessLocale | ( | rtl_Locale * | pLocale | ) |
Change the locale of the process.
[in] | pLocale | a pointer to the locale to be set |
SAL_DLLPUBLIC oslProcessError osl_terminateProcess | ( | oslProcess | Process | ) |
Terminate a process.
[in] | Process | the handle of the process to be terminated |