LibreOffice Module ucb (master) 1
gio_content.cxx
Go to the documentation of this file.
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 <sal/config.h>
21
22#include <rtl/uri.hxx>
23#include <utility>
24
25#include <string.h>
26#include <sys/types.h>
27#include <sal/macros.h>
28#include <osl/time.h>
29#include <sal/log.hxx>
30
31#include <com/sun/star/beans/IllegalTypeException.hpp>
32#include <com/sun/star/beans/PropertyValue.hpp>
33#include <com/sun/star/beans/PropertyAttribute.hpp>
34#include <com/sun/star/beans/XPropertySetInfo.hpp>
35#include <com/sun/star/io/IOException.hpp>
36#include <com/sun/star/io/XActiveDataSink.hpp>
37#include <com/sun/star/io/XOutputStream.hpp>
38#include <com/sun/star/lang/IllegalAccessException.hpp>
39#include <com/sun/star/lang/IllegalArgumentException.hpp>
40#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
41#include <com/sun/star/ucb/ContentInfoAttribute.hpp>
42#include <com/sun/star/ucb/InsertCommandArgument.hpp>
43#include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp>
44#include <com/sun/star/ucb/InteractiveNetworkGeneralException.hpp>
45#include <com/sun/star/ucb/InteractiveNetworkResolveNameException.hpp>
46#include <com/sun/star/ucb/NameClashException.hpp>
47#include <com/sun/star/ucb/OpenMode.hpp>
48#include <com/sun/star/ucb/XCommandInfo.hpp>
49#include <com/sun/star/ucb/MissingInputStreamException.hpp>
50#include <com/sun/star/ucb/UnsupportedCommandException.hpp>
51#include <com/sun/star/ucb/UnsupportedDataSinkException.hpp>
52#include <com/sun/star/ucb/UnsupportedOpenModeException.hpp>
53#include <com/sun/star/ucb/XDynamicResultSet.hpp>
54#include <com/sun/star/ucb/XContentCreator.hpp>
55
62#include <ucbhelper/macros.hxx>
63#include <vcl/svapp.hxx>
64
65#include "gio_content.hxx"
66#include "gio_provider.hxx"
67#include "gio_resultset.hxx"
68#include "gio_inputstream.hxx"
69#include "gio_outputstream.hxx"
70#include "gio_mount.hxx"
71
72namespace gio
73{
74
76 const css::uno::Reference< css::uno::XComponentContext >& rxContext,
77 ContentProvider* pProvider,
78 const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier)
79 : ContentImplHelper( rxContext, pProvider, Identifier ),
80 m_pProvider( pProvider ), mpFile (nullptr), mpInfo( nullptr ), mbTransient(false)
81{
82 SAL_INFO("ucb.ucp.gio", "New Content ('" << m_xIdentifier->getContentIdentifier() << "')");
83}
84
86 const css::uno::Reference< css::uno::XComponentContext >& rxContext,
87 ContentProvider* pProvider,
88 const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier,
89 bool bIsFolder)
90 : ContentImplHelper( rxContext, pProvider, Identifier ),
91 m_pProvider( pProvider ), mpFile (nullptr), mpInfo( nullptr ), mbTransient(true)
92{
93 SAL_INFO("ucb.ucp.gio", "Create Content ('" << m_xIdentifier->getContentIdentifier() << "')");
94 mpInfo = g_file_info_new();
95 g_file_info_set_file_type(mpInfo, bIsFolder ? G_FILE_TYPE_DIRECTORY : G_FILE_TYPE_REGULAR);
96}
97
99{
100 if (mpInfo) g_object_unref(mpInfo);
101 if (mpFile) g_object_unref(mpFile);
102}
103
105{
106 OUString sURL;
107 if (GFile* pFile = g_file_get_parent(getGFile()))
108 {
109 char* pPath = g_file_get_uri(pFile);
110 g_object_unref(pFile);
111 sURL = OUString::createFromAscii(pPath);
112 g_free(pPath);
113 }
114 return sURL;
115}
116
117void SAL_CALL Content::abort( sal_Int32 /*CommandId*/ )
118{
119 //TODO
120 //stick a map from each CommandId to a new GCancellable and propagate
121 //it throughout the g_file_* calls
122}
123
124OUString SAL_CALL Content::getContentType()
125{
126 return isFolder(css::uno::Reference< css::ucb::XCommandEnvironment >())
127 ? OUString( GIO_FOLDER_TYPE )
128 : OUString( GIO_FILE_TYPE );
129}
130
131#define EXCEPT(aExcept) \
132do { \
133 if (bThrow) throw aExcept;\
134 aRet <<= aExcept;\
135} while(false)
136
137css::uno::Any convertToException(GError *pError, const css::uno::Reference< css::uno::XInterface >& rContext, bool bThrow)
138{
139 css::uno::Any aRet;
140
141 gint eCode = pError->code;
142 OUString sMessage(pError->message, strlen(pError->message), RTL_TEXTENCODING_UTF8);
143 g_error_free(pError);
144
145 OUString sName;
146
147 css::uno::Sequence< css::uno::Any > aArgs{ css::uno::Any(sName) };
148
149 switch (eCode)
150 {
151 case G_IO_ERROR_FAILED:
152 { css::io::IOException aExcept(sMessage, rContext);
153 EXCEPT(aExcept); }
154 break;
155 case G_IO_ERROR_NOT_MOUNTED:
156 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
157 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NOT_EXISTING_PATH, aArgs);
158 EXCEPT(aExcept); }
159 break;
160 case G_IO_ERROR_NOT_FOUND:
161 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
162 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NOT_EXISTING, aArgs);
163 EXCEPT(aExcept); }
164 break;
165 case G_IO_ERROR_EXISTS:
166 { css::ucb::NameClashException aExcept(sMessage, rContext,
167 css::task::InteractionClassification_ERROR, sName);
168 EXCEPT(aExcept); }
169 break;
170 case G_IO_ERROR_INVALID_ARGUMENT:
171 { css::lang::IllegalArgumentException aExcept(sMessage, rContext, -1 );
172 EXCEPT(aExcept); }
173 break;
174 case G_IO_ERROR_PERMISSION_DENIED:
175 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
176 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_ACCESS_DENIED, aArgs);
177 EXCEPT(aExcept); }
178 break;
179 case G_IO_ERROR_IS_DIRECTORY:
180 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
181 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NO_FILE, aArgs);
182 EXCEPT(aExcept); }
183 break;
184 case G_IO_ERROR_NOT_REGULAR_FILE:
185 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
186 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NO_FILE, aArgs);
187 EXCEPT(aExcept); }
188 break;
189 case G_IO_ERROR_NOT_DIRECTORY:
190 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
191 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NO_DIRECTORY, aArgs);
192 EXCEPT(aExcept); }
193 break;
194 case G_IO_ERROR_FILENAME_TOO_LONG:
195 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
196 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NAME_TOO_LONG, aArgs);
197 EXCEPT(aExcept); }
198 break;
199 case G_IO_ERROR_FAILED_HANDLED: /* Operation failed and a helper program
200 has already interacted with the user. Do not display any error
201 dialog */
202 case G_IO_ERROR_PENDING:
203 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
204 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_PENDING, aArgs);
205 EXCEPT(aExcept); }
206 break;
207 case G_IO_ERROR_CLOSED:
208 case G_IO_ERROR_CANCELLED:
209 case G_IO_ERROR_TOO_MANY_LINKS:
210 case G_IO_ERROR_WRONG_ETAG:
211 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
212 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_GENERAL, aArgs);
213 EXCEPT(aExcept); }
214 break;
215 case G_IO_ERROR_NOT_SUPPORTED:
216 case G_IO_ERROR_CANT_CREATE_BACKUP:
217 case G_IO_ERROR_WOULD_MERGE:
218 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
219 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_NOT_SUPPORTED, aArgs);
220 EXCEPT(aExcept); }
221 break;
222 case G_IO_ERROR_NO_SPACE:
223 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
224 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_OUT_OF_DISK_SPACE, aArgs);
225 EXCEPT(aExcept); }
226 break;
227 case G_IO_ERROR_INVALID_FILENAME:
228 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
229 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_INVALID_CHARACTER, aArgs);
230 EXCEPT(aExcept); }
231 break;
232 case G_IO_ERROR_READ_ONLY:
233 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
234 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_WRITE_PROTECTED, aArgs);
235 EXCEPT(aExcept); }
236 break;
237 case G_IO_ERROR_TIMED_OUT:
238 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
239 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_DEVICE_NOT_READY, aArgs);
240 EXCEPT(aExcept); }
241 break;
242 case G_IO_ERROR_WOULD_RECURSE:
243 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
244 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_RECURSIVE, aArgs);
245 EXCEPT(aExcept); }
246 break;
247 case G_IO_ERROR_BUSY:
248 case G_IO_ERROR_WOULD_BLOCK:
249 { css::ucb::InteractiveAugmentedIOException aExcept(sMessage, rContext,
250 css::task::InteractionClassification_ERROR, css::ucb::IOErrorCode_LOCKING_VIOLATION, aArgs);
251 EXCEPT(aExcept); }
252 break;
253 case G_IO_ERROR_HOST_NOT_FOUND:
254 { css::ucb::InteractiveNetworkResolveNameException aExcept(sMessage, rContext,
255 css::task::InteractionClassification_ERROR, OUString());
256 EXCEPT(aExcept);}
257 break;
258 default:
259 case G_IO_ERROR_ALREADY_MOUNTED:
260 case G_IO_ERROR_NOT_EMPTY:
261 case G_IO_ERROR_NOT_SYMBOLIC_LINK:
262 case G_IO_ERROR_NOT_MOUNTABLE_FILE:
263 { css::ucb::InteractiveNetworkGeneralException aExcept(sMessage, rContext,
264 css::task::InteractionClassification_ERROR);
265 EXCEPT(aExcept);}
266 break;
267 }
268 return aRet;
269}
270
271void convertToIOException(GError *pError, const css::uno::Reference< css::uno::XInterface >& rContext)
272{
273 try
274 {
275 convertToException(pError, rContext);
276 }
277 catch (const css::io::IOException&)
278 {
279 throw;
280 }
281 catch (const css::uno::RuntimeException&)
282 {
283 throw;
284 }
285 catch (const css::uno::Exception& e)
286 {
287 css::uno::Any a(cppu::getCaughtException());
288 throw css::lang::WrappedTargetRuntimeException(
289 "wrapped Exception " + e.Message,
290 css::uno::Reference<css::uno::XInterface>(), a);
291 }
292}
293
294css::uno::Any Content::mapGIOError( GError *pError )
295{
296 if (!pError)
297 return getBadArgExcept();
298
299 return convertToException(pError, getXWeak(), false);
300}
301
303{
304 return css::uno::Any( css::lang::IllegalArgumentException(
305 "Wrong argument type!",
306 getXWeak(), -1) );
307}
308
309namespace {
310
311class MountOperation
312{
314 GMainLoop *mpLoop;
315 GMountOperation *mpAuthentication;
316 GError *mpError;
317 static void Completed(GObject *source, GAsyncResult *res, gpointer user_data);
318public:
319 explicit MountOperation(const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv);
320 ~MountOperation();
321 GError *Mount(GFile *pFile);
322};
323
324}
325
326MountOperation::MountOperation(const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv) : mpError(nullptr)
327{
328 ucb::ucp::gio::glib::MainContextRef oldContext(g_main_context_ref_thread_default());
329 mContext.reset(g_main_context_new());
330 mpLoop = g_main_loop_new(mContext.get(), FALSE);
331 g_main_context_push_thread_default(mContext.get());
332 mpAuthentication = ooo_mount_operation_new(std::move(oldContext), xEnv);
333}
334
335void MountOperation::Completed(GObject *source, GAsyncResult *res, gpointer user_data)
336{
337 MountOperation *pThis = static_cast<MountOperation*>(user_data);
338 g_file_mount_enclosing_volume_finish(G_FILE(source), res, &(pThis->mpError));
339 g_main_loop_quit(pThis->mpLoop);
340}
341
342GError *MountOperation::Mount(GFile *pFile)
343{
344 g_file_mount_enclosing_volume(pFile, G_MOUNT_MOUNT_NONE, mpAuthentication, nullptr, MountOperation::Completed, this);
345 {
346 //HACK: At least the gdk_threads_set_lock_functions(GdkThreadsEnter,
347 // GdkThreadsLeave) call in vcl/unx/gtk/app/gtkinst.cxx will lead to
348 // GdkThreadsLeave unlock the SolarMutex down to zero at the end of
349 // g_main_loop_run, so we need ~SolarMutexReleaser to raise it back to
350 // the original value again:
351 if (comphelper::SolarMutex::get()->IsCurrentThread())
352 {
354 g_main_loop_run(mpLoop);
355 }
356 else
357 {
358 g_main_loop_run(mpLoop);
359 }
360 }
361 return mpError;
362}
363
364MountOperation::~MountOperation()
365{
366 g_object_unref(mpAuthentication);
367 g_main_context_pop_thread_default(mContext.get());
368 g_main_loop_unref(mpLoop);
369}
370
371GFileInfo* Content::getGFileInfo(const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv, GError **ppError)
372{
373 GError * err = nullptr;
374 if (mpInfo == nullptr && !mbTransient) {
375 for (bool retried = false;; retried = true) {
376 mpInfo = g_file_query_info(
377 getGFile(), "*", G_FILE_QUERY_INFO_NONE, nullptr, &err);
378 if (mpInfo != nullptr) {
379 break;
380 }
381 assert(err != nullptr);
382 if (err->code != G_IO_ERROR_NOT_MOUNTED || retried) {
383 break;
384 }
385 SAL_INFO(
386 "ucb.ucp.gio",
387 "G_IO_ERROR_NOT_MOUNTED \"" << err->message
388 << "\", trying to mount");
389 g_error_free(err);
390 err = MountOperation(xEnv).Mount(getGFile());
391 if (err != nullptr) {
392 break;
393 }
394 }
395 }
396 if (ppError != nullptr) {
397 *ppError = err;
398 } else if (err != nullptr) {
399 SAL_WARN(
400 "ucb.ucp.gio",
401 "ignoring GError \"" << err->message << "\" for <"
402 << m_xIdentifier->getContentIdentifier() << ">");
403 g_error_free(err);
404 }
405 return mpInfo;
406}
407
409{
410 if (!mpFile)
411 mpFile = g_file_new_for_uri(OUStringToOString(m_xIdentifier->getContentIdentifier(), RTL_TEXTENCODING_UTF8).getStr());
412 return mpFile;
413}
414
415bool Content::isFolder(const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv)
416{
417 GFileInfo *pInfo = getGFileInfo(xEnv);
418 return pInfo && (g_file_info_get_file_type(pInfo) == G_FILE_TYPE_DIRECTORY);
419}
420
421static css::util::DateTime getDateFromUnix (time_t t)
422{
423 TimeValue tv;
424 tv.Nanosec = 0;
425 // coverity[store_truncates_time_t] - TODO: sal_uInt32 TimeValue::Seconds is only large enough
426 // for integer time_t values < 2^32 representing dates until year 2106:
427 tv.Seconds = t;
428 oslDateTime dt;
429
430 if ( osl_getDateTimeFromTimeValue( &tv, &dt ) )
431 return css::util::DateTime( 0, dt.Seconds, dt.Minutes, dt.Hours,
432 dt.Day, dt.Month, dt.Year, false);
433 else
434 return css::util::DateTime();
435}
436
437css::uno::Reference< css::sdbc::XRow > Content::getPropertyValues(
438 const css::uno::Sequence< css::beans::Property >& rProperties,
439 const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv )
440{
441 rtl::Reference< ::ucbhelper::PropertyValueSet > xRow = new ::ucbhelper::PropertyValueSet( m_xContext );
442
443 GFileInfo *pInfo = nullptr;
444 for( const css::beans::Property& rProp : rProperties )
445 {
446 if ( rProp.Name == "IsDocument" )
447 {
448 getFileInfo(xEnv, &pInfo, true);
449 if (pInfo != nullptr && g_file_info_has_attribute(pInfo, G_FILE_ATTRIBUTE_STANDARD_TYPE))
450 xRow->appendBoolean( rProp, ( g_file_info_get_file_type( pInfo ) == G_FILE_TYPE_REGULAR ||
451 g_file_info_get_file_type( pInfo ) == G_FILE_TYPE_UNKNOWN ) );
452 else
453 xRow->appendVoid( rProp );
454 }
455 else if ( rProp.Name == "IsFolder" )
456 {
457 getFileInfo(xEnv, &pInfo, true);
458 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_STANDARD_TYPE) )
459 xRow->appendBoolean( rProp, ( g_file_info_get_file_type( pInfo ) == G_FILE_TYPE_DIRECTORY ));
460 else
461 xRow->appendVoid( rProp );
462 }
463 else if ( rProp.Name == "Title" )
464 {
465 getFileInfo(xEnv, &pInfo, false);
466 if (pInfo != nullptr && g_file_info_has_attribute(pInfo, G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME))
467 {
468 const char *pName = g_file_info_get_display_name(pInfo);
469 xRow->appendString( rProp, OUString(pName, strlen(pName), RTL_TEXTENCODING_UTF8) );
470 }
471 else
472 xRow->appendVoid(rProp);
473 }
474 else if ( rProp.Name == "IsReadOnly" )
475 {
476 getFileInfo(xEnv, &pInfo, true);
477 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE ) )
478 xRow->appendBoolean( rProp, !g_file_info_get_attribute_boolean( pInfo, G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE) );
479 else
480 xRow->appendVoid( rProp );
481 }
482 else if ( rProp.Name == "DateCreated" )
483 {
484 getFileInfo(xEnv, &pInfo, true);
485 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_TIME_CREATED ) )
486 xRow->appendTimestamp( rProp, getDateFromUnix(g_file_info_get_attribute_uint64(pInfo, G_FILE_ATTRIBUTE_TIME_CREATED)) );
487 else
488 xRow->appendVoid( rProp );
489 }
490 else if ( rProp.Name == "DateModified" )
491 {
492 getFileInfo(xEnv, &pInfo, true);
493 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_TIME_CHANGED ) )
494 xRow->appendTimestamp( rProp, getDateFromUnix(g_file_info_get_attribute_uint64(pInfo, G_FILE_ATTRIBUTE_TIME_CHANGED)) );
495 else
496 xRow->appendVoid( rProp );
497 }
498 else if ( rProp.Name == "Size" )
499 {
500 getFileInfo(xEnv, &pInfo, true);
501 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_STANDARD_SIZE) )
502 xRow->appendLong( rProp, ( g_file_info_get_size( pInfo ) ));
503 else
504 xRow->appendVoid( rProp );
505 }
506 else if ( rProp.Name == "IsVolume" )
507 {
508 //What do we use this for ?
509 xRow->appendBoolean( rProp, false );
510 }
511 else if ( rProp.Name == "IsCompactDisc" )
512 {
513 getFileInfo(xEnv, &pInfo, true);
514 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT ) )
515 xRow->appendBoolean( rProp, g_file_info_get_attribute_boolean(pInfo, G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT) );
516 else
517 xRow->appendVoid( rProp );
518 }
519 else if ( rProp.Name == "IsRemoveable" )
520 {
521 getFileInfo(xEnv, &pInfo, true);
522 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT ) )
523 xRow->appendBoolean( rProp, g_file_info_get_attribute_boolean(pInfo, G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT ) );
524 else
525 xRow->appendVoid( rProp );
526 }
527 else if ( rProp.Name == "IsFloppy" )
528 {
529 xRow->appendBoolean( rProp, false );
530 }
531 else if ( rProp.Name == "IsHidden" )
532 {
533 getFileInfo(xEnv, &pInfo, true);
534 if (pInfo != nullptr && g_file_info_has_attribute( pInfo, G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN) )
535 xRow->appendBoolean( rProp, ( g_file_info_get_is_hidden ( pInfo ) ) );
536 else
537 xRow->appendVoid( rProp );
538 }
539 else if ( rProp.Name == "CreatableContentsInfo" )
540 {
541 xRow->appendObject( rProp, css::uno::Any( queryCreatableContentsInfo( xEnv ) ) );
542 }
543 else
544 {
545 SAL_WARN(
546 "ucb.ucp.gio",
547 "Looking for unsupported property " << rProp.Name);
548 xRow->appendVoid(rProp);
549 }
550 }
551
552 return xRow;
553}
554
555static css::lang::IllegalAccessException
556getReadOnlyException( const css::uno::Reference< css::uno::XInterface >& rContext )
557{
558 return css::lang::IllegalAccessException ("Property is read-only!", rContext );
559}
560
562{
563 // Obtain a list with a snapshot of all currently instantiated contents
564 // from provider and extract the contents which are direct children
565 // of this content.
566
567 ucbhelper::ContentRefList aAllContents;
568 m_xProvider->queryExistingContents( aAllContents );
569
570 OUString aURL = m_xIdentifier->getContentIdentifier();
571 sal_Int32 nURLPos = aURL.lastIndexOf( '/' );
572
573 if ( nURLPos != ( aURL.getLength() - 1 ) )
574 aURL += "/";
575
576 sal_Int32 nLen = aURL.getLength();
577
578 for ( const auto& rContent : aAllContents )
579 {
580 ucbhelper::ContentImplHelperRef xChild = rContent;
581 OUString aChildURL = xChild->getIdentifier()->getContentIdentifier();
582
583 // Is aURL a prefix of aChildURL?
584 if ( ( aChildURL.getLength() > nLen ) && aChildURL.startsWith( aURL ) )
585 {
586 sal_Int32 nPos = aChildURL.indexOf( '/', nLen );
587
588 if ( ( nPos == -1 ) || ( nPos == ( aChildURL.getLength() - 1 ) ) )
589 {
590 // No further slashes / only a final slash. It's a child!
591 rChildren.emplace_back(static_cast< ::gio::Content * >(xChild.get() ) );
592 }
593 }
594 }
595}
596
597bool Content::exchangeIdentity( const css::uno::Reference< css::ucb::XContentIdentifier >& xNewId )
598{
599 if ( !xNewId.is() )
600 return false;
601
602 css::uno::Reference< css::ucb::XContent > xThis = this;
603
604 if ( mbTransient )
605 {
606 m_xIdentifier = xNewId;
607 return false;
608 }
609
610 OUString aOldURL = m_xIdentifier->getContentIdentifier();
611
612 // Exchange own identity.
613 if ( exchange( xNewId ) )
614 {
615 // Process instantiated children...
616 ContentRefList aChildren;
617 queryChildren( aChildren );
618
619 for ( const auto& rChild : aChildren )
620 {
621 ContentRef xChild = rChild;
622
623 // Create new content identifier for the child...
624 css::uno::Reference< css::ucb::XContentIdentifier > xOldChildId = xChild->getIdentifier();
625 OUString aOldChildURL = xOldChildId->getContentIdentifier();
626 OUString aNewChildURL = aOldChildURL.replaceAt(
627 0, aOldURL.getLength(), xNewId->getContentIdentifier() );
628
629 css::uno::Reference< css::ucb::XContentIdentifier > xNewChildId
630 = new ::ucbhelper::ContentIdentifier( aNewChildURL );
631
632 if ( !xChild->exchangeIdentity( xNewChildId ) )
633 return false;
634 }
635 return true;
636 }
637
638 return false;
639}
640
642 css::uno::Reference<css::ucb::XCommandEnvironment> const & env, GFileInfo ** info, bool fail)
643{
644 assert(info != nullptr);
645 if (*info != nullptr)
646 return;
647
648 GError * err = nullptr;
649 *info = getGFileInfo(env, &err);
650 if (*info == nullptr && !mbTransient && fail)
651 {
653 }
654 else if (err != nullptr)
655 {
656 g_error_free(err);
657 }
658}
659
660css::uno::Sequence< css::uno::Any > Content::setPropertyValues(
661 const css::uno::Sequence< css::beans::PropertyValue >& rValues,
662 const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv )
663{
664 GError *pError=nullptr;
665 GFileInfo *pNewInfo=nullptr;
666 GFileInfo *pInfo = getGFileInfo(xEnv, &pError);
667 if (pInfo)
668 pNewInfo = g_file_info_dup(pInfo);
669 else
670 {
671 if (!mbTransient)
673 else
674 {
675 if (pError)
676 g_error_free(pError);
677 pNewInfo = g_file_info_new();
678 }
679 }
680
681 sal_Int32 nCount = rValues.getLength();
682
683 css::beans::PropertyChangeEvent aEvent;
684 aEvent.Source = getXWeak();
685 aEvent.Further = false;
686 aEvent.PropertyHandle = -1;
687
688 sal_Int32 nChanged = 0, nTitlePos = -1;
689 OUString aNewTitle;
690 css::uno::Sequence< css::beans::PropertyChangeEvent > aChanges(nCount);
691 auto aChangesRange = asNonConstRange(aChanges);
692
693 css::uno::Sequence< css::uno::Any > aRet( nCount );
694 auto aRetRange = asNonConstRange(aRet);
695 const css::beans::PropertyValue* pValues = rValues.getConstArray();
696 for ( sal_Int32 n = 0; n < nCount; ++n )
697 {
698 const css::beans::PropertyValue& rValue = pValues[ n ];
699 SAL_INFO("ucb.ucp.gio", "Set prop '" << rValue.Name << "'");
700 if ( rValue.Name == "ContentType" ||
701 rValue.Name == "MediaType" ||
702 rValue.Name == "IsDocument" ||
703 rValue.Name == "IsFolder" ||
704 rValue.Name == "Size" ||
705 rValue.Name == "CreatableContentsInfo" )
706 {
707 aRetRange[ n ] <<= getReadOnlyException( getXWeak() );
708 }
709 else if ( rValue.Name == "Title" )
710 {
711 if (!( rValue.Value >>= aNewTitle ))
712 {
713 aRetRange[ n ] <<= css::beans::IllegalTypeException
714 ( "Property value has wrong type!",
715 getXWeak() );
716 continue;
717 }
718
719 if ( aNewTitle.isEmpty() )
720 {
721 aRetRange[ n ] <<= css::lang::IllegalArgumentException
722 ( "Empty title not allowed!",
723 getXWeak(), -1 );
724 continue;
725
726 }
727
728 OString sNewTitle = OUStringToOString(aNewTitle, RTL_TEXTENCODING_UTF8);
729 const char *newName = sNewTitle.getStr();
730 const char *oldName = g_file_info_get_name( pInfo);
731
732 if (!newName || !oldName || strcmp(newName, oldName))
733 {
734 SAL_INFO("ucb.ucp.gio", "Set new name to '" << newName << "'");
735
736 aEvent.PropertyName = "Title";
737 if (oldName)
738 aEvent.OldValue <<= OUString(oldName, strlen(oldName), RTL_TEXTENCODING_UTF8);
739 aEvent.NewValue <<= aNewTitle;
740 aChangesRange[ nChanged ] = aEvent;
741 nTitlePos = nChanged++;
742
743 g_file_info_set_name(pNewInfo, newName);
744 }
745 }
746 else
747 {
748 SAL_WARN("ucb.ucp.gio", "Unknown property " << rValue.Name);
749 aRetRange[ n ] <<= getReadOnlyException( getXWeak() );
750 }
751 }
752
753 if (nChanged)
754 {
755 bool bOk = true;
756 if (!mbTransient)
757 {
758 if ((bOk = doSetFileInfo(pNewInfo)))
759 {
760 for (sal_Int32 i = 0; i < nChanged; ++i)
761 aRetRange[ i ] = getBadArgExcept();
762 }
763 }
764
765 if (bOk)
766 {
767 if (nTitlePos > -1)
768 {
769 OUString aNewURL = getParentURL();
770 if (!aNewURL.isEmpty() && aNewURL[aNewURL.getLength() - 1] != '/')
771 aNewURL += "/";
772 aNewURL += aNewTitle;
773
774 css::uno::Reference< css::ucb::XContentIdentifier > xNewId
775 = new ::ucbhelper::ContentIdentifier( aNewURL );
776
777 if (!exchangeIdentity( xNewId ) )
778 {
779 aRetRange[ nTitlePos ] <<= css::uno::Exception
780 ( "Exchange failed!",
781 getXWeak() );
782 }
783 }
784
785 if (!mbTransient) //Discard and refetch
786 {
787 g_object_unref(mpInfo);
788 mpInfo = nullptr;
789 }
790
791 if (mpInfo)
792 {
793 g_file_info_copy_into(pNewInfo, mpInfo);
794 g_object_unref(pNewInfo);
795 }
796 else
797 mpInfo = pNewInfo;
798
799 pNewInfo = nullptr;
800
801 if (mpFile) //Discard and refetch
802 {
803 g_object_unref(mpFile);
804 mpFile = nullptr;
805 }
806 }
807
808 aChanges.realloc( nChanged );
809 notifyPropertiesChange( aChanges );
810 }
811
812 if (pNewInfo)
813 g_object_unref(pNewInfo);
814
815 return aRet;
816}
817
818bool Content::doSetFileInfo(GFileInfo *pNewInfo)
819{
820 g_assert (!mbTransient);
821
822 bool bOk = true;
823 GFile *pFile = getGFile();
824 if(!g_file_set_attributes_from_info(pFile, pNewInfo, G_FILE_QUERY_INFO_NONE, nullptr, nullptr))
825 bOk = false;
826 return bOk;
827}
828
829const int TRANSFER_BUFFER_SIZE = 65536;
830
831void Content::copyData( const css::uno::Reference< css::io::XInputStream >& xIn,
832 const css::uno::Reference< css::io::XOutputStream >& xOut )
833{
834 css::uno::Sequence< sal_Int8 > theData( TRANSFER_BUFFER_SIZE );
835
836 g_return_if_fail( xIn.is() && xOut.is() );
837
838 while ( xIn->readBytes( theData, TRANSFER_BUFFER_SIZE ) > 0 )
839 xOut->writeBytes( theData );
840
841 xOut->closeOutput();
842}
843
844bool Content::feedSink( const css::uno::Reference< css::uno::XInterface >& xSink )
845{
846 if ( !xSink.is() )
847 return false;
848
849 css::uno::Reference< css::io::XOutputStream > xOut(xSink, css::uno::UNO_QUERY );
850 css::uno::Reference< css::io::XActiveDataSink > xDataSink(xSink, css::uno::UNO_QUERY );
851
852 if ( !xOut.is() && !xDataSink.is() )
853 return false;
854
855 GError *pError=nullptr;
856 GFileInputStream *pStream = g_file_read(getGFile(), nullptr, &pError);
857 if (!pStream)
858 convertToException(pError, getXWeak());
859
860 css::uno::Reference< css::io::XInputStream > xIn(
862 new ::gio::InputStream(pStream), m_xContext));
863
864 if ( xOut.is() )
865 copyData( xIn, xOut );
866
867 if ( xDataSink.is() )
868 xDataSink->setInputStream( xIn );
869
870 return true;
871}
872
873css::uno::Any Content::open(const css::ucb::OpenCommandArgument2 & rOpenCommand,
874 const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv )
875{
876 bool bIsFolder = isFolder(xEnv);
877
878 if (!g_file_query_exists(getGFile(), nullptr))
879 {
880 css::uno::Sequence< css::uno::Any > aArgs{ css::uno::Any(
881 m_xIdentifier->getContentIdentifier()) };
882 css::uno::Any aErr(
883 css::ucb::InteractiveAugmentedIOException(OUString(), getXWeak(),
884 css::task::InteractionClassification_ERROR,
885 bIsFolder ? css::ucb::IOErrorCode_NOT_EXISTING_PATH : css::ucb::IOErrorCode_NOT_EXISTING, aArgs)
886 );
887
889 }
890
891 css::uno::Any aRet;
892
893 bool bOpenFolder = (
894 ( rOpenCommand.Mode == css::ucb::OpenMode::ALL ) ||
895 ( rOpenCommand.Mode == css::ucb::OpenMode::FOLDERS ) ||
896 ( rOpenCommand.Mode == css::ucb::OpenMode::DOCUMENTS )
897 );
898
899 if ( bOpenFolder && bIsFolder )
900 {
901 css::uno::Reference< css::ucb::XDynamicResultSet > xSet
902 = new DynamicResultSet( m_xContext, this, rOpenCommand, xEnv );
903 aRet <<= xSet;
904 }
905 else if ( rOpenCommand.Sink.is() )
906 {
907 if (
908 ( rOpenCommand.Mode == css::ucb::OpenMode::DOCUMENT_SHARE_DENY_NONE ) ||
909 ( rOpenCommand.Mode == css::ucb::OpenMode::DOCUMENT_SHARE_DENY_WRITE )
910 )
911 {
913 css::uno::Any ( css::ucb::UnsupportedOpenModeException
914 ( OUString(), getXWeak(),
915 sal_Int16( rOpenCommand.Mode ) ) ),
916 xEnv );
917 }
918
919 if ( !feedSink( rOpenCommand.Sink ) )
920 {
921 // Note: rOpenCommand.Sink may contain an XStream
922 // implementation. Support for this type of
923 // sink is optional...
924 SAL_WARN("ucb.ucp.gio", "Failed to load data from '" << m_xIdentifier->getContentIdentifier() << "'");
925
927 css::uno::Any (css::ucb::UnsupportedDataSinkException
928 ( OUString(), getXWeak(),
929 rOpenCommand.Sink ) ),
930 xEnv );
931 }
932 }
933 else
934 SAL_INFO("ucb.ucp.gio", "Open falling through ...");
935 return aRet;
936}
937
938css::uno::Any SAL_CALL Content::execute(
939 const css::ucb::Command& aCommand,
940 sal_Int32 /*CommandId*/,
941 const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv )
942{
943 SAL_INFO("ucb.ucp.gio", "Content::execute " << aCommand.Name);
944 css::uno::Any aRet;
945
946 if ( aCommand.Name == "getPropertyValues" )
947 {
948 css::uno::Sequence< css::beans::Property > Properties;
949 if ( !( aCommand.Argument >>= Properties ) )
951 aRet <<= getPropertyValues( Properties, xEnv );
952 }
953 else if ( aCommand.Name == "getPropertySetInfo" )
954 aRet <<= getPropertySetInfo( xEnv, false );
955 else if ( aCommand.Name == "getCommandInfo" )
956 aRet <<= getCommandInfo( xEnv, false );
957 else if ( aCommand.Name == "open" )
958 {
959 css::ucb::OpenCommandArgument2 aOpenCommand;
960 if ( !( aCommand.Argument >>= aOpenCommand ) )
962 aRet = open( aOpenCommand, xEnv );
963 }
964 else if ( aCommand.Name == "transfer" )
965 {
966 css::ucb::TransferInfo transferArgs;
967 if ( !( aCommand.Argument >>= transferArgs ) )
969 transfer( transferArgs, xEnv );
970 }
971 else if ( aCommand.Name == "setPropertyValues" )
972 {
973 css::uno::Sequence< css::beans::PropertyValue > aProperties;
974 if ( !( aCommand.Argument >>= aProperties ) || !aProperties.hasElements() )
976 aRet <<= setPropertyValues( aProperties, xEnv );
977 }
978 else if (aCommand.Name == "createNewContent"
979 && isFolder( xEnv ) )
980 {
981 css::ucb::ContentInfo arg;
982 if ( !( aCommand.Argument >>= arg ) )
984 aRet <<= createNewContent( arg );
985 }
986 else if ( aCommand.Name == "insert" )
987 {
988 css::ucb::InsertCommandArgument arg;
989 if ( !( aCommand.Argument >>= arg ) )
991 insert( arg.Data, arg.ReplaceExisting, xEnv );
992 }
993 else if ( aCommand.Name == "delete" )
994 {
995 bool bDeletePhysical = false;
996 aCommand.Argument >>= bDeletePhysical;
997
998 //If no delete physical, try and trashcan it, if that doesn't work go
999 //ahead and try and delete it anyway
1000 if (!bDeletePhysical && !g_file_trash(getGFile(), nullptr, nullptr))
1001 bDeletePhysical = true;
1002
1003 if (bDeletePhysical)
1004 {
1005 GError *pError = nullptr;
1006 if (!g_file_delete( getGFile(), nullptr, &pError))
1008 }
1009
1010 destroy( bDeletePhysical );
1011 }
1012 else
1013 {
1014 SAL_WARN("ucb.ucp.gio", "Unknown command " << aCommand.Name);
1015
1017 ( css::uno::Any( css::ucb::UnsupportedCommandException
1018 ( OUString(),
1019 getXWeak() ) ),
1020 xEnv );
1021 }
1022
1023 return aRet;
1024}
1025
1026void Content::destroy( bool bDeletePhysical )
1027{
1028 css::uno::Reference< css::ucb::XContent > xThis = this;
1029
1030 deleted();
1031
1033 queryChildren( aChildren );
1034
1035 for ( auto& rChild : aChildren )
1036 {
1037 rChild->destroy( bDeletePhysical );
1038 }
1039}
1040
1041void Content::insert(const css::uno::Reference< css::io::XInputStream > &xInputStream,
1042 bool bReplaceExisting, const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv )
1043{
1044 GError *pError = nullptr;
1045 GFileInfo *pInfo = getGFileInfo(xEnv);
1046
1047 if ( pInfo &&
1048 g_file_info_has_attribute(pInfo, G_FILE_ATTRIBUTE_STANDARD_TYPE) &&
1049 g_file_info_get_file_type(pInfo) == G_FILE_TYPE_DIRECTORY )
1050 {
1051 SAL_INFO("ucb.ucp.gio", "Make directory");
1052 if( !g_file_make_directory( getGFile(), nullptr, &pError))
1054 return;
1055 }
1056
1057 if ( !xInputStream.is() )
1058 {
1060 ( css::ucb::MissingInputStreamException
1061 ( OUString(), getXWeak() ) ),
1062 xEnv );
1063 }
1064
1065 GFileOutputStream* pOutStream = nullptr;
1066 if ( bReplaceExisting )
1067 {
1068 if (!(pOutStream = g_file_replace(getGFile(), nullptr, false, G_FILE_CREATE_PRIVATE, nullptr, &pError)))
1070 }
1071 else
1072 {
1073 if (!(pOutStream = g_file_create (getGFile(), G_FILE_CREATE_PRIVATE, nullptr, &pError)))
1075 }
1076
1077 css::uno::Reference < css::io::XOutputStream > xOutput = new ::gio::OutputStream(pOutStream);
1078 copyData( xInputStream, xOutput );
1079
1080 if (mbTransient)
1081 {
1082 mbTransient = false;
1083 inserted();
1084 }
1085}
1086
1087const GFileCopyFlags DEFAULT_COPYDATA_FLAGS =
1088 static_cast<GFileCopyFlags>(G_FILE_COPY_OVERWRITE|G_FILE_COPY_TARGET_DEFAULT_PERMS);
1089
1090void Content::transfer( const css::ucb::TransferInfo& aTransferInfo, const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv )
1091{
1092 OUString sDest = m_xIdentifier->getContentIdentifier();
1093 if (!sDest.endsWith("/")) {
1094 sDest += "/";
1095 }
1096 if (!aTransferInfo.NewTitle.isEmpty())
1097 {
1098 sDest += rtl::Uri::encode( aTransferInfo.NewTitle,
1099 rtl_UriCharClassPchar,
1100 rtl_UriEncodeIgnoreEscapes,
1101 RTL_TEXTENCODING_UTF8 );
1102 }
1103 else
1104 sDest += OUString::createFromAscii(g_file_get_basename(getGFile()));
1105
1106 GFile *pDest = g_file_new_for_uri(OUStringToOString(sDest, RTL_TEXTENCODING_UTF8).getStr());
1107 GFile *pSource = g_file_new_for_uri(OUStringToOString(aTransferInfo.SourceURL, RTL_TEXTENCODING_UTF8).getStr());
1108
1109 bool bSuccess = false;
1110 GError *pError = nullptr;
1111 if (aTransferInfo.MoveData)
1112 bSuccess = g_file_move(pSource, pDest, G_FILE_COPY_OVERWRITE, nullptr, nullptr, nullptr, &pError);
1113 else
1114 bSuccess = g_file_copy(pSource, pDest, DEFAULT_COPYDATA_FLAGS, nullptr, nullptr, nullptr, &pError);
1115 g_object_unref(pSource);
1116 g_object_unref(pDest);
1117 if (!bSuccess) {
1118 SAL_INFO(
1119 "ucb.ucp.gio",
1120 "transfer <" << aTransferInfo.SourceURL << "> to <" << sDest << "> (MoveData = "
1121 << int(aTransferInfo.MoveData) << ") failed with \"" << pError->message << "\"");
1123 }
1124}
1125
1126css::uno::Sequence< css::ucb::ContentInfo > Content::queryCreatableContentsInfo(
1127 const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv)
1128{
1129 if ( isFolder( xEnv ) )
1130 {
1131
1132 // Minimum set of props we really need
1133 css::uno::Sequence< css::beans::Property > props
1134 {
1135 { "Title", -1, cppu::UnoType<OUString>::get(), css::beans::PropertyAttribute::MAYBEVOID | css::beans::PropertyAttribute::BOUND }
1136 };
1137
1138 return
1139 {
1140 { GIO_FILE_TYPE, ( css::ucb::ContentInfoAttribute::INSERT_WITH_INPUTSTREAM | css::ucb::ContentInfoAttribute::KIND_DOCUMENT ), props },
1141 { GIO_FOLDER_TYPE, css::ucb::ContentInfoAttribute::KIND_FOLDER, props }
1142 };
1143 }
1144 else
1145 {
1146 return {};
1147 }
1148}
1149
1150css::uno::Sequence< css::ucb::ContentInfo > SAL_CALL Content::queryCreatableContentsInfo()
1151{
1152 return queryCreatableContentsInfo( css::uno::Reference< css::ucb::XCommandEnvironment >() );
1153}
1154
1155css::uno::Reference< css::ucb::XContent >
1156 SAL_CALL Content::createNewContent( const css::ucb::ContentInfo& Info )
1157{
1158 bool create_document;
1159 const char *name;
1160
1161 if ( Info.Type == GIO_FILE_TYPE )
1162 create_document = true;
1163 else if ( Info.Type == GIO_FOLDER_TYPE )
1164 create_document = false;
1165 else
1166 {
1167 SAL_WARN("ucb.ucp.gio", "Failed to create new content '" << Info.Type << "'");
1168 return css::uno::Reference< css::ucb::XContent >();
1169 }
1170
1171 SAL_INFO("ucb.ucp.gio", "createNewContent (" << create_document << ")");
1172 OUString aURL = m_xIdentifier->getContentIdentifier();
1173
1174 if ( ( aURL.lastIndexOf( '/' ) + 1 ) != aURL.getLength() )
1175 aURL += "/";
1176
1177 name = create_document ? "[New_Content]" : "[New_Collection]";
1178 aURL += OUString::createFromAscii( name );
1179
1180 css::uno::Reference< css::ucb::XContentIdentifier > xId(new ::ucbhelper::ContentIdentifier(aURL));
1181
1182 try
1183 {
1184 return new ::gio::Content( m_xContext, m_pProvider, xId, !create_document );
1185 } catch ( css::ucb::ContentCreationException & )
1186 {
1187 return css::uno::Reference< css::ucb::XContent >();
1188 }
1189}
1190
1191css::uno::Sequence< css::uno::Type > SAL_CALL Content::getTypes()
1192{
1193 if ( isFolder( css::uno::Reference< css::ucb::XCommandEnvironment >() ) )
1194 {
1195 static cppu::OTypeCollection s_aFolderCollection
1196 (CPPU_TYPE_REF( css::lang::XTypeProvider ),
1197 CPPU_TYPE_REF( css::lang::XServiceInfo ),
1198 CPPU_TYPE_REF( css::lang::XComponent ),
1199 CPPU_TYPE_REF( css::ucb::XContent ),
1200 CPPU_TYPE_REF( css::ucb::XCommandProcessor ),
1201 CPPU_TYPE_REF( css::beans::XPropertiesChangeNotifier ),
1202 CPPU_TYPE_REF( css::ucb::XCommandInfoChangeNotifier ),
1203 CPPU_TYPE_REF( css::beans::XPropertyContainer ),
1204 CPPU_TYPE_REF( css::beans::XPropertySetInfoChangeNotifier ),
1205 CPPU_TYPE_REF( css::container::XChild ),
1206 CPPU_TYPE_REF( css::ucb::XContentCreator ) );
1207 return s_aFolderCollection.getTypes();
1208 }
1209 else
1210 {
1211 static cppu::OTypeCollection s_aFileCollection
1212 (CPPU_TYPE_REF( css::lang::XTypeProvider ),
1213 CPPU_TYPE_REF( css::lang::XServiceInfo ),
1214 CPPU_TYPE_REF( css::lang::XComponent ),
1215 CPPU_TYPE_REF( css::ucb::XContent ),
1216 CPPU_TYPE_REF( css::ucb::XCommandProcessor ),
1217 CPPU_TYPE_REF( css::beans::XPropertiesChangeNotifier ),
1218 CPPU_TYPE_REF( css::ucb::XCommandInfoChangeNotifier ),
1219 CPPU_TYPE_REF( css::beans::XPropertyContainer ),
1220 CPPU_TYPE_REF( css::beans::XPropertySetInfoChangeNotifier ),
1221 CPPU_TYPE_REF( css::container::XChild ) );
1222
1223 return s_aFileCollection.getTypes();
1224 }
1225}
1226
1227css::uno::Sequence< css::beans::Property > Content::getProperties(
1228 const css::uno::Reference< css::ucb::XCommandEnvironment > & /*xEnv*/ )
1229{
1230 static const css::beans::Property aGenericProperties[] =
1231 {
1232 css::beans::Property( "IsDocument",
1234 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1235 css::beans::Property( "IsFolder",
1237 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1238 css::beans::Property( "Title",
1240 css::beans::PropertyAttribute::BOUND ),
1241 css::beans::Property( "IsReadOnly",
1243 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1244 css::beans::Property( "DateCreated",
1246 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1247 css::beans::Property( "DateModified",
1249 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1250 css::beans::Property( "Size",
1252 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1253 css::beans::Property( "IsVolume",
1255 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1256 css::beans::Property( "IsCompactDisc",
1258 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1259 css::beans::Property( "IsRemoveable",
1261 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1262 css::beans::Property( "IsHidden",
1264 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY ),
1265 css::beans::Property( "CreatableContentsInfo",
1266 -1, cppu::UnoType<css::uno::Sequence< css::ucb::ContentInfo >>::get(),
1267 css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::READONLY )
1268 };
1269
1270 const int nProps = SAL_N_ELEMENTS(aGenericProperties);
1271 return css::uno::Sequence< css::beans::Property > ( aGenericProperties, nProps );
1272}
1273
1274css::uno::Sequence< css::ucb::CommandInfo > Content::getCommands( const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv)
1275{
1276 static const css::ucb::CommandInfo aCommandInfoTable[] =
1277 {
1278 // Required commands
1279 css::ucb::CommandInfo
1280 ( "getCommandInfo",
1282 css::ucb::CommandInfo
1283 ( "getPropertySetInfo",
1285 css::ucb::CommandInfo
1286 ( "getPropertyValues",
1287 -1, cppu::UnoType<css::uno::Sequence< css::beans::Property >>::get() ),
1288 css::ucb::CommandInfo
1289 ( "setPropertyValues",
1290 -1, cppu::UnoType<css::uno::Sequence< css::beans::PropertyValue >>::get() ),
1291
1292 // Optional standard commands
1293 css::ucb::CommandInfo
1294 ( "delete",
1296 css::ucb::CommandInfo
1297 ( "insert",
1299 css::ucb::CommandInfo
1300 ( "open",
1302
1303 // Folder Only, omitted if not a folder
1304 css::ucb::CommandInfo
1305 ( "transfer",
1307 css::ucb::CommandInfo
1308 ( "createNewContent",
1310 };
1311
1312 const int nProps = SAL_N_ELEMENTS(aCommandInfoTable);
1313 return css::uno::Sequence< css::ucb::CommandInfo >(aCommandInfoTable, isFolder(xEnv) ? nProps : nProps - 2);
1314}
1315
1317
1318void SAL_CALL Content::acquire() noexcept
1319{
1320 ContentImplHelper::acquire();
1321}
1322
1323void SAL_CALL Content::release() noexcept
1324{
1325 ContentImplHelper::release();
1326}
1327
1328css::uno::Any SAL_CALL Content::queryInterface( const css::uno::Type & rType )
1329{
1330 css::uno::Any aRet = cppu::queryInterface( rType, static_cast< css::ucb::XContentCreator * >( this ) );
1331 return aRet.hasValue() ? aRet : ContentImplHelper::queryInterface(rType);
1332}
1333
1335{
1336 return "com.sun.star.comp.GIOContent";
1337}
1338
1339css::uno::Sequence< OUString > SAL_CALL Content::getSupportedServiceNames()
1340{
1341 css::uno::Sequence<OUString> aSNS { "com.sun.star.ucb.GIOContent" };
1342 return aSNS;
1343}
1344
1345}
1346
1347/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const PropertyValue * pValues
PropertiesInfo aProperties
XPropertyListType t
const char * pName
AnyEventRef aEvent
static SolarMutex * get()
css::uno::Sequence< css::uno::Type > SAL_CALL getTypes()
css::uno::Type const & get()
bool exchangeIdentity(const css::uno::Reference< css::ucb::XContentIdentifier > &xNewId)
bool isFolder(const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv)
css::uno::Any getBadArgExcept()
GFile * mpFile
Definition: gio_content.hxx:67
GFileInfo * mpInfo
Definition: gio_content.hxx:68
void getFileInfo(css::uno::Reference< css::ucb::XCommandEnvironment > const &env, GFileInfo **info, bool fail)
virtual css::uno::Reference< css::ucb::XContent > SAL_CALL createNewContent(const css::ucb::ContentInfo &Info) override
void destroy(bool bDeletePhysical)
virtual css::uno::Any SAL_CALL queryInterface(const css::uno::Type &rType) override
css::uno::Any mapGIOError(GError *error)
bool feedSink(const css::uno::Reference< css::uno::XInterface > &aSink)
void insert(const css::uno::Reference< css::io::XInputStream > &xInputStream, bool bReplaceExisting, const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv)
GFile * getGFile()
ContentProvider * m_pProvider
Definition: gio_content.hxx:66
bool doSetFileInfo(GFileInfo *pNewInfo)
css::uno::Sequence< css::uno::Any > setPropertyValues(const css::uno::Sequence< css::beans::PropertyValue > &rValues, const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv)
virtual void SAL_CALL acquire() noexcept override
virtual css::uno::Sequence< css::beans::Property > getProperties(const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv) override
css::uno::Any open(const css::ucb::OpenCommandArgument2 &rArg, const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv)
css::uno::Reference< css::sdbc::XRow > getPropertyValues(const css::uno::Sequence< css::beans::Property > &rProperties, const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv)
virtual void SAL_CALL abort(sal_Int32 CommandId) override
virtual css::uno::Sequence< css::ucb::CommandInfo > getCommands(const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv) override
virtual ~Content() override
Definition: gio_content.cxx:98
virtual css::uno::Sequence< css::ucb::ContentInfo > SAL_CALL queryCreatableContentsInfo() override
void transfer(const css::ucb::TransferInfo &rTransferInfo, const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv)
virtual void SAL_CALL release() noexcept override
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override
Content(const css::uno::Reference< css::uno::XComponentContext > &rxContext, ContentProvider *pProvider, const css::uno::Reference< css::ucb::XContentIdentifier > &Identifier)
Definition: gio_content.cxx:75
void queryChildren(ContentRefList &rChildren)
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
GFileInfo * getGFileInfo(const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv, GError **ppError=nullptr)
virtual OUString SAL_CALL getImplementationName() override
virtual css::uno::Any SAL_CALL execute(const css::ucb::Command &aCommand, sal_Int32 CommandId, const css::uno::Reference< css::ucb::XCommandEnvironment > &Environment) override
static void copyData(const css::uno::Reference< css::io::XInputStream > &xIn, const css::uno::Reference< css::io::XOutputStream > &xOut)
virtual OUString SAL_CALL getContentType() override
virtual OUString getParentURL() override
std::vector< ContentRef > ContentRefList
Definition: gio_content.hxx:84
css::uno::Reference< css::ucb::XCommandInfo > getCommandInfo(const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv, bool bCache=true)
rtl::Reference< ContentProviderImplHelper > m_xProvider
bool exchange(const css::uno::Reference< css::ucb::XContentIdentifier > &rNewId)
css::uno::Reference< css::beans::XPropertySetInfo > getPropertySetInfo(const css::uno::Reference< css::ucb::XCommandEnvironment > &xEnv, bool bCache=true)
css::uno::Reference< css::ucb::XContentIdentifier > m_xIdentifier
css::uno::Reference< css::uno::XComponentContext > m_xContext
void notifyPropertiesChange(const css::uno::Sequence< css::beans::PropertyChangeEvent > &evt) const
int nCount
URL aURL
OUString sName
#define EXCEPT(aExcept)
GMountOperation * ooo_mount_operation_new(ucb::ucp::gio::glib::MainContextRef &&context, const css::uno::Reference< css::ucb::XCommandEnvironment > &rEnv)
Definition: gio_mount.cxx:203
const char * name
sal_Int64 n
uno_Any a
tools::SvRef< SvBaseLink > xSink
sal_uInt16 nPos
#define SAL_WARN(area, stream)
#define SAL_INFO(area, stream)
#define SAL_N_ELEMENTS(arr)
#define CPPU_TYPE_REF(T)
const css::uno::Reference< css::xml::crypto::XSecurityEnvironment > & env
err
css::uno::Any SAL_CALL queryInterface(const css::uno::Type &rType, Interface1 *p1)
Any SAL_CALL getCaughtException()
Info
OUString newName(std::u16string_view aNewPrefix, std::u16string_view aOldPrefix, std::u16string_view old_Name)
Definition: filglob.cxx:176
int i
static css::util::DateTime getDateFromUnix(time_t t)
constexpr OUStringLiteral GIO_FILE_TYPE
Definition: gio_content.hxx:52
const GFileCopyFlags DEFAULT_COPYDATA_FLAGS
static css::lang::IllegalAccessException getReadOnlyException(const css::uno::Reference< css::uno::XInterface > &rContext)
css::uno::Any convertToException(GError *pError, const css::uno::Reference< css::uno::XInterface > &rContext, bool bThrow)
constexpr OUStringLiteral GIO_FOLDER_TYPE
Definition: gio_content.hxx:53
const int TRANSFER_BUFFER_SIZE
XTYPEPROVIDER_COMMON_IMPL(Content)
void convertToIOException(GError *pError, const css::uno::Reference< css::uno::XInterface > &rContext)
OString OUStringToOString(std::u16string_view str, ConnectionSettings const *settings)
dictionary props
fail
std::unique_ptr< GMainContext, detail::MainContextUnref > MainContextRef
Definition: gio_mount.hxx:52
std::vector< ContentImplHelperRef > ContentRefList
void cancelCommandExecution(const uno::Any &rException, const uno::Reference< ucb::XCommandEnvironment > &xEnv)
OUString sMessage
OUString aCommand