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 :
21 : #include "ucpext_datasupplier.hxx"
22 : #include "ucpext_content.hxx"
23 : #include "ucpext_provider.hxx"
24 :
25 : #include <com/sun/star/deployment/PackageInformationProvider.hpp>
26 :
27 : #include <ucbhelper/contentidentifier.hxx>
28 : #include <comphelper/componentcontext.hxx>
29 : #include <comphelper/processfactory.hxx>
30 : #include <ucbhelper/providerhelper.hxx>
31 : #include <ucbhelper/content.hxx>
32 : #include <ucbhelper/propertyvalueset.hxx>
33 : #include <tools/diagnose_ex.h>
34 : #include <rtl/ustrbuf.hxx>
35 :
36 : #include <vector>
37 : #include <boost/shared_ptr.hpp>
38 :
39 : //......................................................................................................................
40 : namespace ucb { namespace ucp { namespace ext
41 : {
42 : //......................................................................................................................
43 :
44 : /** === begin UNO using === **/
45 : using ::com::sun::star::uno::Reference;
46 : using ::com::sun::star::uno::XInterface;
47 : using ::com::sun::star::uno::UNO_QUERY;
48 : using ::com::sun::star::uno::UNO_QUERY_THROW;
49 : using ::com::sun::star::uno::UNO_SET_THROW;
50 : using ::com::sun::star::uno::Exception;
51 : using ::com::sun::star::uno::RuntimeException;
52 : using ::com::sun::star::uno::Any;
53 : using ::com::sun::star::uno::makeAny;
54 : using ::com::sun::star::uno::Sequence;
55 : using ::com::sun::star::uno::Type;
56 : using ::com::sun::star::uno::XComponentContext;
57 : using ::com::sun::star::ucb::XContent;
58 : using ::com::sun::star::ucb::XContentIdentifier;
59 : using ::com::sun::star::sdbc::XRow;
60 : using ::com::sun::star::lang::XMultiServiceFactory;
61 : using ::com::sun::star::ucb::IllegalIdentifierException;
62 : using ::com::sun::star::ucb::ResultSetException;
63 : using ::com::sun::star::deployment::PackageInformationProvider;
64 : using ::com::sun::star::deployment::XPackageInformationProvider;
65 : using ::com::sun::star::beans::Property;
66 : using ::com::sun::star::sdbc::XResultSet;
67 : using ::com::sun::star::sdbc::XRow;
68 : using ::com::sun::star::ucb::XCommandEnvironment;
69 : /** === end UNO using === **/
70 : //==================================================================================================================
71 : //= ResultListEntry
72 : //==================================================================================================================
73 0 : struct ResultListEntry
74 : {
75 : ::rtl::OUString sId;
76 : Reference< XContentIdentifier > xId;
77 : ::rtl::Reference< Content > pContent;
78 : Reference< XRow > xRow;
79 : };
80 :
81 : typedef ::std::vector< ResultListEntry > ResultList;
82 :
83 : //==================================================================================================================
84 : //= DataSupplier_Impl
85 : //==================================================================================================================
86 : struct DataSupplier_Impl
87 : {
88 : ::osl::Mutex m_aMutex;
89 : ResultList m_aResults;
90 : ::rtl::Reference< Content > m_xContent;
91 : Reference< XComponentContext > m_xContext;
92 : sal_Int32 m_nOpenMode;
93 :
94 0 : DataSupplier_Impl( const Reference< XComponentContext >& rxContext, const ::rtl::Reference< Content >& i_rContent,
95 : const sal_Int32 i_nOpenMode )
96 : :m_xContent( i_rContent )
97 : ,m_xContext( rxContext )
98 0 : ,m_nOpenMode( i_nOpenMode )
99 : {
100 0 : }
101 : ~DataSupplier_Impl();
102 : };
103 :
104 : //------------------------------------------------------------------------------------------------------------------
105 0 : DataSupplier_Impl::~DataSupplier_Impl()
106 : {
107 0 : }
108 :
109 : //==================================================================================================================
110 : //= helper
111 : //==================================================================================================================
112 : namespace
113 : {
114 0 : ::rtl::OUString lcl_compose( const ::rtl::OUString& i_rBaseURL, const ::rtl::OUString& i_rRelativeURL )
115 : {
116 0 : ENSURE_OR_RETURN( !i_rBaseURL.isEmpty(), "illegal base URL", i_rRelativeURL );
117 :
118 0 : ::rtl::OUStringBuffer aComposer( i_rBaseURL );
119 0 : if ( i_rBaseURL.getStr()[ i_rBaseURL.getLength() - 1 ] != '/' )
120 0 : aComposer.append( sal_Unicode( '/' ) );
121 0 : aComposer.append( i_rRelativeURL );
122 0 : return aComposer.makeStringAndClear();
123 : }
124 : }
125 :
126 :
127 : //==================================================================================================================
128 : //= DataSupplier
129 : //==================================================================================================================
130 : //------------------------------------------------------------------------------------------------------------------
131 0 : DataSupplier::DataSupplier( const Reference< XComponentContext >& rxContext,
132 : const ::rtl::Reference< Content >& i_rContent,
133 : const sal_Int32 i_nOpenMode )
134 0 : :m_pImpl( new DataSupplier_Impl( rxContext, i_rContent, i_nOpenMode ) )
135 : {
136 0 : }
137 :
138 : //------------------------------------------------------------------------------------------------------------------
139 0 : void DataSupplier::fetchData()
140 : {
141 : try
142 : {
143 0 : const Reference< XPackageInformationProvider > xPackageInfo = PackageInformationProvider::get( m_pImpl->m_xContext );
144 :
145 0 : const ::rtl::OUString sContentIdentifier( m_pImpl->m_xContent->getIdentifier()->getContentIdentifier() );
146 :
147 0 : switch ( m_pImpl->m_xContent->getExtensionContentType() )
148 : {
149 : case E_ROOT:
150 : {
151 0 : Sequence< Sequence< ::rtl::OUString > > aExtensionInfo( xPackageInfo->getExtensionList() );
152 0 : for ( const Sequence< ::rtl::OUString >* pExtInfo = aExtensionInfo.getConstArray();
153 0 : pExtInfo != aExtensionInfo.getConstArray() + aExtensionInfo.getLength();
154 : ++pExtInfo
155 : )
156 : {
157 0 : if ( pExtInfo->getLength() <= 0 )
158 : {
159 : SAL_WARN( "ucb.ucp", "illegal extension info" );
160 0 : continue;
161 : }
162 :
163 0 : const ::rtl::OUString& rLocalId = (*pExtInfo)[0];
164 0 : ResultListEntry aEntry;
165 0 : aEntry.sId = ContentProvider::getRootURL() + Content::encodeIdentifier( rLocalId ) + ::rtl::OUString( sal_Unicode( '/' ) );
166 0 : m_pImpl->m_aResults.push_back( aEntry );
167 0 : }
168 : }
169 0 : break;
170 : case E_EXTENSION_ROOT:
171 : case E_EXTENSION_CONTENT:
172 : {
173 0 : const ::rtl::OUString sPackageLocation( m_pImpl->m_xContent->getPhysicalURL() );
174 0 : ::ucbhelper::Content aWrappedContent( sPackageLocation, getResultSet()->getEnvironment(), m_pImpl->m_xContext );
175 :
176 : // obtain the properties which our result set is set up for from the wrapped content
177 0 : Sequence< ::rtl::OUString > aPropertyNames(1);
178 0 : aPropertyNames[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Title" ) );
179 :
180 0 : const Reference< XResultSet > xFolderContent( aWrappedContent.createCursor( aPropertyNames ), UNO_SET_THROW );
181 0 : const Reference< XRow > xContentRow( xFolderContent, UNO_QUERY_THROW );
182 0 : while ( xFolderContent->next() )
183 : {
184 0 : ResultListEntry aEntry;
185 0 : aEntry.sId = lcl_compose( sContentIdentifier, xContentRow->getString( 1 ) );
186 0 : m_pImpl->m_aResults.push_back( aEntry );
187 0 : }
188 : }
189 0 : break;
190 : default:
191 : OSL_FAIL( "DataSupplier::fetchData: unimplemented content type!" );
192 0 : break;
193 0 : }
194 : }
195 0 : catch( const Exception& )
196 : {
197 : DBG_UNHANDLED_EXCEPTION();
198 : }
199 0 : }
200 :
201 : //------------------------------------------------------------------------------------------------------------------
202 0 : DataSupplier::~DataSupplier()
203 : {
204 0 : }
205 :
206 : //------------------------------------------------------------------------------------------------------------------
207 0 : ::rtl::OUString DataSupplier::queryContentIdentifierString( sal_uInt32 i_nIndex )
208 : {
209 0 : ::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
210 :
211 0 : if ( i_nIndex < m_pImpl->m_aResults.size() )
212 : {
213 0 : const ::rtl::OUString sId = m_pImpl->m_aResults[ i_nIndex ].sId;
214 0 : if ( !sId.isEmpty() )
215 0 : return sId;
216 : }
217 :
218 : OSL_FAIL( "DataSupplier::queryContentIdentifierString: illegal index, or illegal result entry id!" );
219 0 : return ::rtl::OUString();
220 : }
221 :
222 : //------------------------------------------------------------------------------------------------------------------
223 0 : Reference< XContentIdentifier > DataSupplier::queryContentIdentifier( sal_uInt32 i_nIndex )
224 : {
225 0 : ::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
226 :
227 0 : if ( i_nIndex < m_pImpl->m_aResults.size() )
228 : {
229 0 : Reference< XContentIdentifier > xId( m_pImpl->m_aResults[ i_nIndex ].xId );
230 0 : if ( xId.is() )
231 0 : return xId;
232 : }
233 :
234 0 : ::rtl::OUString sId = queryContentIdentifierString( i_nIndex );
235 0 : if ( !sId.isEmpty() )
236 : {
237 0 : Reference< XContentIdentifier > xId = new ::ucbhelper::ContentIdentifier( sId );
238 0 : m_pImpl->m_aResults[ i_nIndex ].xId = xId;
239 0 : return xId;
240 : }
241 :
242 0 : return Reference< XContentIdentifier >();
243 : }
244 :
245 : //------------------------------------------------------------------------------------------------------------------
246 0 : Reference< XContent > DataSupplier::queryContent( sal_uInt32 i_nIndex )
247 : {
248 0 : ::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
249 0 : ENSURE_OR_RETURN( i_nIndex < m_pImpl->m_aResults.size(), "illegal index!", NULL );
250 :
251 :
252 0 : ::rtl::Reference< Content > pContent( m_pImpl->m_aResults[ i_nIndex ].pContent );
253 0 : if ( pContent.is() )
254 0 : return pContent.get();
255 :
256 0 : Reference< XContentIdentifier > xId( queryContentIdentifier( i_nIndex ) );
257 0 : if ( xId.is() )
258 : {
259 : try
260 : {
261 0 : Reference< XContent > xContent( m_pImpl->m_xContent->getProvider()->queryContent( xId ) );
262 0 : pContent.set( dynamic_cast< Content* >( xContent.get() ) );
263 : OSL_ENSURE( pContent.is() || !xContent.is(), "DataSupplier::queryContent: invalid content implementation!" );
264 0 : m_pImpl->m_aResults[ i_nIndex ].pContent = pContent;
265 0 : return pContent.get();
266 :
267 : }
268 0 : catch ( const IllegalIdentifierException& )
269 : {
270 : DBG_UNHANDLED_EXCEPTION();
271 : }
272 : }
273 :
274 0 : return Reference< XContent >();
275 : }
276 :
277 : //------------------------------------------------------------------------------------------------------------------
278 0 : sal_Bool DataSupplier::getResult( sal_uInt32 i_nIndex )
279 : {
280 0 : ::osl::ClearableGuard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
281 :
282 0 : if ( m_pImpl->m_aResults.size() > i_nIndex )
283 : // result already present.
284 0 : return sal_True;
285 :
286 0 : return sal_False;
287 : }
288 :
289 : //------------------------------------------------------------------------------------------------------------------
290 0 : sal_uInt32 DataSupplier::totalCount()
291 : {
292 0 : ::osl::ClearableGuard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
293 0 : return m_pImpl->m_aResults.size();
294 : }
295 :
296 : //------------------------------------------------------------------------------------------------------------------
297 0 : sal_uInt32 DataSupplier::currentCount()
298 : {
299 0 : return m_pImpl->m_aResults.size();
300 : }
301 :
302 : //------------------------------------------------------------------------------------------------------------------
303 0 : sal_Bool DataSupplier::isCountFinal()
304 : {
305 0 : return sal_True;
306 : }
307 :
308 : //------------------------------------------------------------------------------------------------------------------
309 0 : Reference< XRow > DataSupplier::queryPropertyValues( sal_uInt32 i_nIndex )
310 : {
311 0 : ::osl::MutexGuard aGuard( m_pImpl->m_aMutex );
312 0 : ENSURE_OR_RETURN( i_nIndex < m_pImpl->m_aResults.size(), "DataSupplier::queryPropertyValues: illegal index!", NULL );
313 :
314 0 : Reference< XRow > xRow = m_pImpl->m_aResults[ i_nIndex ].xRow;
315 0 : if ( xRow.is() )
316 0 : return xRow;
317 :
318 0 : ENSURE_OR_RETURN( queryContent( i_nIndex ).is(), "could not retrieve the content", NULL );
319 :
320 0 : switch ( m_pImpl->m_xContent->getExtensionContentType() )
321 : {
322 : case E_ROOT:
323 : {
324 0 : const ::rtl::OUString& rId( m_pImpl->m_aResults[ i_nIndex ].sId );
325 0 : const ::rtl::OUString sRootURL( ContentProvider::getRootURL() );
326 0 : ::rtl::OUString sTitle = Content::decodeIdentifier( rId.copy( sRootURL.getLength() ) );
327 0 : if ( !sTitle.isEmpty() && ( sTitle[ sTitle.getLength() - 1 ] == '/' ) )
328 0 : sTitle = sTitle.copy( 0, sTitle.getLength() - 1 );
329 0 : xRow = Content::getArtificialNodePropertyValues( m_pImpl->m_xContext, getResultSet()->getProperties(), sTitle );
330 : }
331 0 : break;
332 :
333 : case E_EXTENSION_ROOT:
334 : case E_EXTENSION_CONTENT:
335 : {
336 0 : xRow = m_pImpl->m_aResults[ i_nIndex ].pContent->getPropertyValues(
337 0 : getResultSet()->getProperties(), getResultSet()->getEnvironment() );
338 : }
339 0 : break;
340 : default:
341 : OSL_FAIL( "DataSupplier::queryPropertyValues: unhandled case!" );
342 0 : break;
343 : }
344 :
345 0 : m_pImpl->m_aResults[ i_nIndex ].xRow = xRow;
346 0 : return xRow;
347 : }
348 :
349 : //------------------------------------------------------------------------------------------------------------------
350 0 : void DataSupplier::releasePropertyValues( sal_uInt32 i_nIndex )
351 : {
352 0 : ::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
353 :
354 0 : if ( i_nIndex < m_pImpl->m_aResults.size() )
355 0 : m_pImpl->m_aResults[ i_nIndex ].xRow.clear();
356 0 : }
357 :
358 : //------------------------------------------------------------------------------------------------------------------
359 0 : void DataSupplier::close()
360 : {
361 0 : }
362 :
363 : //------------------------------------------------------------------------------------------------------------------
364 0 : void DataSupplier::validate() throw( ResultSetException )
365 : {
366 0 : }
367 :
368 : //......................................................................................................................
369 : } } } // namespace ucp::ext
370 : //......................................................................................................................
371 :
372 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|