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 "elementlist.hxx"
21 :
22 : #include <string.h>
23 :
24 : #include <element.hxx>
25 : #include <document.hxx>
26 :
27 : using namespace css::uno;
28 : using namespace css::xml::dom;
29 : using namespace css::xml::dom::events;
30 :
31 : namespace
32 : {
33 : class WeakEventListener : public ::cppu::WeakImplHelper1<css::xml::dom::events::XEventListener>
34 : {
35 : private:
36 : css::uno::WeakReference<css::xml::dom::events::XEventListener> mxOwner;
37 :
38 : public:
39 910 : WeakEventListener(const css::uno::Reference<css::xml::dom::events::XEventListener>& rOwner)
40 910 : : mxOwner(rOwner)
41 : {
42 910 : }
43 :
44 1820 : virtual ~WeakEventListener()
45 910 : {
46 1820 : }
47 :
48 94 : virtual void SAL_CALL handleEvent(const css::uno::Reference<css::xml::dom::events::XEvent>& rEvent)
49 : throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
50 : {
51 : css::uno::Reference<css::xml::dom::events::XEventListener> xOwner(mxOwner.get(),
52 94 : css::uno::UNO_QUERY);
53 94 : if (xOwner.is())
54 94 : xOwner->handleEvent(rEvent);
55 94 : }
56 : };
57 : }
58 :
59 : namespace DOM
60 : {
61 :
62 934 : static xmlChar* lcl_initXmlString(OUString const& rString)
63 : {
64 : OString const os =
65 934 : OUStringToOString(rString, RTL_TEXTENCODING_UTF8);
66 934 : xmlChar *const pRet = new xmlChar[os.getLength() + 1];
67 934 : strcpy(reinterpret_cast<char*>(pRet), os.getStr());
68 934 : return pRet;
69 : }
70 :
71 914 : CElementList::CElementList(::rtl::Reference<CElement> const& pElement,
72 : ::osl::Mutex & rMutex,
73 : OUString const& rName, OUString const*const pURI)
74 914 : : m_xImpl(new CElementListImpl(pElement, rMutex, rName, pURI))
75 : {
76 914 : if (pElement.is()) {
77 910 : m_xImpl->registerListener(*pElement);
78 : }
79 914 : }
80 :
81 914 : CElementListImpl::CElementListImpl(::rtl::Reference<CElement> const& pElement,
82 : ::osl::Mutex & rMutex,
83 : OUString const& rName, OUString const*const pURI)
84 : : m_pElement(pElement)
85 : , m_rMutex(rMutex)
86 : , m_pName(lcl_initXmlString(rName))
87 : , m_pURI((pURI) ? lcl_initXmlString(*pURI) : 0)
88 914 : , m_bRebuild(true)
89 : {
90 914 : }
91 :
92 2742 : CElementListImpl::~CElementListImpl()
93 : {
94 914 : if (m_xEventListener.is() && m_pElement.is())
95 : {
96 910 : Reference< XEventTarget > xTarget(static_cast<XElement*>(m_pElement.get()), UNO_QUERY);
97 : assert(xTarget.is());
98 910 : if (!xTarget.is())
99 0 : return;
100 910 : bool capture = false;
101 910 : xTarget->removeEventListener("DOMSubtreeModified", m_xEventListener, capture);
102 : }
103 1828 : }
104 :
105 910 : void CElementListImpl::registerListener(CElement & rElement)
106 : {
107 : try {
108 : Reference< XEventTarget > const xTarget(
109 910 : static_cast<XElement*>(& rElement), UNO_QUERY_THROW);
110 910 : bool capture = false;
111 910 : m_xEventListener = new WeakEventListener(this);
112 910 : xTarget->addEventListener("DOMSubtreeModified",
113 910 : m_xEventListener, capture);
114 0 : } catch (const Exception &e){
115 0 : OString aMsg("Exception caught while registering NodeList as listener:\n");
116 0 : aMsg += OUStringToOString(e.Message, RTL_TEXTENCODING_ASCII_US);
117 0 : OSL_FAIL(aMsg.getStr());
118 : }
119 910 : }
120 :
121 22330 : void CElementListImpl::buildlist(xmlNodePtr pNode, bool start)
122 : {
123 : // bail out if no rebuild is needed
124 22330 : if (start) {
125 10674 : if (!m_bRebuild)
126 : {
127 32084 : return;
128 : } else {
129 920 : m_nodevector.erase(m_nodevector.begin(), m_nodevector.end());
130 920 : m_bRebuild = false; // don't rebuild until tree is mutated
131 : }
132 : }
133 :
134 112574 : while (pNode != NULL )
135 : {
136 128926 : if (pNode->type == XML_ELEMENT_NODE &&
137 40584 : (strcmp((char*)pNode->name, (char*)m_pName.get()) == 0))
138 : {
139 9768 : if (!m_pURI) {
140 9748 : m_nodevector.push_back(pNode);
141 : } else {
142 36 : if (pNode->ns != NULL && (0 ==
143 16 : strcmp((char*)pNode->ns->href, (char*)m_pURI.get())))
144 : {
145 16 : m_nodevector.push_back(pNode);
146 : }
147 : }
148 : }
149 88342 : if (pNode->children != NULL) buildlist(pNode->children, false);
150 :
151 88342 : if (!start) pNode = pNode->next;
152 920 : else break; // fold back
153 : }
154 : }
155 :
156 : /**
157 : The number of nodes in the list.
158 : */
159 912 : sal_Int32 SAL_CALL CElementListImpl::getLength() throw (RuntimeException, std::exception)
160 : {
161 912 : ::osl::MutexGuard const g(m_rMutex);
162 :
163 912 : if (!m_pElement.is()) { return 0; }
164 :
165 : // this has to be 'live'
166 908 : buildlist(m_pElement->GetNodePtr());
167 908 : return m_nodevector.size();
168 : }
169 : /**
170 : Returns the indexth item in the collection.
171 : */
172 9766 : Reference< XNode > SAL_CALL CElementListImpl::item(sal_Int32 index)
173 : throw (RuntimeException, std::exception)
174 : {
175 9766 : if (index < 0) throw RuntimeException();
176 :
177 9766 : ::osl::MutexGuard const g(m_rMutex);
178 :
179 9766 : if (!m_pElement.is()) { return 0; }
180 :
181 9766 : buildlist(m_pElement->GetNodePtr());
182 9766 : if (m_nodevector.size() <= static_cast<size_t>(index)) {
183 2 : throw RuntimeException();
184 : }
185 : Reference< XNode > const xRet(
186 19528 : m_pElement->GetOwnerDocument().GetCNode(m_nodevector[index]).get());
187 19530 : return xRet;
188 : }
189 :
190 : // tree mutations can change the list
191 94 : void SAL_CALL CElementListImpl::handleEvent(Reference< XEvent > const&)
192 : throw (RuntimeException, std::exception)
193 : {
194 94 : ::osl::MutexGuard const g(m_rMutex);
195 :
196 94 : m_bRebuild = true;
197 94 : }
198 : }
199 :
200 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|