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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
///////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2004, Industrial Light & Magic, a division of Lucas
// Digital Ltd. LLC
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Industrial Light & Magic nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
///////////////////////////////////////////////////////////////////////////
#include <tmpDir.h>
#include <ImfRgbaFile.h>
#include <ImfTiledRgbaFile.h>
#include <ImfStdIO.h>
#include <ImfArray.h>
#include <stdio.h>
#include <assert.h>
#include "Iex.h"
#include <errno.h>
using namespace Imf;
using namespace Imath;
using namespace std;
namespace {
void
fillPixels1 (Array2D<Rgba> &pixels, int w, int h)
{
for (int y = 0; y < h; ++y)
{
for (int x = 0; x < w; ++x)
{
Rgba &p = pixels[y][x];
p.r = (x & 1);
p.g = ((x + y) & 1);
p.b = (y & 1);
p.a = (p.r + p.b + p.g) / 3.0;
}
}
}
void
fillPixels2 (Array2D<Rgba> &pixels, int w, int h)
{
for (int y = 0; y < h; ++y)
{
for (int x = 0; x < w; ++x)
{
Rgba &p = pixels[y][x];
p.r = (x & 2);
p.g = ((x + y) & 2);
p.b = (y & 2);
p.a = (p.r + p.b + p.g) / 3.0;
}
}
}
//
// class MMIFStream -- a memory-mapped implementation of
// class IStream based on class std::ifstream
//
class MMIFStream: public IStream
{
public:
//-------------------------------------------------------
// A constructor that opens the file with the given name.
// It reads the whole file into an internal buffer and
// then immediately closes the file.
//-------------------------------------------------------
MMIFStream (const char fileName[]);
virtual ~MMIFStream ();
virtual bool isMemoryMapped () const {return true;}
virtual bool read (char c[/*n*/], int n);
virtual char* readMemoryMapped (int n);
virtual Int64 tellg () {return _pos;}
virtual void seekg (Int64 pos) {_pos = pos;}
virtual void clear () {}
private:
char* _buffer;
Int64 _length;
Int64 _pos;
};
MMIFStream::MMIFStream (const char fileName[]):
IStream (fileName),
_buffer (0),
_length (0),
_pos (0)
{
std::ifstream ifs (fileName, ios_base::binary);
//
// Get length of file
//
ifs.seekg (0, ios::end);
_length = ifs.tellg();
ifs.seekg (0, ios::beg);
//
// Allocate memory
//
_buffer = new char [_length];
//
// Read the entire file
//
ifs.read (_buffer, _length);
ifs.close();
}
MMIFStream::~MMIFStream ()
{
delete [] _buffer;
}
bool
MMIFStream::read (char c[/*n*/], int n)
{
if ((_pos < 0 || _pos >= _length) && n != 0)
throw Iex::InputExc ("Unexpected end of file.");
Int64 n2 = n;
bool retVal = true;
if (_length - _pos <= n2)
{
n2 = _length - _pos;
retVal = false;
}
memcpy (c, &(_buffer[_pos]), n2);
_pos += n2;
return retVal;
}
char*
MMIFStream::readMemoryMapped (int n)
{
if (_pos < 0 || _pos >= _length)
throw Iex::InputExc ("Unexpected end of file.");
if (_pos + n > _length)
throw Iex::InputExc ("Reading past end of file.");
char* retVal = &(_buffer[_pos]);
_pos += n;
return retVal;
}
void
writeReadScanLines (const char fileName[],
int width,
int height,
const Array2D<Rgba> &p1)
{
//
// Save a scanline-based RGBA image, but instead of
// letting the RgbaOutputFile object open the file,
// make the RgbaOutputFile object use an existing
// StdOFStream. Read the image back, using an
// existing StdIFStream, and compare the pixels
// with the original data. Then read the image
// back a second time using a memory-mapped
// MMIFStream (see above).
//
cout << "scan-line based file:" << endl;
Header header (width, height);
{
cout << "writing";
remove (fileName);
std::ofstream os (fileName, ios_base::binary);
StdOFStream ofs (os, fileName);
RgbaOutputFile out (ofs, header, WRITE_RGBA);
out.setFrameBuffer (&p1[0][0], 1, width);
out.writePixels (height);
}
{
cout << ", reading";
std::ifstream is (fileName, ios_base::binary);
StdIFStream ifs (is, fileName);
RgbaInputFile in (ifs);
const Box2i &dw = in.dataWindow();
int w = dw.max.x - dw.min.x + 1;
int h = dw.max.y - dw.min.y + 1;
int dx = dw.min.x;
int dy = dw.min.y;
Array2D<Rgba> p2 (h, w);
in.setFrameBuffer (&p2[-dy][-dx], 1, w);
in.readPixels (dw.min.y, dw.max.y);
cout << ", comparing";
for (int y = 0; y < h; ++y)
{
for (int x = 0; x < w; ++x)
{
assert (p2[y][x].r == p1[y][x].r);
assert (p2[y][x].g == p1[y][x].g);
assert (p2[y][x].b == p1[y][x].b);
assert (p2[y][x].a == p1[y][x].a);
}
}
}
{
cout << ", reading (memory-mapped)";
MMIFStream ifs (fileName);
RgbaInputFile in (ifs);
const Box2i &dw = in.dataWindow();
int w = dw.max.x - dw.min.x + 1;
int h = dw.max.y - dw.min.y + 1;
int dx = dw.min.x;
int dy = dw.min.y;
Array2D<Rgba> p2 (h, w);
in.setFrameBuffer (&p2[-dy][-dx], 1, w);
in.readPixels (dw.min.y, dw.max.y);
cout << ", comparing";
for (int y = 0; y < h; ++y)
{
for (int x = 0; x < w; ++x)
{
assert (p2[y][x].r == p1[y][x].r);
assert (p2[y][x].g == p1[y][x].g);
assert (p2[y][x].b == p1[y][x].b);
assert (p2[y][x].a == p1[y][x].a);
}
}
}
cout << endl;
remove (fileName);
}
void
writeReadTiles (const char fileName[],
int width,
int height,
const Array2D<Rgba> &p1)
{
//
// Save a tiled RGBA image, but instead of letting
// the TiledRgbaOutputFile object open the file, make
// it use an existing StdOFStream. Read the image back,
// using an existing StdIFStream, and compare the pixels
// with the original data. Then read the image back a
// second time using a memory-mapped MMIFStream (see above).
//
cout << "tiled file:" << endl;
Header header (width, height);
{
cout << "writing";
remove (fileName);
std::ofstream os (fileName, ios_base::binary);
StdOFStream ofs (os, fileName);
TiledRgbaOutputFile out (ofs, header, WRITE_RGBA, 20, 20, ONE_LEVEL);
out.setFrameBuffer (&p1[0][0], 1, width);
out.writeTiles (0, out.numXTiles() - 1, 0, out.numYTiles() - 1);
}
{
cout << ", reading";
std::ifstream is (fileName, ios_base::binary);
StdIFStream ifs (is, fileName);
TiledRgbaInputFile in (ifs);
const Box2i &dw = in.dataWindow();
int w = dw.max.x - dw.min.x + 1;
int h = dw.max.y - dw.min.y + 1;
int dx = dw.min.x;
int dy = dw.min.y;
Array2D<Rgba> p2 (h, w);
in.setFrameBuffer (&p2[-dy][-dx], 1, w);
in.readTiles (0, in.numXTiles() - 1, 0, in.numYTiles() - 1);
cout << ", comparing";
for (int y = 0; y < h; ++y)
{
for (int x = 0; x < w; ++x)
{
assert (p2[y][x].r == p1[y][x].r);
assert (p2[y][x].g == p1[y][x].g);
assert (p2[y][x].b == p1[y][x].b);
assert (p2[y][x].a == p1[y][x].a);
}
}
}
{
cout << ", reading (memory-mapped)";
MMIFStream ifs (fileName);
TiledRgbaInputFile in (ifs);
const Box2i &dw = in.dataWindow();
int w = dw.max.x - dw.min.x + 1;
int h = dw.max.y - dw.min.y + 1;
int dx = dw.min.x;
int dy = dw.min.y;
Array2D<Rgba> p2 (h, w);
in.setFrameBuffer (&p2[-dy][-dx], 1, w);
in.readTiles (0, in.numXTiles() - 1, 0, in.numYTiles() - 1);
cout << ", comparing";
for (int y = 0; y < h; ++y)
{
for (int x = 0; x < w; ++x)
{
assert (p2[y][x].r == p1[y][x].r);
assert (p2[y][x].g == p1[y][x].g);
assert (p2[y][x].b == p1[y][x].b);
assert (p2[y][x].a == p1[y][x].a);
}
}
}
cout << endl;
remove (fileName);
}
} // namespace
void
testExistingStreams ()
{
try
{
cout << "Testing reading and writing using existing streams" << endl;
const int W = 119;
const int H = 237;
Array2D<Rgba> p1 (H, W);
fillPixels1 (p1, W, H);
writeReadScanLines (IMF_TMP_DIR "imf_test_streams.exr", W, H, p1);
fillPixels2 (p1, W, H);
writeReadTiles (IMF_TMP_DIR "imf_test_streams2.exr", W, H, p1);
cout << "ok\n" << endl;
}
catch (const std::exception &e)
{
cerr << "ERROR -- caught exception: " << e.what() << endl;
assert (false);
}
}
|