nsgmls: resolve coverity warnings related to uninitialed members in C++ classes
[oweals/cde.git] / cde / programs / nsgmls / InputSource.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: InputSource.C /main/1 1996/07/29 16:55:11 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 "InputSource.h"
32 #include "MarkupScan.h"
33
34 #ifdef SP_NAMESPACE
35 namespace SP_NAMESPACE {
36 #endif
37
38 InputSource::InputSource(InputSourceOrigin *origin, const Char *start,
39                          const Char *end)
40 : origin_(origin), start_(start), end_(end), cur_(start), accessError_(0),
41   startLocation_(origin, 0), multicode_(0), scanSuppress_(0),
42   scanSuppressSingle_(false), scanSuppressIndex_(0)
43 {
44 }
45
46 void InputSource::reset(const Char *start,
47                         const Char *end)
48 {
49   origin_ = origin_->copy();
50   start_ = start;
51   end_ = end;
52   cur_ = start_;
53   startLocation_ = Location(origin_.pointer(), 0);
54   multicode_ = 0;
55   scanSuppress_ = 0;
56   markupScanTable_.clear();
57 }
58
59 InputSource::~InputSource()
60 {
61 }
62
63 void InputSource::advanceStartMulticode(const Char *to)
64 {
65   while (start_ < to) {
66     switch (markupScanTable_[*start_]) {
67     case MarkupScan::normal:
68       break;
69     case MarkupScan::in:
70       scanSuppress_ = 0;
71       break;
72     case MarkupScan::out:
73       if (!scanSuppress()) {
74         scanSuppress_ = 1;
75         scanSuppressSingle_ = 0;
76       }
77       break;
78     case MarkupScan::suppress:
79       // what's the effect of MSSCHAR followed by MSSCHAR
80       if (!scanSuppress()) {
81         scanSuppress_ = 1;
82         scanSuppressSingle_ = 1;
83         scanSuppressIndex_ = startLocation_.index() + 1;
84       }
85       break;
86     }
87     start_++;
88     startLocation_ += 1;
89   }
90 }
91
92 void InputSource::willNotRewind()
93 {
94 }
95
96
97 #ifdef SP_NAMESPACE
98 }
99 #endif