X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=blobdiff_plain;f=dali%2Finternal%2Fimaging%2Fcommon%2Floader-bmp.cpp;h=faf35abf4716d849727b42a9d5d21badbe84202f;hp=65120f21dd2621dee551d7521f6062e681471ca8;hb=56fe2ff219abb4c0db738735d536c4dbe049bddd;hpb=44417d9561ae1ed9e7ca5a20923dcbdde302d49e diff --git a/dali/internal/imaging/common/loader-bmp.cpp b/dali/internal/imaging/common/loader-bmp.cpp index 65120f2..faf35ab 100755 --- a/dali/internal/imaging/common/loader-bmp.cpp +++ b/dali/internal/imaging/common/loader-bmp.cpp @@ -21,6 +21,10 @@ #include #include +#include + +using namespace Dali::Internal::Platform; + namespace Dali { @@ -84,7 +88,7 @@ inline bool ReadHeader(FILE* fp, T& header) const unsigned int readLength = sizeof(T); // Load the information directly into our structure - if ( fread( &header, 1, readLength, fp ) != readLength ) + if ( InternalFile::fread( &header, 1, readLength, fp ) != readLength ) { return false; } @@ -140,7 +144,7 @@ bool DecodeRGB24V5(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_RGB24V5 format\n"); return false; } - if ( fseek(fp, offset, SEEK_SET) ) + if ( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RGB24V5 data\n"); return false; @@ -157,7 +161,7 @@ bool DecodeRGB24V5(FILE *fp, { pixelsPtr = pixels + (((height-1)-yPos) * rowStride); } - if (fread(pixelsPtr, 1, rowStride, fp) != rowStride) + if (InternalFile::fread(pixelsPtr, 1, rowStride, fp) != rowStride) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -172,7 +176,7 @@ bool DecodeRGB24V5(FILE *fp, if (padding) { // move past the padding. - if( fseek(fp, padding, SEEK_CUR) ) + if( InternalFile::fseek(fp, padding, SEEK_CUR) ) { DALI_LOG_ERROR("Error moving past BMP_RGB24V5 padding\n"); } @@ -207,7 +211,7 @@ bool DecodeBF32V4(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_BITFIELDS32V4 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_BITFIELDS32V4 data\n"); return false; @@ -224,7 +228,7 @@ bool DecodeBF32V4(FILE *fp, { pixelsPtr = pixels + (((height-1)-yPos) * rowStride); } - if (fread(pixelsPtr, 1, rowStride, fp) != rowStride) + if (InternalFile::fread(pixelsPtr, 1, rowStride, fp) != rowStride) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -238,7 +242,7 @@ bool DecodeBF32V4(FILE *fp, if (padding) { // move past the padding. - if( fseek(fp, padding, SEEK_CUR) ) + if( InternalFile::fseek(fp, padding, SEEK_CUR) ) { DALI_LOG_ERROR("Error moving past BMP_BITFIELDS32V4 padding\n"); } @@ -274,7 +278,7 @@ bool DecodeBF32(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_BITFIELDS32 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_BITFIELDS32 data\n"); return false; @@ -294,7 +298,7 @@ bool DecodeBF32(FILE *fp, pixelsPtr = pixels + (((height-1)-yPos) * rowStride); } - if (fread(pixelsPtr, 1, rowStride, fp) != rowStride) + if (InternalFile::fread(pixelsPtr, 1, rowStride, fp) != rowStride) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -309,7 +313,7 @@ bool DecodeBF32(FILE *fp, if (padding) { // move past the padding. - if( fseek(fp, padding, SEEK_CUR) ) + if( InternalFile::fseek(fp, padding, SEEK_CUR) ) { DALI_LOG_ERROR("Error moving past BMP_BITFIELDS32 padding\n"); } @@ -340,7 +344,7 @@ bool DecodeBF565(FILE *fp, DALI_LOG_ERROR("Error decoding RGB565 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking RGB565 data\n"); return false; @@ -362,7 +366,7 @@ bool DecodeBF565(FILE *fp, // the data in the file is bottom up, and we store the data top down pixelsPtr = pixels + (((height - 1) - i) * rowStride); } - if(fread(pixelsPtr, 1, rowStride, fp) != rowStride) + if(InternalFile::fread(pixelsPtr, 1, rowStride, fp) != rowStride) { return false; } @@ -394,7 +398,7 @@ bool DecodeBF555(FILE *fp, return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_BITFIELDS555 data\n"); return false; @@ -410,7 +414,7 @@ bool DecodeBF555(FILE *fp, for(unsigned int j = 0; j < height; j ++) { rawPtr = &raw[0] + ( j * rawStride); - if(fread(rawPtr, 1, rawStride, fp) != rawStride) + if(InternalFile::fread(rawPtr, 1, rawStride, fp) != rawStride) { return false; } @@ -463,7 +467,7 @@ bool DecodeRGB555(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_RGB555 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RGB555 data\n"); return false; @@ -478,7 +482,7 @@ bool DecodeRGB555(FILE *fp, for(unsigned int j = 0; j < height; j ++) { rawPtr = &raw[0] + ( j * rawStride); - if(fread(rawPtr, 1, rawStride, fp) != rawStride) + if(InternalFile::fread(rawPtr, 1, rawStride, fp) != rawStride) { return false; } @@ -530,7 +534,7 @@ bool DecodeRGB1(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_RGB1 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RGB1 data\n"); return false; @@ -543,14 +547,14 @@ bool DecodeRGB1(FILE *fp, unsigned int rowStride = fillw * 3; // RGB - if(fread(colorTable, 1, 8, fp) != 8) + if(InternalFile::fread(colorTable, 1, 8, fp) != 8) { return false; } for(unsigned int i = 0; i < fillw * height; i += 8) { - if(fread(&cmd, 1, 1, fp) != 1) + if(InternalFile::fread(&cmd, 1, 1, fp) != 1) { return false; } @@ -623,7 +627,7 @@ bool DecodeRGB4(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_RGB4 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RGB4 data\n"); return false; @@ -635,14 +639,14 @@ bool DecodeRGB4(FILE *fp, std::vector colorIndex(fillw * height); unsigned int rowStride = fillw * 3; - if(fread(colorTable, 1, 64, fp) != 64) + if(InternalFile::fread(colorTable, 1, 64, fp) != 64) { return false; } for(unsigned int i = 0; i < fillw * height; i += 2) { - if (fread(&cmd, 1, 1, fp) != 1) + if (InternalFile::fread(&cmd, 1, 1, fp) != 1) { return false; } @@ -699,7 +703,7 @@ bool DecodeRGB8(FILE *fp, DALI_LOG_ERROR("Error decoding BMP_RGB8 format\n"); return false; } - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RGB8 data\n"); return false; @@ -711,13 +715,13 @@ bool DecodeRGB8(FILE *fp, std::vector colorIndex(width * height); unsigned int rowStride = width * 3;//RGB8->RGB24 - if(fread(&colorTable[0], 1, 1024, fp) != 1024) + if(InternalFile::fread(&colorTable[0], 1, 1024, fp) != 1024) { return false; } for(unsigned int i = 0; i < width * height; i ++) { - if (fread(&cmd, 1, 1, fp) != 1) + if (InternalFile::fread(&cmd, 1, 1, fp) != 1) { return false; } @@ -787,13 +791,13 @@ bool DecodeRLE4(FILE *fp, bool finish = false; - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RLE4 data\n"); return false; } - if (fread(colorTable, 1, 64, fp) != 64) + if (InternalFile::fread(colorTable, 1, 64, fp) != 64) { return false; } @@ -804,7 +808,7 @@ bool DecodeRLE4(FILE *fp, { break; } - if (fread(cmd, 1, cmdStride, fp) != cmdStride) + if (InternalFile::fread(cmd, 1, cmdStride, fp) != cmdStride) { return false; } @@ -820,7 +824,7 @@ bool DecodeRLE4(FILE *fp, y ++; break; case 2: // delta - if (fread(cmd, 1, cmdStride, fp) != cmdStride) + if (InternalFile::fread(cmd, 1, cmdStride, fp) != cmdStride) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -839,7 +843,7 @@ bool DecodeRLE4(FILE *fp, bytesize >>= 1; bytesize += (bytesize & 1); run.resize(bytesize); - if(fread(&run[0], 1, bytesize, fp) != bytesize) + if(InternalFile::fread(&run[0], 1, bytesize, fp) != bytesize) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -949,13 +953,13 @@ bool DecodeRLE8(FILE *fp, char cmd[2]; std::vector colorIndex(width * height); - if( fseek(fp, offset, SEEK_SET) ) + if( InternalFile::fseek(fp, offset, SEEK_SET) ) { DALI_LOG_ERROR("Error seeking BMP_RLE8 data\n"); return false; } - if (fread(&colorTable[0], 1, 1024, fp) != 1024) + if (InternalFile::fread(&colorTable[0], 1, 1024, fp) != 1024) { return false; } @@ -972,7 +976,7 @@ bool DecodeRLE8(FILE *fp, { break; } - if (fread(cmd, 1, cmdStride, fp) != cmdStride) + if (InternalFile::fread(cmd, 1, cmdStride, fp) != cmdStride) { return false; } @@ -989,7 +993,7 @@ bool DecodeRLE8(FILE *fp, y ++; break; case 2: // delta - if (fread(cmd, 1, cmdStride, fp) != cmdStride) + if (InternalFile::fread(cmd, 1, cmdStride, fp) != cmdStride) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -1006,7 +1010,7 @@ bool DecodeRLE8(FILE *fp, //absolute mode must be word-aligned length += (length & 1); run.resize(length); - if(fread(&run[0], 1, length, fp) != length) + if(InternalFile::fread(&run[0], 1, length, fp) != length) { DALI_LOG_ERROR("Error reading the BMP image\n"); return false; @@ -1135,13 +1139,13 @@ bool LoadBitmapFromBmp( const Dali::ImageLoader::Input& input, Dali::Devel::Pixe { if(infoHeader.bitsPerPixel == 16) { - if( fseek(fp, 14 + infoHeader.infoHeaderSize + 1, SEEK_SET) ) + if( InternalFile::fseek(fp, 14 + infoHeader.infoHeaderSize + 1, SEEK_SET) ) { return false; } char mask; - if(fread(&mask, 1, 1, fp) != 1) + if(InternalFile::fread(&mask, 1, 1, fp) != 1) { return false; } @@ -1330,7 +1334,7 @@ bool LoadBitmapFromBmp( const Dali::ImageLoader::Input& input, Dali::Devel::Pixe pixelsIterator = pixels + (((height-1)-yPos) * rowStride); } - if (fread(pixelsIterator, 1, rowStride, fp) != rowStride) + if (InternalFile::fread(pixelsIterator, 1, rowStride, fp) != rowStride) { DALI_LOG_ERROR("Error reading the BMP image\n"); break; @@ -1350,7 +1354,7 @@ bool LoadBitmapFromBmp( const Dali::ImageLoader::Input& input, Dali::Devel::Pixe if (padding) { - if( fseek(fp, padding, SEEK_CUR) ) // move past the padding. + if( InternalFile::fseek(fp, padding, SEEK_CUR) ) // move past the padding. { DALI_LOG_ERROR("Error moving past BMP padding\n"); }