LibreOffice
LibreOffice 5.0 SDK C/C++ API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
process.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 
21 #ifndef INCLUDED_OSL_PROCESS_H
22 #define INCLUDED_OSL_PROCESS_H
23 
24 #include <sal/config.h>
25 
26 #include <osl/file.h>
27 #include <osl/pipe.h>
28 #include <osl/security.h>
29 #include <osl/socket.h>
30 #include <osl/time.h>
31 #include <rtl/locale.h>
32 #include <rtl/textenc.h>
33 #include <rtl/ustring.h>
34 #include <sal/saldllapi.h>
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 
41 typedef sal_Int32 oslProcessOption;
42 #define osl_Process_WAIT 0x0001 /* wait for completion */
43 #define osl_Process_SEARCHPATH 0x0002 /* search path for executable */
44 #define osl_Process_DETACHED 0x0004 /* run detached */
45 #define osl_Process_NORMAL 0x0000 /* run in normal window */
46 #define osl_Process_HIDDEN 0x0010 /* run hidden */
47 #define osl_Process_MINIMIZED 0x0020 /* run in minimized window */
48 #define osl_Process_MAXIMIZED 0x0040 /* run in maximized window */
49 #define osl_Process_FULLSCREEN 0x0080 /* run in fullscreen window */
50 
51 typedef sal_Int32 oslProcessData;
52 
53 /* defines for osl_getProcessInfo , can be OR'ed */
54 #define osl_Process_IDENTIFIER 0x0001 /* retrieves the process identifier */
55 #define osl_Process_EXITCODE 0x0002 /* retrieves exit code of the process */
56 #define osl_Process_CPUTIMES 0x0004 /* retrieves used cpu time */
57 #define osl_Process_HEAPUSAGE 0x0008 /* retrieves the used size of heap */
58 
59 typedef sal_uInt32 oslProcessIdentifier;
60 typedef sal_uInt32 oslProcessExitCode;
61 
62 typedef enum {
63  osl_Process_E_None, /* no error */
64  osl_Process_E_NotFound, /* image not found */
65  osl_Process_E_TimedOut, /* timout occurred */
66  osl_Process_E_NoPermission, /* permission denied */
67  osl_Process_E_Unknown, /* unknown error */
68  osl_Process_E_InvalidError, /* unmapped error */
71 
72 #ifdef SAL_W32
73 # pragma pack(push, 8)
74 #endif
75 
76 typedef struct {
77  sal_uInt32 Size;
78  oslProcessData Fields;
79  oslProcessIdentifier Ident;
80  oslProcessExitCode Code;
83  sal_uInt32 HeapUsage;
85 
86 #if defined( SAL_W32)
87 # pragma pack(pop)
88 #endif
89 
98 typedef void* oslProcess;
99 
161  rtl_uString* ustrImageName,
162  rtl_uString* ustrArguments[],
163  sal_uInt32 nArguments,
164  oslProcessOption Options,
165  oslSecurity Security,
166  rtl_uString* ustrDirectory,
167  rtl_uString* ustrEnvironments[],
168  sal_uInt32 nEnvironmentVars,
169  oslProcess* pProcess);
170 
171 
247  rtl_uString* strImageName,
248  rtl_uString* ustrArguments[],
249  sal_uInt32 nArguments,
250  oslProcessOption Options,
251  oslSecurity Security,
252  rtl_uString* ustrDirectory,
253  rtl_uString* ustrEnvironments[],
254  sal_uInt32 nEnvironmentVars,
255  oslProcess* pProcess,
256  oslFileHandle* pChildInputWrite,
257  oslFileHandle* pChildOutputRead,
258  oslFileHandle* pChildErrorRead);
259 
268  oslProcess Process);
269 
270 
277 SAL_DLLPUBLIC oslProcess SAL_CALL osl_getProcess(
278  oslProcessIdentifier Ident);
279 
280 
285  oslProcess Process);
286 
287 
294  oslProcess Process);
295 
314  oslProcess Process, const TimeValue* pTimeout);
315 
332  oslProcess Process, oslProcessData Fields, oslProcessInfo* pInfo);
333 
340  rtl_uString **strFile);
341 
346 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getCommandArgCount(void);
347 
355  sal_uInt32 nArg, rtl_uString **strCommandArg);
356 
370 SAL_DLLPUBLIC void SAL_CALL osl_setCommandArgs (int argc, char **argv);
371 
377  rtl_uString *strVar, rtl_uString **strValue);
378 
386  rtl_uString *strVar, rtl_uString *strValue);
387 
394  rtl_uString *strVar);
395 
403  rtl_uString **pustrWorkingDir );
404 
415  rtl_Locale ** ppLocale );
416 
424  rtl_Locale * pLocale );
425 
426 #ifdef __cplusplus
427 }
428 #endif
429 
430 #endif // INCLUDED_OSL_PROCESS_H
431 
432 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */