Link with C++ linker
[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 {
43 }
44
45 void InputSource::reset(const Char *start,
46                         const Char *end)
47 {
48   origin_ = origin_->copy();
49   start_ = start;
50   end_ = end;
51   cur_ = start_;
52   startLocation_ = Location(origin_.pointer(), 0);
53   multicode_ = 0;
54   scanSuppress_ = 0;
55   markupScanTable_.clear();
56 }
57
58 InputSource::~InputSource()
59 {
60 }
61
62 void InputSource::advanceStartMulticode(const Char *to)
63 {
64   while (start_ < to) {
65     switch (markupScanTable_[*start_]) {
66     case MarkupScan::normal:
67       break;
68     case MarkupScan::in:
69       scanSuppress_ = 0;
70       break;
71     case MarkupScan::out:
72       if (!scanSuppress()) {
73         scanSuppress_ = 1;
74         scanSuppressSingle_ = 0;
75       }
76       break;
77     case MarkupScan::suppress:
78       // what's the effect of MSSCHAR followed by MSSCHAR
79       if (!scanSuppress()) {
80         scanSuppress_ = 1;
81         scanSuppressSingle_ = 1;
82         scanSuppressIndex_ = startLocation_.index() + 1;
83       }
84       break;
85     }
86     start_++;
87     startLocation_ += 1;
88   }
89 }
90
91 void InputSource::willNotRewind()
92 {
93 }
94
95
96 #ifdef SP_NAMESPACE
97 }
98 #endif