LCOV - code coverage report
Current view: top level - jvmaccess/source - classpath.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 28 56 50.0 %
Date: 2014-11-03 Functions: 1 2 50.0 %
Legend: Lines: hit not hit

          Line data    Source code
       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             : #include "sal/config.h"
      21             : 
      22             : #include "jvmaccess/classpath.hxx"
      23             : 
      24             : #include <vector>
      25             : 
      26             : #include "com/sun/star/lang/IllegalArgumentException.hpp"
      27             : #include "com/sun/star/uno/Any.hxx"
      28             : #include "com/sun/star/uno/Reference.hxx"
      29             : #include "com/sun/star/uno/RuntimeException.hpp"
      30             : #include "com/sun/star/uno/XComponentContext.hpp"
      31             : #include "com/sun/star/uno/XInterface.hpp"
      32             : #include "com/sun/star/uri/UriReferenceFactory.hpp"
      33             : #include "com/sun/star/uri/XVndSunStarExpandUrlReference.hpp"
      34             : #include "com/sun/star/util/theMacroExpander.hpp"
      35             : #include "osl/diagnose.h"
      36             : #include "rtl/ustring.hxx"
      37             : #include "sal/types.h"
      38             : 
      39             : #include "jni.h"
      40             : 
      41          22 : void * ::jvmaccess::ClassPath::doTranslateToUrls(
      42             :     css::uno::Reference< css::uno::XComponentContext > const & context,
      43             :     void * environment, OUString const & classPath)
      44             : {
      45             :     OSL_ASSERT(context.is() && environment != 0);
      46          22 :     ::JNIEnv * const env = static_cast< ::JNIEnv * >(environment);
      47          22 :     jclass classUrl(env->FindClass("java/net/URL"));
      48          22 :     if (classUrl == 0) {
      49           0 :         return 0;
      50             :     }
      51             :     jmethodID ctorUrl(
      52          22 :         env->GetMethodID(classUrl, "<init>", "(Ljava/lang/String;)V"));
      53          22 :     if (ctorUrl == 0) {
      54           0 :         return 0;
      55             :     }
      56          22 :     ::std::vector< jobject > urls;
      57          94 :     for (::sal_Int32 i = 0; i != -1;) {
      58          50 :         OUString url(classPath.getToken(0, ' ', i));
      59          50 :         if (!url.isEmpty()) {
      60             :             css::uno::Reference< css::uri::XVndSunStarExpandUrlReference >
      61             :                 expUrl(
      62          48 :                     css::uri::UriReferenceFactory::create(context)->parse(url),
      63          24 :                     css::uno::UNO_QUERY);
      64          24 :             if (expUrl.is()) {
      65             :                 css::uno::Reference< css::util::XMacroExpander > expander =
      66           8 :                     css::util::theMacroExpander::get(context);
      67             :                 try {
      68           8 :                     url = expUrl->expand( expander );
      69           0 :                 } catch (const css::lang::IllegalArgumentException & e) {
      70             :                     throw css::uno::RuntimeException(
      71             :                         OUString("com.sun.star.lang.IllegalArgumentException: ")
      72           0 :                          + e.Message);
      73           8 :                 }
      74             :             }
      75             :             jvalue arg;
      76             :             arg.l = env->NewString(
      77             :                 static_cast< jchar const * >(url.getStr()),
      78          24 :                 static_cast< jsize >(url.getLength()));
      79          24 :             if (arg.l == 0) {
      80           0 :                 return 0;
      81             :             }
      82          24 :             jobject o(env->NewObjectA(classUrl, ctorUrl, &arg));
      83          24 :             if (o == 0) {
      84           0 :                 return 0;
      85             :             }
      86          24 :             urls.push_back(o);
      87             :         }
      88          50 :     }
      89             :     jobjectArray result = env->NewObjectArray(
      90          22 :         static_cast< jsize >(urls.size()), classUrl, 0);
      91             :         // static_cast is ok, as each element of urls occupied at least one
      92             :         // character of the OUString classPath
      93          22 :     if (result == 0) {
      94           0 :         return 0;
      95             :     }
      96          22 :     jsize idx = 0;
      97          46 :     for (std::vector< jobject >::iterator i(urls.begin()); i != urls.end(); ++i)
      98             :     {
      99          24 :         env->SetObjectArrayElement(result, idx++, *i);
     100             :     }
     101          22 :     return result;
     102             : }
     103             : 
     104           0 : void * ::jvmaccess::ClassPath::doLoadClass(
     105             :     css::uno::Reference< css::uno::XComponentContext > const & context,
     106             :     void * environment, OUString const & classPath,
     107             :     OUString const & name)
     108             : {
     109             :     OSL_ASSERT(context.is() && environment != 0);
     110           0 :     ::JNIEnv * const env = static_cast< ::JNIEnv * >(environment);
     111           0 :     jclass classLoader(env->FindClass("java/net/URLClassLoader"));
     112           0 :     if (classLoader == 0) {
     113           0 :         return 0;
     114             :     }
     115             :     jmethodID ctorLoader(
     116           0 :         env->GetMethodID(classLoader, "<init>", "([Ljava/net/URL;)V"));
     117           0 :     if (ctorLoader == 0) {
     118           0 :         return 0;
     119             :     }
     120             :     jvalue arg;
     121           0 :     arg.l = translateToUrls(context, env, classPath);
     122           0 :     if (arg.l == 0) {
     123           0 :         return 0;
     124             :     }
     125           0 :     jobject cl = env->NewObjectA(classLoader, ctorLoader, &arg);
     126           0 :     if (cl == 0) {
     127           0 :         return 0;
     128             :     }
     129             :     jmethodID methLoadClass(
     130             :         env->GetMethodID(
     131           0 :             classLoader, "loadClass", "(Ljava/lang/String;)Ljava/lang/Class;"));
     132           0 :     if (methLoadClass == 0) {
     133           0 :         return 0;
     134             :     }
     135             :     arg.l = env->NewString(
     136             :         static_cast< jchar const * >(name.getStr()),
     137           0 :         static_cast< jsize >(name.getLength()));
     138           0 :     if (arg.l == 0) {
     139           0 :         return 0;
     140             :     }
     141           0 :     return env->CallObjectMethodA(cl, methLoadClass, &arg);
     142             : }
     143             : 
     144             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10