// ***************************************************************** -*- C++ -*- /* * Copyright (C) 2004 Andreas Huggel * * This program is part of the Exiv2 distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*! @file sigmamn.hpp @brief Sigma and Foveon MakerNote implemented according to the specification SIGMA and FOVEON EXIF MakerNote Documentation by Foveon. @version $Rev$ @author Andreas Huggel (ahu) ahuggel@gmx.net @date 02-Apr-04, ahu: created */ #ifndef SIGMAMN_HPP_ #define SIGMAMN_HPP_ // ***************************************************************************** // included header files #include "types.hpp" #include "makernote.hpp" // + standard includes #include #include #include // ***************************************************************************** // namespace extensions namespace Exiv2 { // ***************************************************************************** // class declarations class Value; // ***************************************************************************** // free functions /*! @brief Return an auto-pointer to a newly created empty MakerNote initialized to operate in the memory management model indicated. The caller owns this copy and the auto-pointer ensures that it will be deleted. @param alloc Memory management model for the new MakerNote. Determines if memory required to store data should be allocated and deallocated (true) or not (false). If false, only pointers to the buffer provided to read() will be kept. See Ifd for more background on this concept. @param buf Pointer to the makernote character buffer (not used). @param len Length of the makernote character buffer (not used). @param byteOrder Byte order in which the Exif data (and possibly the makernote) is encoded (not used). @param offset Offset from the start of the TIFF header of the makernote buffer (not used). @return An auto-pointer to a newly created empty MakerNote. The caller owns this copy and the auto-pointer ensures that it will be deleted. */ MakerNote::AutoPtr createSigmaMakerNote(bool alloc, const byte* buf, long len, ByteOrder byteOrder, long offset); // ***************************************************************************** // class definitions //! MakerNote for Sigma (Foveon) cameras class SigmaMakerNote : public IfdMakerNote { public: //! Shortcut for a %SigmaMakerNote auto pointer. typedef std::auto_ptr AutoPtr; //! @name Creators //@{ /*! @brief Constructor. Allows to choose whether or not memory management is required for the makernote entries. */ SigmaMakerNote(bool alloc =true); //! Copy constructor SigmaMakerNote(const SigmaMakerNote& rhs); //! Virtual destructor virtual ~SigmaMakerNote() {} //@} //! @name Manipulators //@{ int readHeader(const byte* buf, long len, ByteOrder byteOrder); //@} //! @name Accessors //@{ int checkHeader() const; AutoPtr create(bool alloc =true) const; AutoPtr clone() const; //! Return the name of the makernote item ("Sigma") std::string ifdItem() const { return ifdItem_; } std::ostream& printTag(std::ostream& os, uint16_t tag, const Value& value) const; //@} //! @name Print functions for Sigma (Foveon) %MakerNote tags //@{ //! Strip the label from the value and print the remainder static std::ostream& printStripLabel(std::ostream& os, const Value& value); //! Print exposure mode static std::ostream& print0x0008(std::ostream& os, const Value& value); //! Print metering mode static std::ostream& print0x0009(std::ostream& os, const Value& value); //@} private: //! Internal virtual create function. SigmaMakerNote* create_(bool alloc =true) const; //! Internal virtual copy constructor. SigmaMakerNote* clone_() const; //! Structure used to auto-register the MakerNote. struct RegisterMakerNote { //! Default constructor RegisterMakerNote() { MakerNoteFactory& mnf = MakerNoteFactory::instance(); mnf.registerMakerNote("SIGMA", "*", createSigmaMakerNote); mnf.registerMakerNote("FOVEON", "*", createSigmaMakerNote); mnf.registerMakerNote(MakerNote::AutoPtr(new SigmaMakerNote)); } }; // DATA /*! The static member variable is initialized before main (see note) and will in the process register the MakerNote class. (Remember the definition of the variable in the implementation file!) @note The standard says that, if no function is explicitly called ever in a module, then that module's static data might be never initialized. This clause was introduced to allow dynamic link libraries. The idea is, with this clause the loader is not forced to eagerly load all modules, but load them only on demand. */ static const RegisterMakerNote register_; //! The item name (second part of the key) used for makernote tags std::string ifdItem_; }; // class SigmaMakerNote } // namespace Exiv2 #endif // #ifndef SIGMAMN_HPP_