Files
libreoffice/hwpfilter/source/hiodev.cxx
Caolán McNamara f974db5d89 check if reads were successful
Change-Id: I69ab0ca9c017c9a1c10d18fd850f32a92c641d12
Reviewed-on: https://gerrit.libreoffice.org/14631
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-02-25 17:05:31 +00:00

386 lines
6.6 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <stdio.h>
#include <errno.h>
#ifdef WIN32
# include <io.h>
#else
# include <unistd.h>
#endif
#include <osl/diagnose.h>
#include "hwplib.h"
#include "hgzip.h"
#include "hiodev.h"
#include "hwpfile.h"
#include "hstream.h"
const int BUFSIZE = 1024;
static uchar rBuf[BUFSIZE];
// HIODev abstract class
HIODev::HIODev()
{
init();
}
HIODev::~HIODev()
{
}
void HIODev::init()
{
compressed = false;
}
int HIODev::read1b(void *ptr, int nmemb)
{
uchar *p = (uchar *) ptr;
int ii;
if (state())
return -1;
for (ii = 0; ii < nmemb; ii++)
{
if (!read1b(p[ii]))
break;
if (state())
break;
}
return ii;
}
int HIODev::read2b(void *ptr, int nmemb)
{
ushort *p = (ushort *) ptr;
int ii;
if (state())
return -1;
for (ii = 0; ii < nmemb; ii++)
{
if (!read2b(p[ii]))
break;
if (state())
break;
}
return ii;
}
int HIODev::read4b(void *ptr, int nmemb)
{
uint *p = (uint *) ptr;
int ii;
if (state())
return -1;
for (ii = 0; ii < nmemb; ii++)
{
if (!read4b(p[ii]))
break;
if (state())
break;
}
return ii;
}
// hfileiodev class
HStreamIODev::HStreamIODev(HStream * stream):_stream(stream)
{
init();
}
HStreamIODev::~HStreamIODev()
{
close();
}
void HStreamIODev::init()
{
_gzfp = NULL;
compressed = false;
}
bool HStreamIODev::open()
{
if (!(_stream->available()))
return false;
return true;
}
void HStreamIODev::flush(void)
{
if (_gzfp)
gz_flush(_gzfp, Z_FINISH);
}
void HStreamIODev::close(void)
{
/* 플러시한 후 닫는다. */
this->flush();
if (_gzfp)
gz_close(_gzfp);
_gzfp = NULL;
}
int HStreamIODev::state(void) const
{
return 0;
}
/* zlib 관련 부분 */
bool HStreamIODev::setCompressed(bool flag)
{
compressed = flag;
if (flag == true)
return 0 != (_gzfp = gz_open(*_stream));
else if (_gzfp)
{
gz_flush(_gzfp, Z_FINISH);
gz_close(_gzfp);
_gzfp = 0;
}
return true;
}
// IO routines
#define GZREAD(ptr,len) (_gzfp?gz_read(_gzfp,ptr,len):0)
bool HStreamIODev::read1b(unsigned char &out)
{
int res = (compressed) ? GZREAD(rBuf, 1) : _stream->readBytes(rBuf, 1);
if (res < 1)
return false;
out = (unsigned char)rBuf[0];
return true;
}
bool HStreamIODev::read1b(char &out)
{
unsigned char tmp8;
if (!read1b(tmp8))
return false;
out = tmp8;
return true;
}
bool HStreamIODev::read2b(unsigned short &out)
{
int res = (compressed) ? GZREAD(rBuf, 2) : _stream->readBytes(rBuf, 2);
if (res < 2)
return false;
out = ((unsigned char) rBuf[1] << 8 | (unsigned char) rBuf[0]);
return true;
}
bool HStreamIODev::read4b(unsigned int &out)
{
int res = (compressed) ? GZREAD(rBuf, 4) : _stream->readBytes(rBuf, 4);
if (res < 4)
return false;
out = ((unsigned char) rBuf[3] << 24 | (unsigned char) rBuf[2] << 16 |
(unsigned char) rBuf[1] << 8 | (unsigned char) rBuf[0]);
return true;
}
bool HStreamIODev::read4b(int &out)
{
unsigned int tmp32;
if (!read4b(tmp32))
return false;
out = tmp32;
return true;
}
int HStreamIODev::readBlock(void *ptr, int size)
{
int count =
(compressed) ? GZREAD(ptr, size) : _stream->readBytes((byte *) ptr,
size);
return count;
}
int HStreamIODev::skipBlock(int size)
{
if (compressed){
if( size <= BUFSIZE )
return GZREAD(rBuf, size);
else{
int remain = size;
while(remain){
if( remain > BUFSIZE )
remain -= GZREAD(rBuf, BUFSIZE);
else{
remain -= GZREAD(rBuf, remain);
break;
}
}
return size - remain;
}
}
return _stream->skipBytes(size);
}
HMemIODev::HMemIODev(char *s, int len)
{
init();
ptr = reinterpret_cast<uchar *>(s);
length = len;
}
HMemIODev::~HMemIODev()
{
close();
}
void HMemIODev::init()
{
ptr = 0;
length = 0;
pos = 0;
}
bool HMemIODev::open()
{
return true;
}
void HMemIODev::flush(void)
{
}
void HMemIODev::close(void)
{
}
int HMemIODev::state(void) const
{
if (pos <= length)
return 0;
else
return -1;
}
bool HMemIODev::setCompressed(bool )
{
return false;
}
bool HMemIODev::read1b(unsigned char &out)
{
if (pos <= length)
{
out = ptr[pos++];
return true;
}
return false;
}
bool HMemIODev::read1b(char &out)
{
unsigned char tmp8;
if (!read1b(tmp8))
return false;
out = tmp8;
return true;
}
bool HMemIODev::read2b(unsigned short &out)
{
pos += 2;
if (pos <= length)
{
out = ptr[pos - 1] << 8 | ptr[pos - 2];
return true;
}
return false;
}
bool HMemIODev::read4b(unsigned int &out)
{
pos += 4;
if (pos <= length)
{
out = static_cast<unsigned int>(ptr[pos - 1] << 24 | ptr[pos - 2] << 16 |
ptr[pos - 3] << 8 | ptr[pos - 4]);
return true;
}
return false;
}
bool HMemIODev::read4b(int &out)
{
unsigned int tmp32;
if (!read4b(tmp32))
return false;
out = tmp32;
return true;
}
int HMemIODev::readBlock(void *p, int size)
{
if (length < pos + size)
size = length - pos;
memcpy(p, ptr + pos, size);
pos += size;
return size;
}
int HMemIODev::skipBlock(int size)
{
if (length < pos + size)
return 0;
pos += size;
return size;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */