/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef INCLUDED_UCB_SOURCE_UCP_WEBDAV_NEON_WEBDAVCONTENT_HXX #define INCLUDED_UCB_SOURCE_UCP_WEBDAV_NEON_WEBDAVCONTENT_HXX #include #include #include #include #include #include #include #include "DAVResourceAccess.hxx" #include "PropertyMap.hxx" namespace com { namespace sun { namespace star { namespace beans { struct Property; struct PropertyValue; } } } } namespace com { namespace sun { namespace star { namespace io { class XInputStream; } } } } namespace com { namespace sun { namespace star { namespace sdbc { class XRow; } } } } namespace com { namespace sun { namespace star { namespace ucb { struct OpenCommandArgument3; struct PostCommandArgument2; struct PropertyCommandArgument; struct TransferInfo; } } } } namespace webdav_ucp { // UNO service name for the content. #define WEBDAV_CONTENT_SERVICE_NAME "com.sun.star.ucb.WebDAVContent" class ContentProvider; class ContentProperties; class CachableContentProperties; class Content : public ::ucbhelper::ContentImplHelper, public css::ucb::XContentCreator { enum ResourceType { UNKNOWN, // the type of the Web resource is unknown NOT_FOUND, // the Web resource does not exists FTP, // the Web resource exists but it's ftp NON_DAV, // the Web resource exists but it's not DAV DAV, // the type of the Web resource is DAV with lock/unlock available DAV_NOLOCK // the type of the Web resource is DAV with no lock/unlock available }; std::unique_ptr< DAVResourceAccess > m_xResAccess; std::unique_ptr< CachableContentProperties > m_xCachedProps; // locally cached props OUString m_aEscapedTitle; // resource type for general DAV methods ResourceType m_eResourceType; // resource type for general LOCK method only ResourceType m_eResourceTypeForLocks; ContentProvider* m_pProvider; // No need for a ref, base class holds object rtl::Reference< DAVSessionFactory > m_rSessionFactory; bool m_bTransient; bool m_bCollection; bool m_bDidGetOrHead; std::vector< OUString > m_aFailedPropNames; private: virtual css::uno::Sequence< css::beans::Property > getProperties( const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv ) override; virtual css::uno::Sequence< css::ucb::CommandInfo > getCommands( const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv ) override; virtual OUString getParentURL() override; bool isFolder( const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv ) throw ( css::uno::Exception, std::exception ); css::uno::Reference< css::sdbc::XRow > getPropertyValues( const css::uno::Sequence< css::beans::Property >& rProperties, const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv ) throw ( css::uno::Exception, std::exception ); css::uno::Sequence< css::uno::Any > setPropertyValues( const css::uno::Sequence< css::beans::PropertyValue >& rValues, const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv ) throw ( css::uno::Exception, std::exception ); typedef rtl::Reference< Content > ContentRef; typedef std::list< ContentRef > ContentRefList; void queryChildren( ContentRefList& rChildren); bool exchangeIdentity( const css::uno::Reference< css::ucb::XContentIdentifier >& xNewId ); const OUString getBaseURI( const std::unique_ptr< DAVResourceAccess > & rResAccess ); ResourceType getResourceType( const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv ) throw ( css::uno::Exception, std::exception ); ResourceType getResourceType( const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv, const std::unique_ptr< DAVResourceAccess > & rResAccess, bool * networkAccessAllowed = nullptr) throw ( css::uno::Exception, std::exception ); // Command "open" css::uno::Any open( const css::ucb::OpenCommandArgument3 & rArg, const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv ) throw (css::uno::Exception, std::exception); // Command "post" void post( const css::ucb::PostCommandArgument2 & rArg, const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv ) throw( css::uno::Exception, std::exception ); // Command "insert" void insert( const css::uno::Reference< css::io::XInputStream > & xInputStream, bool bReplaceExisting, const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::uno::Exception, std::exception ); // Command "transfer" void transfer( const css::ucb::TransferInfo & rArgs, const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::uno::Exception, std::exception ); // Command "delete" void destroy( bool bDeletePhysical ) throw( css::uno::Exception, std::exception ); // Command "lock" void lock( const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::uno::Exception, std::exception ); // Command "unlock" void unlock( const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::uno::Exception, std::exception ); css::uno::Any MapDAVException( const DAVException & e, bool bWrite ); void cancelCommandExecution( const DAVException & e, const css::uno::Reference< css::ucb::XCommandEnvironment > & xEnv, bool bWrite = false ) throw( css::uno::Exception, std::exception ); static bool shouldAccessNetworkAfterException( const DAVException & e ); ResourceType resourceTypeForLocks( const css::uno::Reference< css::ucb::XCommandEnvironment >& rEnvironment, const std::unique_ptr< DAVResourceAccess > & rResAccess ); ResourceType resourceTypeForLocks( const css::uno::Reference< css::ucb::XCommandEnvironment >& rEnvironment ); void addProperty( const css::ucb::PropertyCommandArgument &aCmdArg, const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::beans::PropertyExistException, css::beans::IllegalTypeException, css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ); void removeProperty( const OUString& Name, const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::beans::UnknownPropertyException, css::beans::NotRemoveableException, css::uno::RuntimeException, std::exception ); public: Content( const css::uno::Reference< css::uno::XComponentContext >& rxContext, ContentProvider* pProvider, const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier, rtl::Reference< DAVSessionFactory > const & rSessionFactory ) throw ( css::ucb::ContentCreationException ); Content( const css::uno::Reference< css::uno::XComponentContext >& rxContext, ContentProvider* pProvider, const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier, rtl::Reference< DAVSessionFactory > const & rSessionFactory, bool isCollection ) throw ( css::ucb::ContentCreationException ); virtual ~Content(); // XInterface virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) throw( css::uno::RuntimeException, std::exception ) override; virtual void SAL_CALL acquire() throw() override; virtual void SAL_CALL release() throw() override; // XTypeProvider virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw( css::uno::RuntimeException, std::exception ) override; virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw( css::uno::RuntimeException, std::exception ) override; // XServiceInfo virtual OUString SAL_CALL getImplementationName() throw( css::uno::RuntimeException, std::exception ) override; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( css::uno::RuntimeException, std::exception ) override; // XContent virtual OUString SAL_CALL getContentType() throw( css::uno::RuntimeException, std::exception ) override; // XCommandProcessor virtual css::uno::Any SAL_CALL execute( const css::ucb::Command& aCommand, sal_Int32 CommandId, const css::uno::Reference< css::ucb::XCommandEnvironment >& Environment ) throw( css::uno::Exception, css::ucb::CommandAbortedException, css::uno::RuntimeException, std::exception ) override; virtual void SAL_CALL abort( sal_Int32 CommandId ) throw( css::uno::RuntimeException, std::exception ) override; // XPropertyContainer virtual void SAL_CALL addProperty( const OUString& Name, sal_Int16 Attributes, const css::uno::Any& DefaultValue ) throw( css::beans::PropertyExistException, css::beans::IllegalTypeException, css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception ) override; virtual void SAL_CALL removeProperty( const OUString& Name ) throw( css::beans::UnknownPropertyException, css::beans::NotRemoveableException, css::uno::RuntimeException, std::exception ) override; // Additional interfaces // XContentCreator virtual css::uno::Sequence< css::ucb::ContentInfo > SAL_CALL queryCreatableContentsInfo() throw( css::uno::RuntimeException, std::exception ) override; virtual css::uno::Reference< css::ucb::XContent > SAL_CALL createNewContent( const css::ucb::ContentInfo& Info ) throw( css::uno::RuntimeException, std::exception ) override; // Non-interface methods. DAVResourceAccess & getResourceAccess() { return *m_xResAccess; } // Called from resultset data supplier. static css::uno::Reference< css::sdbc::XRow > getPropertyValues( const css::uno::Reference< css::uno::XComponentContext >& rxContext, const css::uno::Sequence< css::beans::Property >& rProperties, const ContentProperties& rData, const rtl::Reference< ::ucbhelper::ContentProviderImplHelper >& rProvider, const OUString& rContentId ); // Use OPTIONS method to retrieve the type of the Web resource void getResourceOptions( const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv, DAVOptions& rDAVOptions, const std::unique_ptr< DAVResourceAccess > & rResAccess ) throw ( css::uno::Exception, std::exception ); void getResourceOptions( const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv, DAVOptions& rDAVOptions ) throw ( css::uno::Exception, std::exception ); }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */