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 #pragma once
21 
22 #include <memory>
23 #include <ucbhelper/providerhelper.hxx>
24 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
25 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
26 #include "pkguri.hxx"
27 
28 namespace com::sun::star::container {
29     class XHierarchicalNameAccess;
30 }
31 
32 namespace package_ucp {
33 
34 
35 // UCB Content Type.
36 #define PACKAGE_FOLDER_CONTENT_TYPE \
37                 "application/" PACKAGE_URL_SCHEME "-folder"
38 #define PACKAGE_STREAM_CONTENT_TYPE \
39                 "application/" PACKAGE_URL_SCHEME "-stream"
40 #define PACKAGE_ZIP_FOLDER_CONTENT_TYPE \
41                 "application/" PACKAGE_ZIP_URL_SCHEME "-folder"
42 #define PACKAGE_ZIP_STREAM_CONTENT_TYPE \
43                 "application/" PACKAGE_ZIP_URL_SCHEME "-stream"
44 
45 
46 class Packages;
47 
48 class ContentProvider : public ::ucbhelper::ContentProviderImplHelper
49 {
50     std::unique_ptr<Packages> m_pPackages;
51 
52 public:
53     explicit ContentProvider( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
54     virtual ~ContentProvider() override;
55 
56     // XInterface
57     virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
58     virtual void SAL_CALL acquire()
59         noexcept override;
60     virtual void SAL_CALL release()
61         noexcept override;
62 
63     // XTypeProvider
64     virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
65     virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;
66 
67     // XServiceInfo
68     virtual OUString SAL_CALL getImplementationName() override;
69     virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
70     virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
71 
72     // XContentProvider
73     virtual css::uno::Reference< css::ucb::XContent > SAL_CALL
74     queryContent( const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier ) override;
75 
76 
77     // Non-interface methods.
78 
79 
80     css::uno::Reference< css::container::XHierarchicalNameAccess >
81     createPackage( const PackageUri & rParam );
82     void
83     removePackage( const OUString & rName );
84 };
85 
86 }
87 
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
89