bump product version to 5.0.4.1
[LibreOffice.git] / configmgr / source / setnode.cxx
blobad259cc9fd9d1d2df347029b304ff82747c49ca7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 <sal/config.h>
22 #include <algorithm>
23 #include <functional>
24 #include <vector>
26 #include <rtl/ref.hxx>
27 #include <rtl/ustring.hxx>
29 #include "data.hxx"
30 #include "node.hxx"
31 #include "nodemap.hxx"
32 #include "setnode.hxx"
34 namespace configmgr {
36 namespace {
38 // Work around some compilers' failure to accept
39 // std::binder1st(std::ptr_fun(&Data::equalTemplateNames), ...):
40 class EqualTemplateNames:
41 public std::unary_function< OUString const &, bool >
43 public:
44 inline explicit EqualTemplateNames(OUString const & shortName):
45 shortName_(shortName) {}
47 inline bool operator ()(OUString const & longName) const
48 { return Data::equalTemplateNames(shortName_, longName); }
50 private:
51 OUString const & shortName_;
56 SetNode::SetNode(
57 int layer, OUString const & defaultTemplateName,
58 OUString const & templateName):
59 Node(layer), defaultTemplateName_(defaultTemplateName),
60 templateName_(templateName), mandatory_(Data::NO_LAYER)
63 rtl::Reference< Node > SetNode::clone(bool keepTemplateName) const {
64 return new SetNode(*this, keepTemplateName);
67 NodeMap & SetNode::getMembers() {
68 return members_;
71 OUString SetNode::getTemplateName() const {
72 return templateName_;
75 void SetNode::setMandatory(int layer) {
76 mandatory_ = layer;
79 int SetNode::getMandatory() const {
80 return mandatory_;
85 bool SetNode::isValidTemplate(OUString const & templateName) const {
86 return Data::equalTemplateNames(templateName, defaultTemplateName_) ||
87 (std::find_if(
88 additionalTemplateNames_.begin(),
89 additionalTemplateNames_.end(), EqualTemplateNames(templateName)) !=
90 additionalTemplateNames_.end());
93 SetNode::SetNode(SetNode const & other, bool keepTemplateName):
94 Node(other), defaultTemplateName_(other.defaultTemplateName_),
95 additionalTemplateNames_(other.additionalTemplateNames_),
96 mandatory_(other.mandatory_)
98 other.members_.cloneInto(&members_);
99 if (keepTemplateName) {
100 templateName_ = other.templateName_;
104 SetNode::~SetNode() {}
106 Node::Kind SetNode::kind() const {
107 return KIND_SET;
110 void SetNode::clear() {
111 members_.clear();
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */