xref: /trunk/main/jvmfwk/source/framework.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir #if !defined INCLUDED_JVMFWK_LOCAL_FRAMEWORK_HXX
28*cdf0e10cSrcweir #define INCLUDED_JVMFWK_LOCAL_FRAMEWORK_HXX
29*cdf0e10cSrcweir #include "rtl/ustring.hxx"
30*cdf0e10cSrcweir #include "rtl/byteseq.hxx"
31*cdf0e10cSrcweir #include "jvmfwk/framework.h"
32*cdf0e10cSrcweir #include "jvmfwk/vendorplugin.h"
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir /** typedefs for functions from vendorplugin.h
35*cdf0e10cSrcweir  */
36*cdf0e10cSrcweir typedef javaPluginError (*jfw_plugin_getAllJavaInfos_ptr)(
37*cdf0e10cSrcweir     rtl_uString * sVendor,
38*cdf0e10cSrcweir     rtl_uString * sMinVersion,
39*cdf0e10cSrcweir     rtl_uString * sMaxVersion,
40*cdf0e10cSrcweir     rtl_uString * * arExcludeList,
41*cdf0e10cSrcweir     sal_Int32  nLenList,
42*cdf0e10cSrcweir     JavaInfo*** parJavaInfo,
43*cdf0e10cSrcweir     sal_Int32 *nLenInfoList);
44*cdf0e10cSrcweir 
45*cdf0e10cSrcweir typedef javaPluginError (*jfw_plugin_getJavaInfoByPath_ptr)(
46*cdf0e10cSrcweir     rtl_uString * sPath,
47*cdf0e10cSrcweir     rtl_uString * sVendor,
48*cdf0e10cSrcweir     rtl_uString * sMinVersion,
49*cdf0e10cSrcweir     rtl_uString * sMaxVersion,
50*cdf0e10cSrcweir     rtl_uString * * arExcludeList,
51*cdf0e10cSrcweir     sal_Int32  nLenList,
52*cdf0e10cSrcweir     JavaInfo** ppInfo);
53*cdf0e10cSrcweir 
54*cdf0e10cSrcweir /** starts a Java Virtual Machine.
55*cdf0e10cSrcweir     <p>
56*cdf0e10cSrcweir     The function shall ensure, that the VM does not abort the process
57*cdf0e10cSrcweir     during instantiation.
58*cdf0e10cSrcweir     </p>
59*cdf0e10cSrcweir  */
60*cdf0e10cSrcweir typedef javaPluginError (*jfw_plugin_startJavaVirtualMachine_ptr)(
61*cdf0e10cSrcweir     const JavaInfo *info,
62*cdf0e10cSrcweir     const JavaVMOption* options,
63*cdf0e10cSrcweir     sal_Int32 cOptions,
64*cdf0e10cSrcweir     JavaVM ** ppVM,
65*cdf0e10cSrcweir     JNIEnv ** ppEnv);
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir typedef javaPluginError (*jfw_plugin_existJRE_ptr)(
68*cdf0e10cSrcweir     const JavaInfo *info,
69*cdf0e10cSrcweir     sal_Bool *exist);
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir namespace jfw
73*cdf0e10cSrcweir {
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir class CJavaInfo
76*cdf0e10cSrcweir {
77*cdf0e10cSrcweir     static JavaInfo * copyJavaInfo(const JavaInfo * pInfo);
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir     enum _transfer_ownership {TRANSFER};
80*cdf0e10cSrcweir     /*Attaching the pointer to this class. The argument pInfo must not
81*cdf0e10cSrcweir     be freed afterwards.
82*cdf0e10cSrcweir     */
83*cdf0e10cSrcweir     CJavaInfo(::JavaInfo * info, _transfer_ownership);
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir public:
86*cdf0e10cSrcweir     ::JavaInfo * pInfo;
87*cdf0e10cSrcweir 
88*cdf0e10cSrcweir 
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir     CJavaInfo();
91*cdf0e10cSrcweir     CJavaInfo(const CJavaInfo &);
92*cdf0e10cSrcweir     ~CJavaInfo();
93*cdf0e10cSrcweir     CJavaInfo& operator =(const ::JavaInfo* info);
94*cdf0e10cSrcweir     CJavaInfo & operator = (const CJavaInfo& info);
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir     /* The returned class takes ownership of the argument info. info
97*cdf0e10cSrcweir     must not been freed afterwards.
98*cdf0e10cSrcweir     */
99*cdf0e10cSrcweir     static CJavaInfo createWrapper(::JavaInfo* info);
100*cdf0e10cSrcweir     /*Attaching the pointer to this class. The argument pInfo must not
101*cdf0e10cSrcweir     be freed afterwards.
102*cdf0e10cSrcweir     */
103*cdf0e10cSrcweir     void attach(::JavaInfo* pInfo);
104*cdf0e10cSrcweir     ::JavaInfo * detach();
105*cdf0e10cSrcweir     const ::JavaInfo* operator ->() const;
106*cdf0e10cSrcweir //    ::JavaInfo** operator & ();
107*cdf0e10cSrcweir     operator ::JavaInfo* ();
108*cdf0e10cSrcweir     operator ::JavaInfo const * () const;
109*cdf0e10cSrcweir     ::JavaInfo* cloneJavaInfo() const;
110*cdf0e10cSrcweir 
111*cdf0e10cSrcweir     rtl::OUString getVendor() const;
112*cdf0e10cSrcweir     rtl::OUString getLocation() const;
113*cdf0e10cSrcweir     sal_uInt64 getFeatures() const;
114*cdf0e10cSrcweir };
115*cdf0e10cSrcweir 
116*cdf0e10cSrcweir class FrameworkException
117*cdf0e10cSrcweir {
118*cdf0e10cSrcweir public:
119*cdf0e10cSrcweir 
120*cdf0e10cSrcweir     FrameworkException(javaFrameworkError err, const rtl::OString& msg):
121*cdf0e10cSrcweir         errorCode(err), message(msg)
122*cdf0e10cSrcweir         {
123*cdf0e10cSrcweir         }
124*cdf0e10cSrcweir     javaFrameworkError errorCode;
125*cdf0e10cSrcweir     rtl::OString message;
126*cdf0e10cSrcweir };
127*cdf0e10cSrcweir }
128*cdf0e10cSrcweir #endif
129