summaryrefslogtreecommitdiff
path: root/jvmfwk/inc/fwkbase.hxx
blob: 790b9a40d8f7845630a620efc5626d1dcbc9a391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * 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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#ifndef INCLUDED_JVMFWK_INC_FWKBASE_HXX
#define INCLUDED_JVMFWK_INC_FWKBASE_HXX

#include <sal/config.h>

#include <boost/optional.hpp>

#include <rtl/ustring.hxx>
#include "libxmlutil.hxx"

namespace jfw
{

struct VersionInfo;

class VendorSettings
{
    OUString m_xmlDocVendorSettingsFileUrl;
    CXmlDocPtr m_xmlDocVendorSettings;
    CXPathContextPtr m_xmlPathContextVendorSettings;

public:
    VendorSettings();

    boost::optional<VersionInfo> getVersionInformation(const OUString & sVendor) const;
};

/* The class offers functions to retrieve verified bootstrap parameters.
 */
namespace  BootParams
{

/* Gets the file URL to the JRE which has been determined by the
   bootstrap parameter UNO_JAVA_JFW_JREHOME or UNO_JAVA_JFW_ENV_JREHOME.

   In direct mode either of them must be set. If not an exception is thrown.
*/
OUString getJREHome();

::std::vector< OString> getVMParameters();

OUString getUserData();

OUString getSharedData();

/* returns the file URL to the vendor settings xml file.
 */
OUString getVendorSettings();

/* User the parameter UNO_JAVA_JFW_CLASSPATH and UNO_JAVA_JFW_ENV_CLASSPATH
   to compose a classpath
 */
OString getClasspath();

OUString getClasspathUrls();

} //end namespace


enum JFW_MODE
{
    JFW_MODE_APPLICATION,

    JFW_MODE_DIRECT
};

JFW_MODE getMode();

/** creates the -Djava.class.path option with the complete classpath, including
    the paths which are set by UNO_JAVA_JFW_CLASSPATH_URLS.
 */
OString makeClassPathOption(OUString const & sUserClassPath);

OString getSettingsPath( const OUString & sURL);

/** Get the system path to the javasettings.xml
    Converts the URL returned from getUserSettingsURL to a
    Systempath. An empty string is returned if the file
    does not exist.
   @throws FrameworkException
 */
OString getUserSettingsPath();

/** Returns the system path of the share settings file.
    Returns a valid string or throws an exception.
   @throws FrameworkException
 */
OString getSharedSettingsPath();

/* returns a valid string or throws an exception.
   @throws FrameworkException
 */
OString getVendorSettingsPath();

/** Called from writeJavaInfoData. It sets the process identifier. When
java is to be started, then the current id is compared to the one set by
this function. If they are identical then the Java was selected in the
same process. If that Java needs a prepared environment, such as a
LD_LIBRARY_PATH, then it must not be started in this process.
*/
void setJavaSelected();

/** Determines if the currently selected Java was set in this process.

    @see setProcessId()
 */
bool wasJavaSelectedInSameProcess();
/* Only for application mode.
 */
OUString getApplicationClassPath();
}

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
vent handling on gtk3 side to gtkMichael Weghorn 2018-10-08tdf#120261 gtk3_kde5: Read IPC cmds in own thread on kde5 sideMichael Weghorn 2018-09-17New loplugin:externalStephan Bergmann 2018-09-12tdf#119814 Fix UI freeze with gtk3_kde5 filepickerMichael Weghorn 2018-09-06tdf#119685 Fix infinite loop in gtk3_kde5 filepickerMichael Weghorn 2018-08-12tdf#119133: Fix initial file and folder selectionKatarina Behrens 2018-06-11Add overloaded read/send funcs for uint64_t (conditionally)Katarina Behrens 2018-05-05Fix typosAndrea Gelmini 2018-02-16gtk3_kde5: Checkboxes on the left, texts on the rightKatarina Behrens 2018-02-15gtk3_kde5: advertise vcl plugin correctly in about dialogThorsten Behrens 2018-02-08tdf#86739 Option to set image anchor type in image insert dialogSamuel Mehrbrodt 2018-01-30Fix compilation with GCC 4.8Milian Wolff 2018-01-25lo_kde5filepicker: cleanup main and add version and help optionsMilian Wolff 2018-01-25Properly restore size of KDE5 file picker dialogMilian Wolff 2018-01-25Properly quit the lo_kde5filepicker on Quit commandMilian Wolff 2018-01-25gtk3_kde5: port away from boost::processMilian Wolff 2018-01-23Various loplugin in --enable-gtk3-kde5 codeStephan Bergmann 2018-01-23Various loplugin in --enable-gtk3-kde5 codeStephan Bergmann 2018-01-23Support opening of (some) remote URLs through the KDE file dialogMilian Wolff 2018-01-23Introduce gtk3_kde5 vcl pluginMilian Wolff