summaryrefslogtreecommitdiff
path: root/cad/plugins/NanoVision-1/src/Plugins/NanorexMMPImportExport/RagelIstreamPtr.h
blob: cd248c5206b9eb7739e365cff0bda61039ea021d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#ifndef __RAGELISTREAMPTR_H__
#define __RAGELISTREAMPTR_H__

#include <iostream>
#include <cassert>

class RagelIstreamPtr {
public:
	RagelIstreamPtr() : istream_ref(NULL), pos(0) {}
    
    RagelIstreamPtr(std::istream& instream,
                    std::streamoff off=0,
                    std::ios::seekdir dir=std::ios::beg);
    
    ~RagelIstreamPtr() {}
    
    RagelIstreamPtr& operator = (std::istream *istreamPtr);
    
    RagelIstreamPtr& operator ++ (void);
    RagelIstreamPtr operator ++ (int);
    RagelIstreamPtr& operator -- (void);
    RagelIstreamPtr operator -- (int);
    RagelIstreamPtr& operator += (int n);
    RagelIstreamPtr& operator -= (int n);
	
	std::streamoff operator - (RagelIstreamPtr const& istreamPtr);
    
    char operator * (void);
    
protected:
    std::istream *istream_ref;
    std::streampos pos;

    friend bool operator == (RagelIstreamPtr const& r1,
                             RagelIstreamPtr const& r2);
	
    friend RagelIstreamPtr operator + (RagelIstreamPtr const& p, int const& n);
    friend RagelIstreamPtr operator - (RagelIstreamPtr const& p, int const& n);
};


namespace std {

template<>
	struct iterator_traits<RagelIstreamPtr>
{
	typedef random_access_iterator_tag iterator_category;
	typedef char                        value_type;
	typedef std::streamoff              difference_type;
	// typedef RagelIstreamPtr             pointer;
	//typedef char&                        reference;
};

}

inline
bool operator == (RagelIstreamPtr const& r1, RagelIstreamPtr const& r2)
{
    bool istream_same = (r1.istream_ref == r2.istream_ref);
    bool pos_same = (r1.pos == r2.pos);
    return (istream_same && pos_same);
}


inline
bool operator != (RagelIstreamPtr const& r1, RagelIstreamPtr const& r2)
{
    return !(r1 == r2);
}


inline
RagelIstreamPtr operator + (RagelIstreamPtr const& p, int const& n)
{
    
    return RagelIstreamPtr(*(p.istream_ref), p.pos+(std::streamoff)n);
}


inline
RagelIstreamPtr operator - (RagelIstreamPtr const& p, int const& n)
{
    
    return RagelIstreamPtr(*(p.istream_ref), p.pos-(std::streamoff)n);
}



inline RagelIstreamPtr::RagelIstreamPtr(std::istream& instream,
                                        std::streamoff off,
                                        std::ios::seekdir dir)
: istream_ref(&instream), pos(0)
{
    // save current position
    std::streamoff currPos = istream_ref->tellg();
    // move to given position and test
    istream_ref->seekg(off, dir);
    pos = istream_ref->tellg();
    // restore saved position
    istream_ref->seekg(currPos, std::ios::beg);
}


#if 0
inline RagelIstreamPtr::RagelIstreamPtr(std::istream *istreamPtr,
                                        std::streampos istreamPos)
: istream_ref(istreamPtr), pos(istreamPos)
{
    std::streamoff delta = pos - istreamPtr->tellg();
    istream_ref->seekg(delta, std::ios::cur);
}
#endif


inline RagelIstreamPtr&
RagelIstreamPtr::operator = (std::istream *istreamPtr)
{
    istream_ref = istreamPtr;
    pos = std::ios::beg;
    return *this;
}


inline RagelIstreamPtr& RagelIstreamPtr::operator ++ (void)
{
    // istream_ref->seekg(1, std::ios::cur);
    // pos = istream_ref->tellg(); // to trap errors
    pos += 1;
    return *this;
}


inline RagelIstreamPtr RagelIstreamPtr::operator ++ (int)
{
    RagelIstreamPtr retval = *this;
    // istream_ref->seekg(1, std::ios::cur);
    // pos = istream_ref->tellg(); // to trap errors
    pos += 1;
    return retval;
}


inline RagelIstreamPtr& RagelIstreamPtr::operator -- (void)
{
//     istream_ref->seekg(-1, std::ios::cur);
//     pos = istream_ref->tellg(); // to trap errors
    pos -= 1;
    return *this;
}


inline RagelIstreamPtr RagelIstreamPtr::operator -- (int)
{
     RagelIstreamPtr retval = *this;
//     istream_ref->seekg(-1, std::ios::cur);
//     pos = istream_ref->tellg(); // to trap errors
    pos -= 1;
    return retval;
}


inline RagelIstreamPtr& RagelIstreamPtr::operator += (int n)
{
//     istream_ref->seekg((std::streampos) n, std::ios::cur);
//     pos = istream_ref->tellg(); // to trap errors
    pos += n;
    return *this;
}


inline RagelIstreamPtr& RagelIstreamPtr::operator -= (int n)
{
//     istream_ref->seekg((std::streampos) (-n), std::ios::cur);
//     pos = istream_ref->tellg(); // to trap errors
    pos -= n;
    return *this;
}


// inline RagelIstreamPtr RagelIstreamPtr::operator + (int n) const
// {
//     return RagelIstreamPtr(istream_ref, pos+n);
// }
// 
// 
// inline RagelIstreamPtr RagelIstreamPtr::operator - (int n) const
// {
//     return RagelIstreamPtr(istream_ref, pos-n);
// }


inline
std::streamoff RagelIstreamPtr::operator - (RagelIstreamPtr const& istreamPtr)
{
	assert(istream_ref == istreamPtr.istream_ref);
	std::streamoff diff = pos - istreamPtr.pos;
	return diff;
}


inline char RagelIstreamPtr::operator * (void)
{
    istream_ref->seekg(pos - istream_ref->tellg(), std::ios::cur);
    return istream_ref->peek();
}


#endif // __RAGELISTREAMPTR_H__