Linux has the same value for ENOTSUP as another var, therefore protect one
[oweals/cde.git] / cde / programs / nsgmls / InternalInputSource.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: InternalInputSource.C /main/1 1996/07/29 16:55:23 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 <string.h>
32 #include "InternalInputSource.h"
33 #include "macros.h"
34
35 #ifdef SP_NAMESPACE
36 namespace SP_NAMESPACE {
37 #endif
38
39 InternalInputSource::InternalInputSource(const StringC &str,
40                                          InputSourceOrigin *origin)
41 : InputSource(origin, str.data(), str.data() + str.size()), buf_(0),
42   contents_(&str)
43 {
44 }
45
46 InternalInputSource::~InternalInputSource()
47 {
48   if (buf_)
49     delete [] buf_;
50 }
51   
52 Xchar InternalInputSource::fill(Messenger &)
53 {
54   return eE;
55 }
56
57 void InternalInputSource::pushCharRef(Char c, const NamedCharRef &ref)
58 {
59   ASSERT(cur() == start());
60   noteCharRef(startIndex() + (cur() - start()), ref);
61   if (buf_ == 0) {
62     buf_ = new Char[end() - start() + 1];
63     memcpy(buf_ + 1, cur(), (end() - start())*sizeof(Char));
64     changeBuffer(buf_ + 1, cur());
65   }
66   moveLeft();
67   *(Char *)cur() = c;
68 }
69
70 Boolean InternalInputSource::rewind(Messenger &)
71 {
72   reset(contents_->data(),
73         contents_->data() + contents_->size());
74   if (buf_) {
75     delete [] buf_;
76     buf_ = 0;
77   }
78   return 1;
79 }
80
81 #ifdef SP_NAMESPACE
82 }
83 #endif