This file is indexed.

/usr/include/claw/jpeg.hpp is in libclaw-graphic-dev 1.7.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/*
  CLAW - a C++ Library Absolutely Wonderful

  CLAW is a free library without any particular aim but being useful to 
  anyone.

  Copyright (C) 2005-2011 Julien Jorge

  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 2.1 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, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

  contact: julien.jorge@gamned.org
*/
/**
 * \file jpeg.hpp
 * \brief A class for jpeg pictures.
 * \author Julien Jorge
 */
#ifndef __CLAW_JPEG_HPP__
#define __CLAW_JPEG_HPP__

#include <claw/image.hpp>
#include <setjmp.h>
#include <iostream>
#include <string>
#include <cstdio>

extern "C"
{
#include <jpeglib.h>
}

namespace claw
{
  namespace graphic
  {
    /**
     * \brief A class for jpeg pictures.
     * \author Julien Jorge
     */
    class jpeg : public image
    {
    public:
      /*--------------------------------------------------------------------*/
      /**
       * \brief Error handler that throw an exception instead of exiting the
       *        program.
       * \brief To be used only in the jpeg::reader and jpeg::writer class.
       * \author Julien Jorge.
       */
      struct error_manager
      {
        /** \brief "public" fields, needed by the jpeg library. */
        struct jpeg_error_mgr pub;

        /** \brief For return to caller */
        jmp_buf setjmp_buffer;

        /** \brief A comprehensive description of the error. */
        std::string error_string;

      }; // struct error_manager

      /*----------------------------------------------------------------------*/
      /**
       * \brief This class read data from a jpeg file and store it in an image.
       * \author Julien Jorge
       */
      class reader
      {
        // classes that need to be accessible from jpeg callbacks.
      public:
        /*--------------------------------------------------------------------*/
        /**
         * \brief Source manager that allow us to read from a std::istream.
         * \author Julien Jorge
         */
        struct source_manager
        {
        public:
          source_manager( std::istream& is );
          ~source_manager();

          boolean fill_input_buffer();
          void skip_input_data(long num_bytes);

        public:
          /** \brief "public" fields, needed by the jpeg library. */
          struct jpeg_source_mgr pub;

        private:
          /** \brief The stream from which we get data. */
          std::istream& m_input;

          /** \brief Pointer on the begining of the buffer. */
          const JOCTET* m_buffer;

          /** \brief Number of bytes in the buffer. */
          const unsigned int m_buffer_size;

          /** \brief The size of the stream. */
          unsigned int m_stream_size;

          /** \brief The current position in the stream. */
          unsigned int m_stream_position;

        }; // struct source_manager

      private:
        /*--------------------------------------------------------------------*/
        /**
         * \brief Functor converting a RGB pixel to a ARGB pixel.
         */
        class RGB_to_pixel32
        {
        public:
          rgba_pixel_8 operator()( const JSAMPLE* pixel ) const;
        }; // class RGB_to_pixel32

        /*--------------------------------------------------------------------*/
        /**
         * \brief Functor converting a grey level pixel to a ARGB pixel.
         */
        class grayscale_to_pixel32
        {
        public:
          rgba_pixel_8 operator()( const JSAMPLE* pixel ) const;
        }; // class grayscale_to_pixel32

      public:
        reader( image& img );
        reader( image& img, std::istream& f );

        void load( std::istream& f );

      private:
        template<class Convert>
        void read_data( jpeg_decompress_struct& cinfo,
                        const Convert& pixel_convert );

        void read_from_file( std::istream& f );
        void decompress( std::istream& f, jpeg_decompress_struct& cinfo );

        void create_decompress_info( jpeg_decompress_struct& cinfo,
                                     source_manager& infile ) const;
      private:
        /** \brief The image in which we store the data we read. */
        image& m_image;

      }; // class reader

      /*----------------------------------------------------------------------*/
      /**
       * \brief This class write an image in a jpeg file.
       * \author Julien Jorge
       */
      class writer
      {
      public:
        /**
         * \brief Parameters of the writing algorithm.
         */
        struct options
        {
        public:
          options();
          options( unsigned char compression_quality_, bool progressive_ );

        public:
          /** \brief Quality level to use in the saved stream. */
          unsigned char quality;

          /** \brief Tell if we save a progressive jpeg. */
          bool progressive;

        }; // struct options

        // classes that need to be accessible from jpeg callbacks.

        /*--------------------------------------------------------------------*/
        /**
         * \brief Destination manager that allow us to write in a std::ostream.
         * \author Julien Jorge
         */
        struct destination_manager
        {
        public:
          destination_manager( std::ostream& os );
          ~destination_manager();

          void flush();
          void term();

        public:
          /** \brief "public" fields, needed by the jpeg library. */
          struct jpeg_destination_mgr pub;

        private:
          /** \brief The stream in which we write the data. */
          std::ostream& m_output;

          /** \brief Pointer on the begining of the buffer. */
          JOCTET* m_buffer;

          /** \brief Number of bytes in the buffer. */
          const unsigned int m_buffer_size;

        }; // struct destination_manager

      public:
        writer( const image& img );
        writer( const image& img, std::ostream& f,
                const options& opt = options() );

        void save( std::ostream& f, const options& opt = options() ) const;

      private:
        void set_options( jpeg_compress_struct& cinfo,
                          const options& opt ) const;
        void save_image( jpeg_compress_struct& cinfo ) const;
        
        void copy_pixel_line( JSAMPLE* data, unsigned int y ) const;

        void create_compress_info( jpeg_compress_struct& cinfo,
                                   destination_manager& outfile ) const;

      private:
        /** \brief The image from which we thake the data to save. */
        const image& m_image;

        /** \brief Size, in bytes, of a red/green/blue pixel in a jpeg
            file. */
        static const unsigned int s_rgb_pixel_size;

      }; // class writer

    public:
      jpeg( unsigned int w, unsigned int h );
      jpeg( const image& that );
      jpeg( std::istream& f );

      void save( std::ostream& os,
                 const writer::options& opt = writer::options() ) const;

    }; // class jpeg
  } // namespace graphic
} // namespace claw

#include <claw/impl/jpeg_reader.tpp>

#endif // __CLAW_JPEG_HPP__