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