File: Wm5BufferIO.cpp

package info (click to toggle)
libwildmagic 5.17%2Bcleaned1-7
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 90,124 kB
  • sloc: cpp: 215,940; csh: 637; sh: 91; makefile: 40
file content (231 lines) | stat: -rw-r--r-- 6,848 bytes parent folder | download | duplicates (3)
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// Geometric Tools, LLC
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.0 (2010/01/01)

#include "Wm5CorePCH.h"
#include "Wm5BufferIO.h"
#include "Wm5Endian.h"
#include "Wm5Memory.h"
using namespace Wm5;

//----------------------------------------------------------------------------
BufferIO::BufferIO ()
    :
    mBuffer(0),
    mNumBytesTotal(0),
    mNumBytesProcessed(0),
    mMode(BM_NONE)
{
}
//----------------------------------------------------------------------------
BufferIO::BufferIO (int numBytesTotal, char* buffer, int mode)
    :
    mBuffer(0),
    mNumBytesTotal(0),
    mNumBytesProcessed(0),
    mMode(BM_NONE)
{
    Open(numBytesTotal, buffer, mode);
}
//----------------------------------------------------------------------------
BufferIO::~BufferIO ()
{
    if (mMode != BM_NONE)
    {
        Close();
    }
}
//----------------------------------------------------------------------------
bool BufferIO::Open (int numBytesTotal, char* buffer, int mode)
{
    if (mMode == BM_NONE)
    {
        if (buffer && numBytesTotal > 0)
        {
            mBuffer = buffer;
            mNumBytesTotal = numBytesTotal;
            mNumBytesProcessed = 0;
            mMode = mode;
            return true;
        }

        assertion(false, "Failed to open buffer\n");
    }
    else
    {
        assertion(false, "Buffer %s is already open\n");
    }

    return false;
}
//----------------------------------------------------------------------------
bool BufferIO::Close ()
{
    mBuffer = 0;
    mNumBytesTotal = 0;
    mNumBytesProcessed = 0;
    mMode = BM_NONE;
    return false;
}
//----------------------------------------------------------------------------
bool BufferIO::IncrementNumBytesProcessed (int numBytes)
{
#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    if (numBytes <= 0)
    {
        assertion(false, "Increment must be positive\n");
        return false;
    }
#endif

    int nextBytesProcessed = mNumBytesProcessed + numBytes;
    if (nextBytesProcessed <= mNumBytesTotal)
    {
        mNumBytesProcessed = nextBytesProcessed;
        return true;
    }

#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    assertion(false, "Increment exceeds buffer size\n");
#endif

    mNumBytesProcessed = mNumBytesTotal;
    return false;
}
//----------------------------------------------------------------------------
bool BufferIO::Read (size_t itemSize, void* datum)
{
#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    if ((mMode != BM_READ && mMode != BM_READ_AND_SWAP) || !datum
    ||  (itemSize != 1 && itemSize != 2 && itemSize != 4 && itemSize != 8))
    {
        assertion(false, "Invalid BufferIO::Read\n");
        return false;
    }
#endif

    int nextBytesProcessed = mNumBytesProcessed + (int)itemSize;
    if (nextBytesProcessed <= mNumBytesTotal)
    {
        char* source = mBuffer + mNumBytesProcessed;
        mNumBytesProcessed = nextBytesProcessed;
        memcpy(datum, source, itemSize);
        if (mMode == BM_READ_AND_SWAP && itemSize > 1)
        {
            Endian::Swap(itemSize, datum);
        }
        return true;
    }

#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    assertion(false, "Invalid BufferIO::Read\n");
#endif

    mNumBytesProcessed = mNumBytesTotal;
    return false;
}
//----------------------------------------------------------------------------
bool BufferIO::Read (size_t itemSize, int numItems, void* data)
{
#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    if ((mMode != BM_READ && mMode != BM_READ_AND_SWAP) || numItems <= 0
    ||  !data
    ||  (itemSize != 1 && itemSize != 2 && itemSize != 4 && itemSize != 8))
    {
        assertion(false, "Invalid BufferIO::Read\n");
        return false;
    }
#endif

    int numToCopy = ((int)itemSize)*numItems;
    int nextBytesProcessed = mNumBytesProcessed + numToCopy;
    if (nextBytesProcessed <= mNumBytesTotal)
    {
        char* source = mBuffer + mNumBytesProcessed;
        mNumBytesProcessed = nextBytesProcessed;
        memcpy(data, source, (size_t)numToCopy);
        if (mMode == BM_READ_AND_SWAP && itemSize > 1)
        {
            Endian::Swap(itemSize, numItems, data);
        }
        return true;
    }

#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    assertion(false, "Invalid BufferIO::Read\n");
#endif

    mNumBytesProcessed = mNumBytesTotal;
    return false;
}
//----------------------------------------------------------------------------
bool BufferIO::Write (size_t itemSize, const void* datum)
{
#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    if ((mMode != BM_WRITE && mMode != BM_WRITE_AND_SWAP) || !datum
    ||  (itemSize != 1 && itemSize != 2 && itemSize != 4 && itemSize != 8))
    {
        assertion(false, "Invalid BufferIO::Write\n");
        return false;
    }
#endif

    int nextBytesProcessed = mNumBytesProcessed + (int)itemSize;
    if (nextBytesProcessed <= mNumBytesTotal)
    {
        char* target = mBuffer + mNumBytesProcessed;
        mNumBytesProcessed = nextBytesProcessed;
        memcpy(target, datum, itemSize);
        if (mMode == BM_WRITE_AND_SWAP && itemSize > 1)
        {
            Endian::Swap(itemSize, target);
        }
        return true;
    }

#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    assertion(false, "Invalid BufferIO::Write\n");
#endif

    mNumBytesProcessed = mNumBytesTotal;
    return false;
}
//----------------------------------------------------------------------------
bool BufferIO::Write (size_t itemSize, int numItems, const void* data)
{
#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    if ((mMode != BM_WRITE && mMode != BM_WRITE_AND_SWAP) || numItems <= 0
    ||  !data
    ||  (itemSize != 1 && itemSize != 2 && itemSize != 4 && itemSize != 8))
    {
        assertion(false, "Invalid BufferIO::Write\n");
        return false;
    }
#endif

    int numToCopy = ((int)itemSize)*numItems;
    int nextBytesProcessed = mNumBytesProcessed + numToCopy;
    if (nextBytesProcessed <= mNumBytesTotal)
    {
        char* target = mBuffer + mNumBytesProcessed;
        mNumBytesProcessed = nextBytesProcessed;
        memcpy(target, data, (size_t)numToCopy);
        if (mMode == BM_WRITE_AND_SWAP && itemSize > 1)
        {
            Endian::Swap(itemSize, numItems, target);
        }
        return true;
    }

#ifdef WM5_BUFFERIO_VALIDATE_OPERATION
    assertion(false, "Invalid BufferIO::Write\n");
#endif

    mNumBytesProcessed = mNumBytesTotal;
    return false;
}
//----------------------------------------------------------------------------