Bump version to 6.4-15
[LibreOffice.git] / tools / source / misc / extendapplicationenvironment.cxx
blob0324a7d0d38074c8d5395599cc7469686910c8ad
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <config_folders.h>
22 #include <sal/config.h>
24 #include <stdlib.h>
26 #if defined UNX
27 #include <sys/resource.h>
28 #endif
30 #include <osl/process.h>
31 #include <rtl/bootstrap.hxx>
32 #include <rtl/ustrbuf.hxx>
33 #include <rtl/ustring.hxx>
34 #include <sal/types.h>
35 #include <tools/extendapplicationenvironment.hxx>
37 namespace tools {
39 void extendApplicationEnvironment() {
40 #if defined UNX
41 // Try to set RLIMIT_NOFILE as large as possible (failure is harmless):
42 rlimit lim;
43 if (getrlimit(RLIMIT_NOFILE, &lim) == 0) {
44 lim.rlim_cur = lim.rlim_max;
45 setrlimit(RLIMIT_NOFILE, &lim);
47 #endif
49 // Make sure URE_BOOTSTRAP environment variable is set (failure is fatal):
50 OUStringBuffer env(512);
51 OUString envVar("URE_BOOTSTRAP");
52 OUString uri;
53 if (rtl::Bootstrap::get(envVar, uri))
55 if (!uri.matchIgnoreAsciiCase("vnd.sun.star.pathname:"))
57 uri = rtl::Bootstrap::encode(uri);
59 env.append(uri);
60 } else {
61 if (osl_getExecutableFile(&uri.pData) != osl_Process_E_None) {
62 abort();
64 sal_Int32 lastDirSeperatorPos = uri.lastIndexOf('/');
65 if (lastDirSeperatorPos >= 0) {
66 uri = uri.copy(0, lastDirSeperatorPos + 1);
68 env.append(rtl::Bootstrap::encode(uri));
69 #ifdef MACOSX
70 env.append("../" LIBO_SHARE_FOLDER "/");
71 #endif
72 env.append(SAL_CONFIGFILE("fundamental"));
74 OUString envValue(env.makeStringAndClear());
75 if (osl_setEnvironment(envVar.pData, envValue.pData) != osl_Process_E_None) {
76 abort();
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */