Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / Dtd.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: Dtd.C /main/1 1996/07/29 16:49:10 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifdef __GNUG__
28 #pragma implementation
29 #endif
30 #include "splib.h"
31 #include "Dtd.h"
32 #include "Syntax.h"
33
34 #ifdef SP_NAMESPACE
35 namespace SP_NAMESPACE {
36 #endif
37
38 Dtd::Dtd(const StringC &name, Boolean isBase)
39 : name_(new StringResource<Char>(name)),
40   nCurrentAttribute_(0),
41   nElementDefinition_(0),
42   nAttributeDefinitionList_(0),
43   isBase_(isBase)
44 {
45   documentElementType_ = new ElementType(name, nElementTypeIndex());
46   insertElementType(documentElementType_);
47 }
48
49 Boolean Dtd::shortrefIndex(const StringC &str, const Syntax &syntax,
50                            size_t &index)
51 {
52   const int *indexP = shortrefTable_.lookup(str);
53   if (indexP) {
54     index = *indexP;
55     return 1;
56   }
57   if (!syntax.isValidShortref(str))
58     return 0;
59   shortrefTable_.insert(str, int(shortrefs_.size()));
60   index = shortrefs_.size();
61   shortrefs_.push_back(str);
62   return 1;
63 }
64
65 void Dtd::addNeededShortref(const StringC &str)
66 {
67   if (!shortrefTable_.lookup(str)) {
68     shortrefTable_.insert(str, shortrefs_.size());
69     shortrefs_.push_back(str);
70   }
71 }
72
73 void Dtd::setDefaultEntity(const Ptr<Entity> &entity,
74                            ParserState &parser)
75 {
76   defaultEntity_ = entity;
77   
78   // If the new default entity was defined in a DTD, then
79   // any defaulted entities must have come from an LPD
80   // on the first pass, in which case we shouldn't replace them.
81   // Otherwise we need to replace all the defaulted entities.
82   if (entity->declInActiveLpd()) {
83     NamedResourceTable<Entity> tem;
84     {
85       EntityIter iter(generalEntityTable_);
86       for (;;) {
87         Ptr<Entity> old(iter.next());
88         if (old.isNull())
89           break;
90         if (old->defaulted()) {
91           Ptr<Entity> e(defaultEntity_->copy());
92           e->setDefaulted();
93           e->setName(old->name());
94           e->generateSystemId(parser);
95           tem.insert(e);
96         }
97       }
98     }
99     {
100       EntityIter iter(tem);
101       for (;;) {
102         Ptr<Entity> e(iter.next());
103         if (e.isNull())
104           break;
105         generalEntityTable_.insert(e, 1);
106       }
107     }
108   }
109 }
110
111 #ifdef SP_NAMESPACE
112 }
113 #endif