tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / cppu / source / uno / loadmodule.cxx
blobf2811a5958d46ce6ae917cda7fc6a210edbac50b
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 .
21 #include <sal/config.h>
23 #include <cassert>
25 #include <osl/module.h>
26 #include <osl/module.hxx>
27 #include <rtl/malformeduriexception.hxx>
28 #include <rtl/uri.hxx>
29 #include <rtl/ustring.hxx>
30 #include <sal/log.hxx>
32 #include "loadmodule.hxx"
34 namespace cppu::detail {
36 #ifndef DISABLE_DYNLOADING
38 bool loadModule(osl::Module& rModule, OUString const & name) {
39 static OUString base = [] {
40 OUString url;
41 if (!osl::Module::getUrlFromAddress(
42 reinterpret_cast<oslGenericFunction>(&loadModule), url))
44 SAL_WARN("cppu", "osl::Module::getUrlFromAddress failed");
45 return OUString();
47 assert(!url.isEmpty());
48 return url;
49 }();
50 if (base.isEmpty()) {
51 SAL_INFO("cppu", "osl::Module::getUrlFromAddress had failed");
52 return false;
54 OUString b =
55 #if defined SAL_DLLPREFIX
56 SAL_DLLPREFIX +
57 #endif
58 name +
59 SAL_DLLEXTENSION;
60 try {
61 b = rtl::Uri::convertRelToAbs(base, b);
62 } catch (rtl::MalformedUriException & e) {
63 SAL_INFO("cppu", "rtl::MalformedUriException <" << e.getMessage() << ">");
64 return false;
66 return rModule.load(
68 SAL_LOADMODULE_GLOBAL | SAL_LOADMODULE_LAZY);
71 #endif
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */