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 <vector>
21 :
22 : #include <ucbhelper/contentidentifier.hxx>
23 : #include <ucbhelper/providerhelper.hxx>
24 :
25 : #include <com/sun/star/ucb/OpenMode.hpp>
26 :
27 : #include "gio_datasupplier.hxx"
28 : #include "gio_content.hxx"
29 : #include "gio_provider.hxx"
30 :
31 : #include <stdio.h>
32 :
33 : using namespace com::sun::star;
34 :
35 : using namespace gio;
36 :
37 : namespace gio
38 : {
39 :
40 : typedef std::vector< ResultListEntry* > ResultList;
41 :
42 0 : DataSupplier::DataSupplier( const uno::Reference< lang::XMultiServiceFactory >& rxSMgr,
43 : const uno::Reference< ::gio::Content >& rContent, sal_Int32 nOpenMode )
44 0 : : mxContent(rContent), m_xSMgr(rxSMgr), mnOpenMode(nOpenMode), mbCountFinal(false)
45 : {
46 0 : }
47 :
48 0 : bool DataSupplier::getData()
49 : {
50 0 : if (mbCountFinal)
51 0 : return true;
52 :
53 0 : GFile *pFile = mxContent->getGFile();
54 :
55 : GFileEnumerator* pEnumerator = g_file_enumerate_children(pFile, "*",
56 0 : G_FILE_QUERY_INFO_NONE, NULL, NULL);
57 :
58 0 : if (!pEnumerator)
59 0 : return false;
60 :
61 0 : GFileInfo *pInfo = NULL;
62 0 : while ((pInfo = g_file_enumerator_next_file (pEnumerator, NULL, NULL)))
63 : {
64 0 : switch ( mnOpenMode )
65 : {
66 : case ucb::OpenMode::FOLDERS:
67 0 : if (g_file_info_get_file_type(pInfo) != G_FILE_TYPE_DIRECTORY)
68 0 : continue;
69 0 : break;
70 : case ucb::OpenMode::DOCUMENTS:
71 0 : if (g_file_info_get_file_type(pInfo) != G_FILE_TYPE_REGULAR)
72 0 : continue;
73 0 : break;
74 : case ucb::OpenMode::ALL:
75 : default:
76 0 : break;
77 : }
78 :
79 0 : maResults.push_back( new ResultListEntry( pInfo ) );
80 0 : g_object_unref(pInfo);
81 : }
82 :
83 0 : mbCountFinal = true;
84 :
85 0 : g_file_enumerator_close(pEnumerator, NULL, NULL);
86 0 : return true;
87 : }
88 :
89 0 : DataSupplier::~DataSupplier()
90 : {
91 0 : ResultList::const_iterator it = maResults.begin();
92 0 : ResultList::const_iterator end = maResults.end();
93 :
94 0 : while ( it != end )
95 : {
96 0 : delete (*it);
97 0 : ++it;
98 : }
99 0 : }
100 :
101 0 : OUString DataSupplier::queryContentIdentifierString( sal_uInt32 nIndex )
102 : {
103 0 : if ( nIndex < maResults.size() )
104 : {
105 0 : OUString aId = maResults[ nIndex ]->aId;
106 0 : if ( aId.getLength() )
107 : {
108 : // Already cached.
109 0 : return aId;
110 0 : }
111 : }
112 :
113 0 : if ( getResult( nIndex ) )
114 : {
115 0 : GFile *pFile = mxContent->getGFile();
116 0 : char* parent = g_file_get_uri(pFile);
117 0 : OUString aId = OUString::createFromAscii( parent );
118 0 : g_free(parent);
119 :
120 : char *escaped_name =
121 0 : g_uri_escape_string( g_file_info_get_name(maResults[ nIndex ]->pInfo) , NULL, false);
122 :
123 0 : if ( ( aId.lastIndexOf( '/' ) + 1 ) != aId.getLength() )
124 0 : aId += "/";
125 :
126 0 : aId += OUString::createFromAscii( escaped_name );
127 :
128 0 : g_free( escaped_name );
129 :
130 0 : maResults[ nIndex ]->aId = aId;
131 0 : return aId;
132 : }
133 :
134 0 : return OUString();
135 : }
136 :
137 0 : uno::Reference< ucb::XContentIdentifier > DataSupplier::queryContentIdentifier( sal_uInt32 nIndex )
138 : {
139 0 : if ( nIndex < maResults.size() )
140 : {
141 0 : uno::Reference< ucb::XContentIdentifier > xId = maResults[ nIndex ]->xId;
142 0 : if ( xId.is() )
143 : {
144 : // Already cached.
145 0 : return xId;
146 0 : }
147 : }
148 :
149 0 : OUString aId = queryContentIdentifierString( nIndex );
150 0 : if ( aId.getLength() )
151 : {
152 0 : uno::Reference< ucb::XContentIdentifier > xId = new ucbhelper::ContentIdentifier( aId );
153 0 : maResults[ nIndex ]->xId = xId;
154 0 : return xId;
155 : }
156 :
157 0 : return uno::Reference< ucb::XContentIdentifier >();
158 : }
159 :
160 0 : uno::Reference< ucb::XContent > DataSupplier::queryContent( sal_uInt32 nIndex )
161 : {
162 0 : if ( nIndex < maResults.size() )
163 : {
164 0 : uno::Reference< ucb::XContent > xContent = maResults[ nIndex ]->xContent;
165 0 : if ( xContent.is() )
166 : {
167 : // Already cached.
168 0 : return xContent;
169 0 : }
170 : }
171 :
172 0 : uno::Reference< ucb::XContentIdentifier > xId = queryContentIdentifier( nIndex );
173 0 : if ( xId.is() )
174 : {
175 : try
176 : {
177 0 : uno::Reference< ucb::XContent > xContent = mxContent->getProvider()->queryContent( xId );
178 0 : maResults[ nIndex ]->xContent = xContent;
179 0 : return xContent;
180 : }
181 0 : catch ( ucb::IllegalIdentifierException& )
182 : {
183 : }
184 : }
185 0 : return uno::Reference< ucb::XContent >();
186 : }
187 :
188 0 : bool DataSupplier::getResult( sal_uInt32 nIndex )
189 : {
190 0 : if ( maResults.size() > nIndex ) // Result already present.
191 0 : return true;
192 :
193 0 : if ( getData() && maResults.size() > nIndex )
194 0 : return true;
195 :
196 0 : return false;
197 : }
198 :
199 0 : sal_uInt32 DataSupplier::totalCount()
200 : {
201 0 : getData();
202 0 : return maResults.size();
203 : }
204 :
205 0 : sal_uInt32 DataSupplier::currentCount()
206 : {
207 0 : return maResults.size();
208 : }
209 :
210 0 : bool DataSupplier::isCountFinal()
211 : {
212 0 : return mbCountFinal;
213 : }
214 :
215 0 : uno::Reference< sdbc::XRow > DataSupplier::queryPropertyValues( sal_uInt32 nIndex )
216 : {
217 0 : if ( nIndex < maResults.size() )
218 : {
219 0 : uno::Reference< sdbc::XRow > xRow = maResults[ nIndex ]->xRow;
220 0 : if ( xRow.is() )
221 : {
222 : // Already cached.
223 0 : return xRow;
224 0 : }
225 : }
226 :
227 0 : if ( getResult( nIndex ) )
228 : {
229 0 : uno::Reference< ucb::XContent > xContent( queryContent( nIndex ) );
230 0 : if ( xContent.is() )
231 : {
232 : try
233 : {
234 : uno::Reference< ucb::XCommandProcessor > xCmdProc(
235 0 : xContent, uno::UNO_QUERY_THROW );
236 0 : sal_Int32 nCmdId( xCmdProc->createCommandIdentifier() );
237 0 : ucb::Command aCmd;
238 0 : aCmd.Name = "getPropertyValues";
239 0 : aCmd.Handle = -1;
240 0 : aCmd.Argument <<= getResultSet()->getProperties();
241 0 : uno::Any aResult( xCmdProc->execute(
242 0 : aCmd, nCmdId, getResultSet()->getEnvironment() ) );
243 0 : uno::Reference< sdbc::XRow > xRow;
244 0 : if ( aResult >>= xRow )
245 : {
246 0 : maResults[ nIndex ]->xRow = xRow;
247 0 : return xRow;
248 0 : }
249 : }
250 0 : catch ( uno::Exception const & )
251 : {
252 : }
253 0 : }
254 : }
255 0 : return uno::Reference< sdbc::XRow >();
256 : }
257 :
258 0 : void DataSupplier::releasePropertyValues( sal_uInt32 nIndex )
259 : {
260 0 : if ( nIndex < maResults.size() )
261 0 : maResults[ nIndex ]->xRow = uno::Reference< sdbc::XRow >();
262 0 : }
263 :
264 0 : void DataSupplier::close()
265 : {
266 0 : }
267 :
268 0 : void DataSupplier::validate() throw( ucb::ResultSetException )
269 : {
270 0 : }
271 :
272 : }
273 :
274 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|