zipada_58.0.0_08ab9be1/zip_lib/zip-compress.adb

  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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
--  Legal licensing note:

--  Copyright (c) 2007 .. 2022 Gautier de Montmollin
--  SWITZERLAND

--  Permission is hereby granted, free of charge, to any person obtaining a copy
--  of this software and associated documentation files (the "Software"), to deal
--  in the Software without restriction, including without limitation the rights
--  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
--  copies of the Software, and to permit persons to whom the Software is
--  furnished to do so, subject to the following conditions:

--  The above copyright notice and this permission notice shall be included in
--  all copies or substantial portions of the Software.

--  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
--  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
--  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
--  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
--  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
--  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
--  THE SOFTWARE.

--  NB: this is the MIT License, as found on the site
--  http://www.opensource.org/licenses/mit-license.php

with Zip.Create,
     Zip.Compress.Shrink,
     Zip.Compress.Reduce,
     Zip.Compress.Deflate,
     Zip.Compress.LZMA_E;

with Ada.Characters.Handling,
     Ada.Numerics.Discrete_Random,
     Ada.Strings.Fixed,
     Ada.Unchecked_Deallocation;

package body Zip.Compress is

  use Zip_Streams, Zip.CRC_Crypto;

  --  The following procedure's purpose is to detect size overflows
  --  for Zip data. Even when the input size is known, we can have
  --  the situation where data is random and the compressed output size
  --  overflows.

  procedure Increment (
    out_size : in out Zip_64_Data_Size_Type;
    by       : in     Natural
  )
  is
    temp_by : constant ZS_Size_Type := ZS_Size_Type (by);
    use type Zip_64_Data_Size_Type, ZS_Size_Type;
  begin
    if temp_by > Create.max_size then
      raise Create.Zip_Capacity_Exceeded with
        "Compressed data too large: size is 2 EiB (Exbibytes) or more.";
    end if;
    out_size := out_size + Zip_64_Data_Size_Type (by);
  end Increment;

  default_byte_IO_buffer_size : constant := 1024 * 1024;  --  1 MiB

  -------------------
  -- Compress_data --
  -------------------

  procedure Compress_data
   (input,
    output           : in out Zip_Streams.Root_Zipstream_Type'Class;
    input_size_known : Boolean;
    input_size       : Zip_64_Data_Size_Type;
    method           : Compression_Method;
    feedback         : Feedback_proc;
    password         : String;
    content_hint     : Data_content_type;
    CRC              : out Interfaces.Unsigned_32;
    output_size      : out Zip_64_Data_Size_Type;
    zip_type         : out Interfaces.Unsigned_16
   )
  is
    use Interfaces;
    user_aborting : Boolean;
    idx_in :  constant ZS_Index_Type := Index (input);
    idx_out : constant ZS_Index_Type := Index (output);
    compression_ok : Boolean;
    first_feedback : Boolean := True;
    --
    is_encrypted : constant Boolean := password /= "";
    encrypt_pack, mem_encrypt_pack : Crypto_pack;
    encrypt_header : Byte_Buffer (1 .. 12);
    package Byte_soup is new Ada.Numerics.Discrete_Random (Byte);
    use Byte_soup;
    cg : Byte_soup.Generator;
    --
    --  Store data as is, or, if do_write = False, just compute CRC (this is for encryption).
    --
    procedure Store_data (do_write : Boolean) is
      Buffer      : Byte_Buffer (1 .. default_byte_IO_buffer_size);
      Last_Read   : Natural;
      counted     : Zip_64_Data_Size_Type := 0;
    begin
      zip_type := Compression_format_code.store_code;
      while not End_Of_Stream (input) loop
        if input_size_known and then counted >= input_size then
          exit;
        end if;
        --  Copy data
        Block_Read (input, Buffer, Last_Read);
        Increment (counted, Last_Read);
        Update (CRC, Buffer (1 .. Last_Read));
        if do_write then
          Encode (encrypt_pack, Buffer (1 .. Last_Read));
          Block_Write (output, Buffer (1 .. Last_Read));
        end if;
        --  Feedback
        if feedback /= null and then
          (first_feedback or (counted mod (2**16) = 0) or
          (input_size_known and then counted = input_size))
        then
          if input_size_known then
            feedback (
              percents_done =>
                Natural ((100.0 * Float (counted)) / Float (input_size)),
              entry_skipped => False,
              user_abort    => user_aborting);
          else
            feedback (
              percents_done => 0,
              entry_skipped => False,
              user_abort    => user_aborting);
          end if;
          first_feedback := False;
          if user_aborting then
            raise User_abort;
          end if;
        end if;
      end loop;
      output_size := counted;
      compression_ok := True;
    end Store_data;
    --
    procedure Compress_data_single_method (actual_method : Single_Method) is
    begin
      Init (CRC);
      if is_encrypted then
        Init_keys (encrypt_pack, password);
        Set_mode (encrypt_pack, encrypted);
        --  A bit dumb from Zip spec: we need to know the final CRC in order to set up
        --  the last byte of the encryption header, that allows for detecting if a password
        --  is OK - this, with 255/256 probability of correct detection of a wrong password!
        --  Result: 1st scan of the whole input stream with CRC calculation:
        Store_data (do_write => False);
        Reset (cg);
        for i in 1 .. 11 loop
          encrypt_header (i) := Random (cg);
        end loop;
        encrypt_header (12) := Byte (Shift_Right (Final (CRC), 24));
        Set_Index (input, idx_in);
        Init (CRC);
        Encode (encrypt_pack, encrypt_header);
        Block_Write (output, encrypt_header);
        --
        --  We need to remember at this point the encryption keys in case we need
        --  to rewrite from here (compression failed, store data).
        --
        mem_encrypt_pack := encrypt_pack;
      else
        Set_mode (encrypt_pack, clear);
      end if;
      --
      --  Dispatch the work to child procedures doing the stream compression
      --  in different formats, depending on the actual compression method.
      --  For example, for methods LZMA_for_JPEG, LZMA_for_WAV, or LZMA_3, we
      --  logically call Zip.Compress.LZMA_E for the job.
      --
      case actual_method is
        --
        when Store =>
          Store_data (do_write => True);
        --
        when Shrink =>
          Zip.Compress.Shrink (
            input, output, input_size_known, input_size, feedback,
            CRC, encrypt_pack, output_size, compression_ok
          );
          zip_type := Compression_format_code.shrink_code;
        --
        when Reduction_Method =>
          Zip.Compress.Reduce (
            input, output, input_size_known, input_size, feedback,
            actual_method,
            CRC, encrypt_pack, output_size, compression_ok
          );
          zip_type := Compression_format_code.reduce_code +
            Unsigned_16 (
              Compression_Method'Pos (actual_method) -
              Compression_Method'Pos (Reduce_1)
            );
        when Deflation_Method =>
          Zip.Compress.Deflate (
            input, output, input_size_known, input_size, feedback,
            actual_method,
            CRC, encrypt_pack, output_size, compression_ok
          );
          zip_type := Compression_format_code.deflate_code;
        when LZMA_Method =>
          Zip.Compress.LZMA_E (
            input, output, input_size_known, input_size, feedback,
            actual_method,
            CRC, encrypt_pack, output_size, compression_ok
          );
          zip_type := Compression_format_code.lzma_code;
      end case;
      CRC := Final (CRC);
      --
      --  Handle case where compression has been unefficient:
      --  data to be compressed is too "random"; then compressed data
      --  happen to be larger than uncompressed data
      --
      if not compression_ok then
        --  Go back to the beginning and just store the data
        Set_Index (input, idx_in);
        if is_encrypted then
          Set_Index (output, idx_out + 12);
          --  Restore the encryption keys to their state just after the encryption header:
          encrypt_pack := mem_encrypt_pack;
        else
          Set_Index (output, idx_out);
        end if;
        Init (CRC);
        Store_data (do_write => True);
        CRC := Final (CRC);
      end if;
      if is_encrypted then
        output_size := output_size + 12;
      end if;
    end Compress_data_single_method;

    fast_presel : constant Boolean :=
      method = Preselection_1 or (input_size_known and then input_size < 22_805);

    data_type_to_LZMA_method : constant array (Data_content_type) of LZMA_Method :=
      (JPEG    => LZMA_for_JPEG,
       ARW_RW2 => LZMA_for_ARW,
       ORF_CR2 => LZMA_for_ORF,
       MP3     => LZMA_for_MP3,
       MP4     => LZMA_for_MP4,
       PGM     => LZMA_for_PGM,
       PPM     => LZMA_for_PPM,
       PNG     => LZMA_for_PNG,
       WAV     => LZMA_for_WAV,
       AU      => LZMA_for_AU,
       others  => LZMA_1  --  Fake, should be unused as such.
      );

  begin
    case method is
      --
      when Single_Method =>
        Compress_data_single_method (method);
      --
      when Preselection_Method =>
        case content_hint is
          when Neutral =>  --  No clue about what kind of data
            if input_size_known and then input_size < 9_000 then
              Compress_data_single_method (Deflate_3);  --  Deflate
            elsif fast_presel then
              --  See: Optimum, LZ77 sheet in za_work.xls
              --       or l2_vs_l3.xls with a larger data set.
              Compress_data_single_method (LZMA_2);                 --  LZMA with IZ_10 match finder
            else
              Compress_data_single_method (LZMA_3);                 --  LZMA with BT4 match finder
            end if;
          when ARW_RW2 | ORF_CR2 | MP3 | MP4 | JPEG | PGM | PPM | PNG | WAV | AU =>
            if input_size_known and then input_size < 2_250 then
              Compress_data_single_method (Deflate_3);  --  Deflate
            else
              Compress_data_single_method (data_type_to_LZMA_method (content_hint));
            end if;
          when GIF =>
            if input_size_known and then input_size < 350 then
              Compress_data_single_method (Deflate_1);
            else
              Compress_data_single_method (LZMA_for_GIF);
            end if;
          when Zip_in_Zip =>
            if input_size_known and then input_size < 1_000 then
              Compress_data_single_method (Deflate_3);  --  Deflate
            elsif fast_presel then
              Compress_data_single_method (LZMA_2_for_Zip_in_Zip);
            else
              Compress_data_single_method (LZMA_3_for_Zip_in_Zip);
            end if;
          when Source_code =>
            if input_size_known and then input_size < 8_000 then
              Compress_data_single_method (Deflate_3);  --  Deflate
            elsif fast_presel then
              Compress_data_single_method (LZMA_2_for_Source);
            else
              Compress_data_single_method (LZMA_3_for_Source);
            end if;
        end case;
    end case;
  end Compress_data;

  function Guess_type_from_name (name : String) return Data_content_type is
    use Ada.Characters.Handling, Ada.Strings.Fixed;
    up : constant String := To_Upper (name);
    ext_1 : constant String := Tail (up, 2);
    ext_2 : constant String := Tail (up, 3);
    ext_3 : constant String := Tail (up, 4);
    ext_4 : constant String := Tail (up, 5);
  begin
    if ext_3 = ".JPG" or else ext_4 = ".JPEG" then
      return JPEG;
    end if;
    if ext_3 in ".ADA" | ".ADS" | ".ADB"
      or else ext_1 in ".C" | ".H"
      or else ext_3 in ".CPP" | ".HPP" | ".DEF" | ".ASM"
      or else ext_4 = ".JAVA" or else ext_2 = ".CS"
      or else ext_3 in ".PAS" | ".INC" | ".LPR" or else ext_2 = ".PP"
      or else ext_3 = ".MAK" or else ext_2 = ".IN"
      or else ext_2 = ".SH" or else ext_3 in ".BAT" | ".CMD"
      or else ext_3 in ".XML" | ".XSL"
      or else ext_4 = ".SGML"
      or else ext_3 = ".AUP"  --  Audacity project (XML)
      or else ext_3 = ".HTM" or else ext_4 = ".HTML"
      or else ext_2 = ".JS" or else ext_3 = ".LSP"
      or else ext_3 in ".CSV" | ".SQL"
    then
      return Source_code;
    end if;
    --  Zip archives happen to be zipped...
    if ext_4 = ".EPUB"  --  EPUB: e-book reader format
      or else ext_3 in ".ZIP" | ".JAR" |
                       ".ODB" | ".ODS" | ".ODT" | ".OTR" | ".OTS" | ".OTT" |
                       ".CRX" | ".NTH"
      or else ext_4 in ".DOCX" | ".PPTX" | ".XLSX" | ".XLSB" | ".XLSM"
    then
      return Zip_in_Zip;
    end if;
    --  Some raw camera picture data
    if ext_3 in ".ORF" |  --  Raw Olympus
                ".CR2" |  --  Raw Canon
                ".RAF" |  --  Raw Fujifilm
                ".SRW"    --  Raw Samsung
    then
      return ORF_CR2;
    end if;
    if ext_3 in ".ARW" |  --  Raw Sony
                ".RW2" |  --  Raw Panasonic
                ".NEF" |  --  Raw Nikon
                ".DNG" |  --  Raw Leica, Pentax
                ".X3F"    --  Raw Sigma
    then
      return ARW_RW2;
    end if;
    if ext_3 = ".PGM" then
      return PGM;
    end if;
    if ext_3 = ".PPM" then
      return PPM;
    end if;
    if ext_3 = ".MP3" then
      return MP3;
    end if;
    if ext_3 in ".MTS" | ".MP4" | ".M4A" | ".M4P" then
      return MP4;
    end if;
    if ext_3 = ".PNG" then
      return PNG;
    end if;
    if ext_3 = ".GIF" then
      return GIF;
    end if;
    if ext_3 in ".WAV" | ".UAX" then
      return WAV;
    end if;
    if ext_2 = ".AU" then  --  Audacity raw data
      return AU;
    end if;
    return Neutral;
  end Guess_type_from_name;

  -----------------------------------
  --  I/O buffers for compression  --
  -----------------------------------

  procedure Allocate_Buffers (
    b                : in out IO_Buffers_Type;
    input_size_known :        Boolean;
    input_size       :        Zip_64_Data_Size_Type
  )
  is
    calibration : Zip_64_Data_Size_Type := default_byte_IO_buffer_size;
  begin
    if input_size_known then
      calibration :=
        Zip_64_Data_Size_Type'Min (
          default_byte_IO_buffer_size,
          Zip_64_Data_Size_Type'Max (8, input_size)
        );
    end if;
    b.InBuf  := new Byte_Buffer (1 .. Integer (calibration));
    b.OutBuf := new Byte_Buffer (1 .. default_byte_IO_buffer_size);
  end Allocate_Buffers;

  procedure Deallocate_Buffers (b : in out IO_Buffers_Type) is
    procedure Dispose_Buffer is
      new Ada.Unchecked_Deallocation (Byte_Buffer, p_Byte_Buffer);
  begin
    Dispose_Buffer (b.InBuf);
    Dispose_Buffer (b.OutBuf);
  end Deallocate_Buffers;

  procedure Read_Block (
    b     : in out IO_Buffers_Type;
    input : in out Zip_Streams.Root_Zipstream_Type'Class
  )
  is
  begin
    Zip.Block_Read (
      stream        => input,
      buffer        => b.InBuf.all,
      actually_read => b.MaxInBufIdx
    );
    b.InputEoF := b.MaxInBufIdx = 0;
    b.InBufIdx := 1;
  end Read_Block;

  procedure Write_Block (
    b                : in out IO_Buffers_Type;
    input_size_known :        Boolean;
    input_size       :        Zip_64_Data_Size_Type;
    output           : in out Zip_Streams.Root_Zipstream_Type'Class;
    output_size      : in out Zip_64_Data_Size_Type;
    crypto           : in out Zip.CRC_Crypto.Crypto_pack
  )
  is
    amount : constant Integer := b.OutBufIdx - 1;
    use type Zip_64_Data_Size_Type;
  begin
    Increment (output_size, Integer'Max (0, amount));
    if input_size_known and then output_size >= input_size then
      --  The compression so far is obviously inefficient for that file.
      --  Useless to go further.
      --  Stop immediately before growing the file more than the
      --  uncompressed size.
      raise Compression_inefficient;
    end if;
    Encode (crypto, b.OutBuf (1 .. amount));
    Zip.Block_Write (output, b.OutBuf (1 .. amount));
    b.OutBufIdx := 1;
  end Write_Block;

end Zip.Compress;