/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include "osl/thread.h" #include "sunjre.hxx" #include "sunversion.hxx" #include "diagnostics.h" using namespace std; using ::rtl::OUString; using ::rtl::Reference; #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) namespace jfw_plugin { Reference SunInfo::createInstance() { return new SunInfo; } char const* const* SunInfo::getJavaExePaths(int * size) { static char const * ar[] = { #if defined(WNT) "java.exe", "bin/java.exe", "jre/bin/java.exe" #elif UNX "java", "bin/java", "jre/bin/java" #endif }; *size = SAL_N_ELEMENTS(ar); return ar; } char const* const* SunInfo::getRuntimePaths(int * size) { static char const* ar[]= { #if defined(WNT) "/bin/client/jvm.dll", "/bin/hotspot/jvm.dll", "/bin/classic/jvm.dll", // The 64-bit JRE has the jvm in bin/server "/bin/server/jvm.dll" #elif UNX "/lib/" JFW_PLUGIN_ARCH "/client/libjvm.so", "/lib/" JFW_PLUGIN_ARCH "/server/libjvm.so", "/lib/" JFW_PLUGIN_ARCH "/classic/libjvm.so" #endif }; *size = SAL_N_ELEMENTS(ar); return ar; } char const* const* SunInfo::getLibraryPaths(int* size) { #ifdef UNX static char const * ar[] = { "/lib/" JFW_PLUGIN_ARCH "/client", "/lib/" JFW_PLUGIN_ARCH "/server", "/lib/" JFW_PLUGIN_ARCH "/native_threads", "/lib/" JFW_PLUGIN_ARCH }; *size = SAL_N_ELEMENTS(ar); return ar; #else *size = 0; return NULL; #endif } int SunInfo::compareVersions(const rtl::OUString& sSecond) const { OUString sFirst = getVersion(); SunVersion version1(sFirst); JFW_ENSURE(version1, OUSTR("[Java framework] sunjavaplugin" SAL_DLLEXTENSION " does not know the version: ") + sFirst + OUSTR(" as valid for a SUN JRE.")); SunVersion version2(sSecond); if ( ! version2) throw MalformedVersionException(); if(version1 == version2) return 0; if(version1 > version2) return 1; else return -1; } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */