1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #include "nodelist.hxx"
22 #include "../dom/document.hxx"
24 using namespace css::uno
;
25 using namespace css::xml::dom
;
30 ::rtl::Reference
<DOM::CDocument
> const& pDocument
,
31 ::osl::Mutex
& rMutex
,
32 std::shared_ptr
<xmlXPathObject
> const& rxpathObj
)
33 : m_pDocument(pDocument
)
37 if (rxpathObj
!= nullptr && rxpathObj
->type
== XPATH_NODESET
)
39 m_pNodeSet
= rxpathObj
->nodesetval
;
40 m_pXPathObj
= rxpathObj
;
45 The number of nodes in the list.
47 sal_Int32 SAL_CALL
CNodeList::getLength()
49 ::osl::MutexGuard
const g(m_rMutex
);
52 if (m_pNodeSet
!= nullptr)
53 value
= xmlXPathNodeSetGetLength(m_pNodeSet
);
58 Returns the indexth item in the collection.
60 Reference
< XNode
> SAL_CALL
CNodeList::item(sal_Int32 index
)
62 ::osl::MutexGuard
const g(m_rMutex
);
64 if (nullptr == m_pNodeSet
) {
67 xmlNodePtr
const pNode
= xmlXPathNodeSetItem(m_pNodeSet
, index
);
68 return m_pDocument
->GetCNode(pNode
);
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */