LibreOffice Module ucb (master) 1
tdoc_docmgr.hxx
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#pragma once
21
22#include <rtl/ref.hxx>
23
25
26#include <com/sun/star/document/XDocumentEventListener.hpp>
27#include <com/sun/star/embed/XStorage.hpp>
28#include <com/sun/star/frame/XModel.hpp>
29#include <com/sun/star/frame/XModuleManager2.hpp>
30#include <com/sun/star/frame/XGlobalEventBroadcaster.hpp>
31#include <com/sun/star/uno/XComponentContext.hpp>
32#include <com/sun/star/util/DateTime.hpp>
33#include <com/sun/star/util/XCloseListener.hpp>
34
35#include <map>
36#include <mutex>
37#include <unordered_map>
38#include <utility>
39
40namespace tdoc_ucp {
41
42 class ContentProvider;
43
45 {
46 OUString aTitle;
47 css::uno::Reference< css::embed::XStorage > xStorage;
48 css::uno::Reference< css::frame::XModel > xModel;
49 std::unordered_map<OUString, css::util::DateTime> streamDateModified;
50
51 StorageInfo() {}; // needed for STL map only.
52
54 OUString _aTitle,
55 css::uno::Reference< css::embed::XStorage > _xStorage,
56 css::uno::Reference< css::frame::XModel > _xModel )
57 : aTitle(std::move( _aTitle )), xStorage(std::move( _xStorage )), xModel(std::move( _xModel )) {}
58 };
59
60
61 typedef std::map< OUString, StorageInfo > DocumentList;
62
63
65 public cppu::WeakImplHelper< css::document::XDocumentEventListener >
66 {
68 public cppu::WeakImplHelper< css::util::XCloseListener >
69
70 {
71 public:
73 : m_pManager( pMgr ) {}
74
75 // util::XCloseListener
76 virtual void SAL_CALL queryClosing(
77 const css::lang::EventObject& Source,
78 sal_Bool GetsOwnership ) override;
79
80 virtual void SAL_CALL notifyClosing(
81 const css::lang::EventObject& Source ) override;
82
83 // lang::XEventListener (base of util::XCloseListener)
84 virtual void SAL_CALL disposing(
85 const css::lang::EventObject & Source ) override;
86
87 void Dispose() { m_pManager = nullptr; }
88
89 private:
91 };
92
93 public:
95 const css::uno::Reference< css::uno::XComponentContext > & rxContext,
96 ContentProvider * pDocEventListener );
97 virtual ~OfficeDocumentsManager() override;
98
99 void destroy();
100
101 // document::XDocumentEventListener
102 virtual void SAL_CALL documentEventOccured(
103 const css::document::DocumentEvent & Event ) override;
104
105 // lang::XEventListener (base of document::XDocumentEventListener)
106 virtual void SAL_CALL disposing(
107 const css::lang::EventObject & Source ) override;
108
109 // Non-interface
110 css::uno::Reference< css::embed::XStorage >
111 queryStorage( const OUString & rDocId );
112
113 static OUString queryDocumentId(
114 const css::uno::Reference< css::frame::XModel > & xModel );
115
116 css::uno::Reference< css::frame::XModel >
117 queryDocumentModel( const OUString & rDocId );
118
119 css::uno::Sequence< OUString >
121
122 OUString
123 queryStorageTitle( const OUString & rDocId );
124
125 css::util::DateTime queryStreamDateModified(OUString const & uri);
126
127 void updateStreamDateModified(OUString const & uri);
128
129 private:
130 void buildDocumentsList();
131
132 bool isOfficeDocument(
133 const css::uno::Reference< css::uno::XInterface > & xDoc );
134
135 static bool isDocumentPreview(
136 const css::uno::Reference< css::frame::XModel > & xModel );
137
138 static bool isWithoutOrInTopLevelFrame(
139 const css::uno::Reference< css::frame::XModel > & xModel );
140
141 bool
143 const css::uno::Reference< css::frame::XModel > & xModel );
144
145 static bool isHelpDocument(
146 const css::uno::Reference< css::frame::XModel > & xModel );
147
148 std::mutex m_aMtx;
149 css::uno::Reference< css::uno::XComponentContext > m_xContext;
150 css::uno::Reference< css::frame::XGlobalEventBroadcaster > m_xDocEvtNotifier;
151 css::uno::Reference< css::frame::XModuleManager2 > m_xModuleMgr;
155 };
156
157} // namespace tdoc_ucp
158
159/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SAL_CALL notifyClosing(const css::lang::EventObject &Source) override
Definition: tdoc_docmgr.cxx:60
virtual void SAL_CALL disposing(const css::lang::EventObject &Source) override
Definition: tdoc_docmgr.cxx:76
virtual void SAL_CALL queryClosing(const css::lang::EventObject &Source, sal_Bool GetsOwnership) override
Definition: tdoc_docmgr.cxx:54
css::uno::Sequence< OUString > queryDocuments()
static bool isDocumentPreview(const css::uno::Reference< css::frame::XModel > &xModel)
virtual void SAL_CALL documentEventOccured(const css::document::DocumentEvent &Event) override
bool isBasicIDE(const css::uno::Reference< css::frame::XModel > &xModel)
ContentProvider *const m_pDocEventListener
OUString queryStorageTitle(const OUString &rDocId)
OfficeDocumentsManager(const css::uno::Reference< css::uno::XComponentContext > &rxContext, ContentProvider *pDocEventListener)
Definition: tdoc_docmgr.cxx:85
css::uno::Reference< css::frame::XModuleManager2 > m_xModuleMgr
css::uno::Reference< css::frame::XModel > queryDocumentModel(const OUString &rDocId)
static OUString queryDocumentId(const css::uno::Reference< css::frame::XModel > &xModel)
virtual ~OfficeDocumentsManager() override
css::uno::Reference< css::frame::XGlobalEventBroadcaster > m_xDocEvtNotifier
void updateStreamDateModified(OUString const &uri)
bool isOfficeDocument(const css::uno::Reference< css::uno::XInterface > &xDoc)
css::util::DateTime queryStreamDateModified(OUString const &uri)
css::uno::Reference< css::embed::XStorage > queryStorage(const OUString &rDocId)
virtual void SAL_CALL disposing(const css::lang::EventObject &Source) override
static bool isHelpDocument(const css::uno::Reference< css::frame::XModel > &xModel)
css::uno::Reference< css::uno::XComponentContext > m_xContext
::rtl::Reference< OfficeDocumentsCloseListener > const m_xDocCloseListener
static bool isWithoutOrInTopLevelFrame(const css::uno::Reference< css::frame::XModel > &xModel)
std::map< OUString, StorageInfo > DocumentList
Definition: tdoc_docmgr.hxx:61
friend ContentProvider
Definition: pkgprovider.cxx:54
css::uno::Reference< css::frame::XModel > xModel
Definition: tdoc_docmgr.hxx:48
std::unordered_map< OUString, css::util::DateTime > streamDateModified
Definition: tdoc_docmgr.hxx:49
css::uno::Reference< css::embed::XStorage > xStorage
Definition: tdoc_docmgr.hxx:47
StorageInfo(OUString _aTitle, css::uno::Reference< css::embed::XStorage > _xStorage, css::uno::Reference< css::frame::XModel > _xModel)
Definition: tdoc_docmgr.hxx:53
unsigned char sal_Bool