Blob Blame History Raw
/* -*- Mode: C++ -*- */
/*
 * libopenraw - crwfile.h
 *
 * Copyright (C) 2006-2015 Hubert Figuiere
 *
 * This library is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#ifndef OR_INTERNALS_CRWFILE_H_
#define OR_INTERNALS_CRWFILE_H_
#include <stdint.h>
#include <sys/types.h>
#include <string>
#include <vector>

#include <libopenraw/consts.h>

#include "rawfile.hpp"
#include "rawcontainer.hpp"
#include "io/stream.hpp"

namespace OpenRaw {

class MetaValue;
class RawData;

namespace Internals {

class CIFFContainer;

class CRWFile
    : public OpenRaw::RawFile
{
public:
    static RawFile *factory(const IO::Stream::Ptr &);
    CRWFile(const IO::Stream::Ptr &);
    virtual ~CRWFile();

    CRWFile(const CRWFile&) = delete;
    CRWFile & operator=(const CRWFile&) = delete;

protected:


    virtual RawContainer* getContainer() const override;
    virtual ::or_error _enumThumbnailSizes(std::vector<uint32_t> &list) override;

//virtual ::or_error _getThumbnail(uint32_t size, Thumbnail & thumbnail) override;

    virtual ::or_error _getRawData(RawData & data, uint32_t options) override;
    virtual MetaValue *_getMetaValue(int32_t meta_index) override;

    virtual void _identifyId() override;
private:

    IO::Stream::Ptr m_io; /**< the IO handle */
    CIFFContainer *m_container; /**< the real container */
    uint32_t m_x;
    uint32_t m_y;
    std::string m_make;
    std::string m_model;

    static const RawFile::camera_ids_t s_def[];
};

}
}

#endif