Line data Source code
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 : #include <documentlinkmgr.hxx>
21 : #include <datastream.hxx>
22 : #include <ddelink.hxx>
23 : #include <sc.hrc>
24 : #include <scresid.hxx>
25 :
26 : #include <sfx2/linkmgr.hxx>
27 : #include <vcl/layout.hxx>
28 :
29 : #include <boost/noncopyable.hpp>
30 : #include <boost/scoped_ptr.hpp>
31 :
32 : namespace sc {
33 :
34 : struct DocumentLinkManagerImpl : boost::noncopyable
35 : {
36 : ScDocument& mrDoc;
37 : SfxObjectShell* mpShell;
38 : boost::scoped_ptr<DataStream> mpDataStream;
39 : boost::scoped_ptr<sfx2::LinkManager> mpLinkManager;
40 :
41 873 : DocumentLinkManagerImpl( ScDocument& rDoc, SfxObjectShell* pShell ) :
42 873 : mrDoc(rDoc), mpShell(pShell), mpDataStream(NULL), mpLinkManager(NULL) {}
43 :
44 864 : ~DocumentLinkManagerImpl()
45 864 : {
46 : // Shared base links
47 864 : if (mpLinkManager)
48 : {
49 777 : sfx2::SvLinkSources aTemp = mpLinkManager->GetServers();
50 777 : for (sfx2::SvLinkSources::const_iterator it = aTemp.begin(); it != aTemp.end(); ++it)
51 0 : (*it)->Closed();
52 :
53 777 : if (!mpLinkManager->GetLinks().empty())
54 16 : mpLinkManager->Remove(0, mpLinkManager->GetLinks().size());
55 : }
56 864 : }
57 : };
58 :
59 873 : DocumentLinkManager::DocumentLinkManager( ScDocument& rDoc, SfxObjectShell* pShell ) :
60 873 : mpImpl(new DocumentLinkManagerImpl(rDoc, pShell)) {}
61 :
62 864 : DocumentLinkManager::~DocumentLinkManager()
63 : {
64 864 : delete mpImpl;
65 864 : }
66 :
67 0 : void DocumentLinkManager::setDataStream( DataStream* p )
68 : {
69 0 : mpImpl->mpDataStream.reset(p);
70 0 : }
71 :
72 0 : DataStream* DocumentLinkManager::getDataStream()
73 : {
74 0 : return mpImpl->mpDataStream.get();
75 : }
76 :
77 0 : const DataStream* DocumentLinkManager::getDataStream() const
78 : {
79 0 : return mpImpl->mpDataStream.get();
80 : }
81 :
82 2176 : sfx2::LinkManager* DocumentLinkManager::getLinkManager( bool bCreate )
83 : {
84 2176 : if (!mpImpl->mpLinkManager && bCreate && mpImpl->mpShell)
85 785 : mpImpl->mpLinkManager.reset(new sfx2::LinkManager(mpImpl->mpShell));
86 2176 : return mpImpl->mpLinkManager.get();
87 : }
88 :
89 360 : const sfx2::LinkManager* DocumentLinkManager::getExistingLinkManager() const
90 : {
91 360 : return mpImpl->mpLinkManager.get();
92 : }
93 :
94 2027 : bool DocumentLinkManager::idleCheckLinks()
95 : {
96 2027 : if (!mpImpl->mpLinkManager)
97 0 : return false;
98 :
99 2027 : bool bAnyLeft = false;
100 2027 : const sfx2::SvBaseLinks& rLinks = mpImpl->mpLinkManager->GetLinks();
101 2037 : for (size_t i = 0, n = rLinks.size(); i < n; ++i)
102 : {
103 10 : sfx2::SvBaseLink* pBase = *rLinks[i];
104 10 : ScDdeLink* pDdeLink = dynamic_cast<ScDdeLink*>(pBase);
105 10 : if (!pDdeLink || !pDdeLink->NeedsUpdate())
106 10 : continue;
107 :
108 0 : pDdeLink->TryUpdate();
109 0 : if (pDdeLink->NeedsUpdate()) // Was not successful?
110 0 : bAnyLeft = true;
111 : }
112 :
113 2027 : return bAnyLeft;
114 : }
115 :
116 424 : bool DocumentLinkManager::hasDdeLinks() const
117 : {
118 424 : if (!mpImpl->mpLinkManager)
119 226 : return false;
120 :
121 198 : const sfx2::SvBaseLinks& rLinks = mpImpl->mpLinkManager->GetLinks();
122 199 : for (size_t i = 0, n = rLinks.size(); i < n; ++i)
123 : {
124 1 : sfx2::SvBaseLink* pBase = *rLinks[i];
125 1 : if (dynamic_cast<ScDdeLink*>(pBase))
126 0 : return true;
127 : }
128 :
129 198 : return false;
130 : }
131 :
132 0 : bool DocumentLinkManager::updateDdeLinks( vcl::Window* pWin )
133 : {
134 0 : if (!mpImpl->mpLinkManager)
135 0 : return false;
136 :
137 0 : sfx2::LinkManager* pMgr = mpImpl->mpLinkManager.get();
138 0 : const sfx2::SvBaseLinks& rLinks = pMgr->GetLinks();
139 :
140 : // If the update takes longer, reset all values so that nothing
141 : // old (wrong) is left behind
142 0 : bool bAny = false;
143 0 : for (size_t i = 0, n = rLinks.size(); i < n; ++i)
144 : {
145 0 : sfx2::SvBaseLink* pBase = *rLinks[i];
146 0 : ScDdeLink* pDdeLink = dynamic_cast<ScDdeLink*>(pBase);
147 0 : if (!pDdeLink)
148 0 : continue;
149 :
150 0 : if (pDdeLink->Update())
151 0 : bAny = true;
152 : else
153 : {
154 : // Update failed. Notify the user.
155 0 : OUString aFile = pDdeLink->GetTopic();
156 0 : OUString aElem = pDdeLink->GetItem();
157 0 : OUString aType = pDdeLink->GetAppl();
158 :
159 0 : OUStringBuffer aBuf;
160 0 : aBuf.append(OUString(ScResId(SCSTR_DDEDOC_NOT_LOADED)));
161 0 : aBuf.appendAscii("\n\n");
162 0 : aBuf.appendAscii("Source : ");
163 0 : aBuf.append(aFile);
164 0 : aBuf.appendAscii("\nElement : ");
165 0 : aBuf.append(aElem);
166 0 : aBuf.appendAscii("\nType : ");
167 0 : aBuf.append(aType);
168 0 : ScopedVclPtrInstance< MessageDialog > aBox(pWin, aBuf.makeStringAndClear());
169 0 : aBox->Execute();
170 : }
171 : }
172 :
173 0 : pMgr->CloseCachedComps();
174 :
175 0 : return bAny;
176 : }
177 :
178 2 : bool DocumentLinkManager::updateDdeLink( const OUString& rAppl, const OUString& rTopic, const OUString& rItem )
179 : {
180 2 : if (!mpImpl->mpLinkManager)
181 0 : return false;
182 :
183 2 : sfx2::LinkManager* pMgr = mpImpl->mpLinkManager.get();
184 2 : const sfx2::SvBaseLinks& rLinks = pMgr->GetLinks();
185 :
186 2 : bool bFound = false;
187 4 : for (size_t i = 0, n = rLinks.size(); i < n; ++i)
188 : {
189 2 : ::sfx2::SvBaseLink* pBase = *rLinks[i];
190 2 : ScDdeLink* pDdeLink = dynamic_cast<ScDdeLink*>(pBase);
191 2 : if (!pDdeLink)
192 0 : continue;
193 :
194 12 : if ( OUString(pDdeLink->GetAppl()) == rAppl &&
195 14 : OUString(pDdeLink->GetTopic()) == rTopic &&
196 6 : OUString(pDdeLink->GetItem()) == rItem )
197 : {
198 2 : pDdeLink->TryUpdate();
199 2 : bFound = true; // Could be multiple (Mode), so continue searching
200 : }
201 : }
202 :
203 2 : return bFound;
204 : }
205 :
206 40 : size_t DocumentLinkManager::getDdeLinkCount() const
207 : {
208 40 : if (!mpImpl->mpLinkManager)
209 0 : return 0;
210 :
211 40 : size_t nDdeCount = 0;
212 40 : const sfx2::SvBaseLinks& rLinks = mpImpl->mpLinkManager->GetLinks();
213 52 : for (size_t i = 0, n = rLinks.size(); i < n; ++i)
214 : {
215 12 : ::sfx2::SvBaseLink* pBase = *rLinks[i];
216 12 : ScDdeLink* pDdeLink = dynamic_cast<ScDdeLink*>(pBase);
217 12 : if (!pDdeLink)
218 1 : continue;
219 :
220 11 : ++nDdeCount;
221 : }
222 :
223 40 : return nDdeCount;
224 : }
225 :
226 0 : void DocumentLinkManager::disconnectDdeLinks()
227 : {
228 0 : if (!mpImpl->mpLinkManager)
229 0 : return;
230 :
231 0 : const sfx2::SvBaseLinks& rLinks = mpImpl->mpLinkManager->GetLinks();
232 0 : for (size_t i = 0, n = rLinks.size(); i < n; ++i)
233 : {
234 0 : ::sfx2::SvBaseLink* pBase = *rLinks[i];
235 0 : ScDdeLink* pDdeLink = dynamic_cast<ScDdeLink*>(pBase);
236 0 : if (pDdeLink)
237 0 : pDdeLink->Disconnect();
238 : }
239 : }
240 :
241 156 : }
242 :
243 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|