/* * CDE - Common Desktop Environment * * Copyright (c) 1993-2012, The Open Group. All rights reserved. * * These libraries and programs are free software; you can * redistribute them and/or modify them under the terms of the GNU * Lesser General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) * any later version. * * These libraries and programs are distributed in the hope that * they will be useful, but WITHOUT ANY WARRANTY; without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public * License along with these libraries and programs; if not, write * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth * Floor, Boston, MA 02110-1301 USA */ /* $XConsortium: Lpd.C /main/1 1996/07/29 16:56:26 cde-hp $ */ // Copyright (c) 1994 James Clark // See the file COPYING for copying permission. #ifdef __GNUG__ #pragma implementation #endif #include "splib.h" #include "Lpd.h" #ifdef SP_NAMESPACE namespace SP_NAMESPACE { #endif Lpd::Lpd(const StringC &name, Type type, const Location &location, const Ptr &sourceDtd) : name_(new StringResource(name)), type_(type), location_(location), active_(0), sourceDtd_(sourceDtd) { } Lpd::~Lpd() { } SimpleLpd::SimpleLpd(const StringC &name, const Location &location, const Ptr &sourceDtd) : Lpd(name, simpleLink, location, sourceDtd) { } ResultElementSpec::ResultElementSpec() : elementType(0) { } void ResultElementSpec::swap(ResultElementSpec &to) { attributeList.swap(to.attributeList); { const ElementType *tem = to.elementType; to.elementType = elementType; elementType = tem; } } SourceLinkRule::SourceLinkRule() : uselink_(0), postlink_(0), postlinkRestore_(0) { } void SourceLinkRule::swap(SourceLinkRule &to) { linkAttributes_.swap(to.linkAttributes_); resultElementSpec_.swap(to.resultElementSpec_); { const LinkSet *tem = to.uselink_; to.uselink_ = uselink_; uselink_ = tem; } { const LinkSet *tem = to.postlink_; to.postlink_ = postlink_; postlink_ = tem; } { Boolean tem = to.postlinkRestore_; to.postlinkRestore_ = postlinkRestore_; postlinkRestore_ = tem; } } SourceLinkRuleResource::SourceLinkRuleResource() { } LinkSet::LinkSet(const StringC &name, const Dtd *dtd) : Named(name), defined_(0), linkRules_(dtd ? dtd->nElementTypeIndex() : 0) { } void LinkSet::addLinkRule(const ElementType *element, const ConstPtr &rule) { linkRules_[element->index()].push_back(rule); } void LinkSet::addImplied(const ElementType *element, AttributeList &attributes) { impliedSourceLinkRules_.resize(impliedSourceLinkRules_.size() + 1); ResultElementSpec &result = impliedSourceLinkRules_.back(); result.elementType = element; result.attributeList = attributes; } Boolean LinkSet::impliedResultAttributes(const ElementType *resultType, const AttributeList *&attributes) { for (size_t i = 0; i < impliedSourceLinkRules_.size(); i++) if (impliedSourceLinkRules_[i].elementType == resultType) { attributes = &impliedSourceLinkRules_[i].attributeList; return 1; } return 0; } size_t LinkSet::nLinkRules(const ElementType *e) const { if (e->index() >= linkRules_.size()) return 0; return linkRules_[e->index()].size(); } IdLinkRule::IdLinkRule() { } Boolean IdLinkRule::isAssociatedWith(const ElementType *e) const { for (size_t i = 0; i < assocElementTypes_.size(); i++) if (assocElementTypes_[i] == e) return 1; return 0; } void IdLinkRule::setAssocElementTypes(Vector &v) { v.swap(assocElementTypes_); } void IdLinkRule::swap(IdLinkRule &to) { SourceLinkRule::swap(to); assocElementTypes_.swap(to.assocElementTypes_); } IdLinkRuleGroup::IdLinkRuleGroup(const StringC &name) : Named(name) { } void IdLinkRuleGroup::addLinkRule(IdLinkRule &rule) { linkRules_.resize(linkRules_.size() + 1); rule.swap(linkRules_.back()); } ComplexLpd::ComplexLpd(const StringC &name, Type type, const Location &location, const Syntax &syntax, const Ptr &sourceDtd, const Ptr &resultDtd) : Lpd(name, type, location, sourceDtd), resultDtd_(resultDtd), hadIdLinkSet_(0), nAttributeDefinitionList_(0), initialLinkSet_(syntax.rniReservedName(Syntax::rINITIAL), sourceDtd.pointer()), emptyLinkSet_(syntax.rniReservedName(Syntax::rEMPTY), sourceDtd.pointer()), linkAttributeDefs_(sourceDtd.isNull() ? 0 : sourceDtd->nElementTypeIndex()) { } IdLinkRuleGroup *ComplexLpd::lookupCreateIdLink(const StringC &id) { IdLinkRuleGroup *group = idLinkTable_.lookup(id); if (!group) { group = new IdLinkRuleGroup(id); idLinkTable_.insert(group); } return group; } #ifdef SP_NAMESPACE } #endif