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 <config_folders.h>
21 :
22 : #include "comphelper_module.hxx"
23 : #include "comphelper_services.hxx"
24 : #include <cppuhelper/supportsservice.hxx>
25 :
26 : /**************************************************************************
27 : TODO
28 : **************************************************************************
29 :
30 : *************************************************************************/
31 :
32 : #include <osl/file.hxx>
33 : #include <com/sun/star/beans/XPropertySet.hpp>
34 : #include <com/sun/star/util/theMacroExpander.hpp>
35 :
36 : #include "officeinstallationdirectories.hxx"
37 :
38 : using namespace com::sun::star;
39 :
40 : using namespace comphelper;
41 :
42 :
43 : // helpers
44 :
45 :
46 :
47 0 : static bool makeCanonicalFileURL( OUString & rURL )
48 : {
49 : OSL_ENSURE(rURL.startsWithIgnoreAsciiCase("file:"), "File URL expected!");
50 :
51 0 : OUString aNormalizedURL;
52 0 : if ( osl::FileBase::getAbsoluteFileURL( OUString(),
53 : rURL,
54 0 : aNormalizedURL )
55 : == osl::DirectoryItem::E_None )
56 : {
57 0 : osl::DirectoryItem aDirItem;
58 0 : if ( osl::DirectoryItem::get( aNormalizedURL, aDirItem )
59 : == osl::DirectoryItem::E_None )
60 : {
61 0 : osl::FileStatus aFileStatus( osl_FileStatus_Mask_FileURL );
62 :
63 0 : if ( aDirItem.getFileStatus( aFileStatus )
64 : == osl::DirectoryItem::E_None )
65 : {
66 0 : aNormalizedURL = aFileStatus.getFileURL();
67 :
68 0 : if ( !aNormalizedURL.isEmpty() )
69 : {
70 0 : if ( !aNormalizedURL.endsWith("/") )
71 0 : rURL = aNormalizedURL;
72 : else
73 0 : rURL = aNormalizedURL
74 0 : .copy( 0, aNormalizedURL.getLength() - 1 );
75 :
76 0 : return true;
77 : }
78 0 : }
79 0 : }
80 : }
81 0 : return false;
82 : }
83 :
84 :
85 :
86 :
87 : // OfficeInstallationDirectories Implementation.
88 :
89 :
90 :
91 :
92 1 : OfficeInstallationDirectories::OfficeInstallationDirectories(
93 : const uno::Reference< uno::XComponentContext > & xCtx )
94 : : m_aOfficeBrandDirMacro( "$(brandbaseurl)" ),
95 : m_aUserDirMacro( "$(userdataurl)" ),
96 : m_xCtx( xCtx ),
97 : m_pOfficeBrandDir( 0 ),
98 1 : m_pUserDir( 0 )
99 : {
100 1 : }
101 :
102 :
103 : // virtual
104 3 : OfficeInstallationDirectories::~OfficeInstallationDirectories()
105 : {
106 1 : delete m_pOfficeBrandDir;
107 1 : delete m_pUserDir;
108 2 : }
109 :
110 :
111 : // util::XOfficeInstallationDirectories
112 :
113 :
114 : // virtual
115 : OUString SAL_CALL
116 0 : OfficeInstallationDirectories::getOfficeInstallationDirectoryURL()
117 : throw ( uno::RuntimeException, std::exception )
118 : {
119 0 : initDirs();
120 0 : return OUString( *m_pOfficeBrandDir );
121 : }
122 :
123 :
124 : // virtual
125 : OUString SAL_CALL
126 0 : OfficeInstallationDirectories::getOfficeUserDataDirectoryURL()
127 : throw ( uno::RuntimeException, std::exception )
128 : {
129 0 : initDirs();
130 0 : return OUString( *m_pUserDir );
131 : }
132 :
133 :
134 :
135 : // virtual
136 : OUString SAL_CALL
137 0 : OfficeInstallationDirectories::makeRelocatableURL( const OUString& URL )
138 : throw ( uno::RuntimeException, std::exception )
139 : {
140 0 : if ( !URL.isEmpty() )
141 : {
142 0 : initDirs();
143 :
144 0 : OUString aCanonicalURL( URL );
145 0 : makeCanonicalFileURL( aCanonicalURL );
146 :
147 0 : sal_Int32 nIndex = aCanonicalURL.indexOf( *m_pOfficeBrandDir );
148 0 : if ( nIndex != -1 )
149 : {
150 : return OUString(
151 : aCanonicalURL.replaceAt( nIndex,
152 : m_pOfficeBrandDir->getLength(),
153 0 : m_aOfficeBrandDirMacro ) );
154 : }
155 : else
156 : {
157 0 : nIndex = aCanonicalURL.indexOf( *m_pUserDir );
158 0 : if ( nIndex != -1 )
159 : {
160 : return OUString(
161 : aCanonicalURL.replaceAt( nIndex,
162 : m_pUserDir->getLength(),
163 0 : m_aUserDirMacro ) );
164 : }
165 0 : }
166 : }
167 0 : return OUString( URL );
168 : }
169 :
170 :
171 : // virtual
172 : OUString SAL_CALL
173 0 : OfficeInstallationDirectories::makeAbsoluteURL( const OUString& URL )
174 : throw ( uno::RuntimeException, std::exception )
175 : {
176 0 : if ( !URL.isEmpty() )
177 : {
178 0 : sal_Int32 nIndex = URL.indexOf( m_aOfficeBrandDirMacro );
179 0 : if ( nIndex != -1 )
180 : {
181 0 : initDirs();
182 :
183 : return OUString(
184 : URL.replaceAt( nIndex,
185 : m_aOfficeBrandDirMacro.getLength(),
186 0 : *m_pOfficeBrandDir ) );
187 : }
188 : else
189 : {
190 0 : nIndex = URL.indexOf( m_aUserDirMacro );
191 0 : if ( nIndex != -1 )
192 : {
193 0 : initDirs();
194 :
195 : return OUString(
196 : URL.replaceAt( nIndex,
197 : m_aUserDirMacro.getLength(),
198 0 : *m_pUserDir ) );
199 : }
200 : }
201 : }
202 0 : return OUString( URL );
203 : }
204 :
205 :
206 : // lang::XServiceInfo
207 :
208 :
209 : // virtual
210 : OUString SAL_CALL
211 1 : OfficeInstallationDirectories::getImplementationName()
212 : throw ( uno::RuntimeException, std::exception )
213 : {
214 1 : return getImplementationName_static();
215 : }
216 :
217 : // virtual
218 : sal_Bool SAL_CALL
219 0 : OfficeInstallationDirectories::supportsService( const OUString& ServiceName )
220 : throw ( uno::RuntimeException, std::exception )
221 : {
222 0 : return cppu::supportsService(this, ServiceName);
223 : }
224 :
225 : // virtual
226 : uno::Sequence< OUString > SAL_CALL
227 1 : OfficeInstallationDirectories::getSupportedServiceNames()
228 : throw ( uno::RuntimeException, std::exception )
229 : {
230 1 : return getSupportedServiceNames_static();
231 : }
232 :
233 :
234 : // static
235 : OUString SAL_CALL
236 192 : OfficeInstallationDirectories::getImplementationName_static()
237 : {
238 192 : return OUString("com.sun.star.comp.util.OfficeInstallationDirectories");
239 : }
240 :
241 :
242 : // static
243 : uno::Sequence< OUString > SAL_CALL
244 192 : OfficeInstallationDirectories::getSupportedServiceNames_static()
245 : {
246 192 : const OUString aServiceName("com.sun.star.util.OfficeInstallationDirectories");
247 192 : return uno::Sequence< OUString >( &aServiceName, 1 );
248 : }
249 :
250 :
251 : // static
252 191 : OUString SAL_CALL OfficeInstallationDirectories::getSingletonName_static()
253 : {
254 191 : return OUString("com.sun.star.util.theOfficeInstallationDirectories");
255 : }
256 :
257 :
258 : // static
259 : uno::Reference< uno::XInterface > SAL_CALL
260 1 : OfficeInstallationDirectories::Create(
261 : const uno::Reference< uno::XComponentContext > & rxContext )
262 : {
263 : return static_cast< cppu::OWeakObject * >(
264 1 : new OfficeInstallationDirectories( rxContext ) );
265 : }
266 :
267 :
268 : // non-UNO
269 :
270 :
271 0 : void OfficeInstallationDirectories::initDirs()
272 : {
273 0 : if ( m_pOfficeBrandDir == 0 )
274 : {
275 0 : osl::MutexGuard aGuard( m_aMutex );
276 0 : if ( m_pOfficeBrandDir == 0 )
277 : {
278 0 : m_pOfficeBrandDir = new OUString;
279 0 : m_pUserDir = new OUString;
280 :
281 0 : uno::Reference< util::XMacroExpander > xExpander = util::theMacroExpander::get(m_xCtx);
282 :
283 0 : *m_pOfficeBrandDir =
284 0 : xExpander->expandMacros(
285 0 : OUString( "$BRAND_BASE_DIR" ) );
286 :
287 : OSL_ENSURE( !m_pOfficeBrandDir->isEmpty(),
288 : "Unable to obtain office brand installation directory!" );
289 :
290 0 : makeCanonicalFileURL( *m_pOfficeBrandDir );
291 :
292 0 : *m_pUserDir =
293 0 : xExpander->expandMacros(
294 0 : OUString("${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" SAL_CONFIGFILE( "bootstrap" ) ":UserInstallation}" ) );
295 :
296 : OSL_ENSURE( !m_pUserDir->isEmpty(),
297 : "Unable to obtain office user data directory!" );
298 :
299 0 : makeCanonicalFileURL( *m_pUserDir );
300 0 : }
301 : }
302 0 : }
303 :
304 191 : void createRegistryInfo_OfficeInstallationDirectories()
305 : {
306 191 : static ::comphelper::module::OSingletonRegistration< OfficeInstallationDirectories > aAutoRegistration;
307 191 : }
308 :
309 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|