Blob Blame History Raw
/* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */

/* libmwaw: tools
* Version: MPL 2.0 / LGPLv2+
*
* The contents of this file are subject to the Mozilla Public License Version
* 2.0 (the "License"); you may not use this file except in compliance with
* the License or as specified alternatively below. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* Major Contributor(s):
* Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
*
*
* All Rights Reserved.
*
* For minor contributions see the git repository.
*
* Alternatively, the contents of this file may be used under the terms of
* the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
* in which case the provisions of the LGPLv2+ are applicable
* instead of those above.
*/

#ifndef MWAW_FILE_H
#  define MWAW_FILE_H
#include <stdio.h>

#include <vector>

namespace libmwaw_tools
{
class InputStream
{
protected:
  InputStream()
    : m_offset(0)
  {
  }
public:
  virtual ~InputStream();

  virtual long length() = 0;
  enum SeekType { SK_SET, SK_CUR, SK_END };

  virtual unsigned char const *read(unsigned long numBytes, unsigned long &numBytesRead) = 0;

  unsigned char readU8();
  unsigned short readU16();
  unsigned int readU32();
  char read8();
  short read16();
  int read32();
  int seek(long offset, SeekType seekType);
  long tell() const
  {
    return m_offset;
  }

  bool atEOS()
  {
    return m_offset >= length();
  }

protected:
  volatile long m_offset;
  InputStream(const InputStream &) = delete;
  InputStream &operator=(const InputStream &) = delete;
};

class StringStream final : public InputStream
{
public:
  StringStream(unsigned char const *data, const unsigned long dataSize);
  ~StringStream() final
  {
  }

  unsigned char const *read(unsigned long numBytes, unsigned long &numBytesRead) final;
  long length() final
  {
    return long(m_buffer.size());
  }
private:
  std::vector<unsigned char> m_buffer;
  StringStream(const StringStream &) = delete;
  StringStream &operator=(const StringStream &) = delete;
};

class FileStream final : public InputStream
{
public:
  explicit FileStream(char const *path);
  ~FileStream() final;
  bool ok() const
  {
    return m_isOk;
  }
  unsigned char const *read(unsigned long numBytes, unsigned long &numBytesRead) final;
  long length() final;
private:
  FILE *m_file;
  bool m_isOk;

  std::vector<unsigned char> m_buffer;
  long m_bufferPos;

  FileStream(const FileStream &) = delete;
  FileStream &operator=(const FileStream &) = delete;
};

}
#endif

// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab: