bump product version to 7.2.5.1
[LibreOffice.git] / ucb / source / ucp / ftp / ftpcontentprovider.hxx
blob3547de0f2a50b7ed0b5260663d8e97596a038fd1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #pragma once
22 #include <vector>
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>
27 #include "curl.hxx"
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"
35 /**
36 * Definition of ftpcontentprovider
38 namespace ftp
40 class FTPLoaderThread;
42 class FTPContentProvider:
43 public ::ucbhelper::ContentProviderImplHelper
45 public:
47 explicit FTPContentProvider( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
49 virtual ~FTPContentProvider() override;
51 // XInterface
52 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
53 virtual void SAL_CALL acquire()
54 noexcept override;
55 virtual void SAL_CALL release()
56 noexcept override;
58 // XTypeProvider
59 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
60 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;
62 // XServiceInfo
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;
67 // XContentProvider
68 virtual css::uno::Reference< css::ucb::XContent > SAL_CALL
69 queryContent( const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier ) override;
71 CURL* handle();
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,
79 OUString& password,
80 OUString& account);
82 bool setHost(const OUString& host,
83 const OUString& port,
84 const OUString& username,
85 const OUString& password,
86 const OUString& account);
88 struct ServerInfo
90 OUString host;
91 OUString port;
92 OUString username;
93 OUString password;
94 OUString account;
97 private:
98 std::unique_ptr<FTPLoaderThread> m_ftpLoaderThread;
99 std::unique_ptr<ucbhelper::InternetProxyDecider> m_pProxyDecider;
100 std::vector<ServerInfo> m_ServerInfo;
102 void init();
103 }; // end class FTPContentProvider
105 } // end namespace ftp
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */