Link with C++ linker
[oweals/cde.git] / cde / programs / nsgmls / RewindStorageObject.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: RewindStorageObject.C /main/1 1996/07/29 17:02:59 cde-hp $ */
24 // Copyright (c) 1994, 1995 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifdef __GNUG__
28 #pragma implementation
29 #endif
30
31 #include "splib.h"
32 #include "RewindStorageObject.h"
33 #include "macros.h"
34
35 #ifdef SP_NAMESPACE
36 namespace SP_NAMESPACE {
37 #endif
38
39 RewindStorageObject::RewindStorageObject(Boolean mayRewind, Boolean canSeek)
40 : mayRewind_(mayRewind), canSeek_(canSeek),
41   savingBytes_(mayRewind && canSeek), readingSaved_(0)
42 {
43 }
44
45 Boolean RewindStorageObject::rewind(Messenger &mgr)
46 {
47   ASSERT(mayRewind_);
48   if (canSeek_)
49     return seekToStart(mgr);
50   else {
51     readingSaved_ = 1;
52     nBytesRead_ = 0;
53     return 1;
54   }
55 }
56
57 void RewindStorageObject::unread(const char *s, size_t n)
58 {
59   savedBytes_.append(s, n);
60   if (!readingSaved_) {
61     readingSaved_ = 1;
62     nBytesRead_ = 0;
63   }
64 }
65
66 void RewindStorageObject::willNotRewind()
67 {
68   mayRewind_ = 0;
69   savingBytes_ = 0;
70   if (!readingSaved_) {
71     // Ensure that memory is released now.
72     String<char> tem;
73     tem.swap(savedBytes_);
74   }
75 }
76
77 Boolean RewindStorageObject::readSaved(char *buf, size_t bufSize,
78                                        size_t &nread)
79 {
80   if (!readingSaved_)
81     return 0;
82   if (nBytesRead_ >= savedBytes_.size()) {
83     if (!mayRewind_) {
84       // Ensure that memory is released now.
85       String<char> tem;
86       tem.swap(savedBytes_);
87     }
88     readingSaved_ = 0;
89     return 0;
90   }
91   nread = savedBytes_.size() - nBytesRead_;
92   if (nread > bufSize)
93     nread = bufSize;
94   memcpy(buf, savedBytes_.data() + nBytesRead_, nread);
95   nBytesRead_ += nread;
96   return 1;
97 }
98
99 #ifdef SP_NAMESPACE
100 }
101 #endif