1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
23 #include <ucbhelper/proxydecider.hxx>
24 #include <ucbhelper/providerhelper.hxx>
25 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
29 // UNO service name for the provider. This name will be used by the UCB to
30 // create instances of the provider.
32 #define FTP_CONTENT_PROVIDER_SERVICE_NAME "com.sun.star.ucb.FTPContentProvider"
33 #define FTP_CONTENT_TYPE "application/ftp-content"
36 * Definition of ftpcontentprovider
40 class FTPLoaderThread
;
42 class FTPContentProvider
:
43 public ::ucbhelper::ContentProviderImplHelper
47 explicit FTPContentProvider( const css::uno::Reference
< css::uno::XComponentContext
>& rxContext
);
49 virtual ~FTPContentProvider() override
;
52 virtual css::uno::Any SAL_CALL
queryInterface( const css::uno::Type
& rType
) override
;
53 virtual void SAL_CALL
acquire()
55 virtual void SAL_CALL
release()
59 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() override
;
60 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() override
;
63 virtual OUString SAL_CALL
getImplementationName() override
;
64 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
65 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
68 virtual css::uno::Reference
< css::ucb::XContent
> SAL_CALL
69 queryContent( const css::uno::Reference
< css::ucb::XContentIdentifier
>& Identifier
) override
;
73 /** host is in the form host:port.
76 void forHost(std::u16string_view host
,
77 std::u16string_view port
,
78 std::u16string_view username
,
82 bool setHost(const OUString
& host
,
84 const OUString
& username
,
85 const OUString
& password
,
86 const OUString
& account
);
98 std::unique_ptr
<FTPLoaderThread
> m_ftpLoaderThread
;
99 std::unique_ptr
<ucbhelper::InternetProxyDecider
> m_pProxyDecider
;
100 std::vector
<ServerInfo
> m_ServerInfo
;
103 }; // end class FTPContentProvider
105 } // end namespace ftp
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */