Bump version to 6.4-15
[LibreOffice.git] / comphelper / source / officeinstdir / officeinstallationdirectories.hxx
blobc71c2ce5f40c90e85cb31e0ba63b27dc2559e6ad
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 .
20 #ifndef INCLUDED_COMPHELPER_SOURCE_OFFICEINSTDIR_OFFICEINSTALLATIONDIRECTORIES_HXX
21 #define INCLUDED_COMPHELPER_SOURCE_OFFICEINSTDIR_OFFICEINSTALLATIONDIRECTORIES_HXX
23 #include <osl/mutex.hxx>
24 #include <cppuhelper/implbase.hxx>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/util/XOfficeInstallationDirectories.hpp>
29 #include <boost/optional.hpp>
31 namespace com::sun::star::uno { class XComponentContext; }
33 namespace comphelper {
37 typedef cppu::WeakImplHelper<
38 css::util::XOfficeInstallationDirectories,
39 css::lang::XServiceInfo > UnoImplBase;
41 struct mutex_holder
43 osl::Mutex m_aMutex;
46 class OfficeInstallationDirectories : public mutex_holder, public UnoImplBase
48 public:
49 explicit OfficeInstallationDirectories(
50 const css::uno::Reference< css::uno::XComponentContext > & xCtx );
51 virtual ~OfficeInstallationDirectories() override;
53 // XOfficeInstallationDirectories
54 virtual OUString SAL_CALL
55 getOfficeInstallationDirectoryURL() override;
56 virtual OUString SAL_CALL
57 getOfficeUserDataDirectoryURL() override;
58 virtual OUString SAL_CALL
59 makeRelocatableURL( const OUString& URL ) override;
60 virtual OUString SAL_CALL
61 makeAbsoluteURL( const OUString& URL ) override;
63 // XServiceInfo
64 virtual OUString SAL_CALL
65 getImplementationName() override;
66 virtual sal_Bool SAL_CALL
67 supportsService( const OUString& ServiceName ) override;
68 virtual css::uno::Sequence< OUString > SAL_CALL
69 getSupportedServiceNames() override;
71 private:
72 void initDirs();
74 css::uno::Reference< css::uno::XComponentContext > m_xCtx;
75 boost::optional<OUString> m_xOfficeBrandDir;
76 boost::optional<OUString> m_xUserDir;
79 } // namespace comphelper
81 #endif /* ! INCLUDED_COMPHELPER_SOURCE_OFFICEINSTDIR_OFFICEINSTALLATIONDIRECTORIES_HXX */
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */