Coverage Report

Created: 2025-07-07 10:01

/src/libreoffice/configmgr/source/node.cxx
Line
Count
Source (jump to first uncovered line)
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 <sal/config.h>
21
22
#include <cassert>
23
24
#include <com/sun/star/uno/RuntimeException.hpp>
25
#include <rtl/ref.hxx>
26
#include <rtl/ustring.hxx>
27
28
#include "data.hxx"
29
#include "node.hxx"
30
#include "nodemap.hxx"
31
32
namespace configmgr {
33
34
0
NodeMap & Node::getMembers() {
35
0
    assert(false);
36
0
    throw css::uno::RuntimeException(u"this cannot happen"_ustr);
37
0
}
38
39
0
OUString Node::getTemplateName() const {
40
0
    return OUString();
41
0
}
42
43
0
void Node::setMandatory(int layer) {
44
0
    (void) layer; // avoid warnings
45
0
    assert(layer == Data::NO_LAYER);
46
0
}
47
48
0
int Node::getMandatory() const {
49
0
    return Data::NO_LAYER;
50
0
}
51
52
0
void Node::setLayer(int layer) {
53
0
    assert(layer >= layer_);
54
0
    layer_ = layer;
55
0
}
56
57
58
0
void Node::setFinalized(int layer) {
59
0
    finalized_ = layer;
60
0
}
61
62
58.3k
rtl::Reference< Node > Node::getMember(OUString const & name) {
63
58.3k
    NodeMap const & members = getMembers();
64
58.3k
    NodeMap::const_iterator i(members.find(name));
65
58.3k
    return i == members.end() ? rtl::Reference< Node >() : i->second;
66
58.3k
}
67
68
bool Node::CreateStaticizedNodes = false;
69
70
void Node::setStaticizedFlag(bool staticized)
71
24
{
72
24
    CreateStaticizedNodes = staticized;
73
24
}
74
75
12
Node::Node(int layer): layer_(layer), finalized_(Data::NO_LAYER)
76
12
{
77
12
    if (CreateStaticizedNodes)
78
0
        staticize();
79
12
}
80
81
Node::Node(const Node & other):
82
0
    SimpleReferenceObject(), layer_(other.layer_), finalized_(other.finalized_)
83
0
{
84
0
    if (CreateStaticizedNodes)
85
0
        staticize();
86
0
}
87
88
12
Node::~Node() {}
89
90
}
91
92
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */