Coverage Report

Created: 2025-11-16 09:57

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/configmgr/source/setnode.cxx
Line
Count
Source
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 <algorithm>
23
24
#include <rtl/ref.hxx>
25
#include <rtl/ustring.hxx>
26
#include <utility>
27
28
#include "data.hxx"
29
#include "node.hxx"
30
#include "nodemap.hxx"
31
#include "setnode.hxx"
32
33
namespace configmgr {
34
35
SetNode::SetNode(
36
    int layer, OUString defaultTemplateName,
37
    OUString templateName):
38
0
    Node(layer), defaultTemplateName_(std::move(defaultTemplateName)),
39
0
    templateName_(std::move(templateName)), mandatory_(Data::NO_LAYER)
40
0
{}
41
42
0
rtl::Reference< Node > SetNode::clone(bool keepTemplateName) const {
43
0
    return new SetNode(*this, keepTemplateName);
44
0
}
45
46
0
NodeMap & SetNode::getMembers() {
47
0
    return members_;
48
0
}
49
50
0
OUString SetNode::getTemplateName() const {
51
0
    return templateName_;
52
0
}
53
54
0
void SetNode::setMandatory(int layer) {
55
0
    mandatory_ = layer;
56
0
}
57
58
0
int SetNode::getMandatory() const {
59
0
    return mandatory_;
60
0
}
61
62
63
0
bool SetNode::isValidTemplate(OUString const & templateName) const {
64
0
    return Data::equalTemplateNames(templateName, defaultTemplateName_) ||
65
0
        std::any_of(
66
0
            additionalTemplateNames_.begin(),
67
0
            additionalTemplateNames_.end(),
68
0
            [&templateName](OUString const & longName) { return Data::equalTemplateNames(templateName, longName); } );
69
0
}
70
71
SetNode::SetNode(SetNode const & other, bool keepTemplateName):
72
0
    Node(other), defaultTemplateName_(other.defaultTemplateName_),
73
0
    additionalTemplateNames_(other.additionalTemplateNames_),
74
0
    mandatory_(other.mandatory_)
75
0
{
76
0
    other.members_.cloneInto(&members_);
77
0
    if (keepTemplateName) {
78
0
        templateName_ = other.templateName_;
79
0
    }
80
0
}
81
82
0
SetNode::~SetNode() {}
83
84
0
Node::Kind SetNode::kind() const {
85
0
    return KIND_SET;
86
0
}
87
88
}
89
90
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */