OSDN Git Service

Delete all lines containing "$Revision:".
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-crc32.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --                           G N A T . C R C 3 2                            --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --                                                                          --
10 --              Copyright (C) 2001 Ada Core Technologies, Inc.              --
11 --                                                                          --
12 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
13 -- terms of the  GNU General Public License as published  by the Free Soft- --
14 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
15 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
18 -- for  more details.  You should have  received  a copy of the GNU General --
19 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
20 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
21 -- MA 02111-1307, USA.                                                      --
22 --                                                                          --
23 -- As a special exception,  if other files  instantiate  generics from this --
24 -- unit, or you link  this unit with other files  to produce an executable, --
25 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
26 -- covered  by the  GNU  General  Public  License.  This exception does not --
27 -- however invalidate  any other reasons why  the executable file  might be --
28 -- covered by the  GNU Public License.                                      --
29 --                                                                          --
30 -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com).   --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 --  This package provides routines for computing a commonly used checksum
35 --  called CRC-32. This is a checksum based on treating the binary data
36 --  as a polynomial over a binary field, and the exact specifications of
37 --  the CRC-32 algorithm are as follows:
38 --
39 --     Name   : "CRC-32"
40 --     Width  : 32
41 --     Poly   : 04C11DB7
42 --     Init   : FFFFFFFF
43 --     RefIn  : True
44 --     RefOut : True
45 --     XorOut : FFFFFFFF
46 --     Check  : CBF43926
47 --
48 --  Note that this is the algorithm used by PKZip, Ethernet and FDDI.
49 --
50 --  For more information about this algorithm see:
51 --
52 --  ftp://ftp.rocksoft.com/papers/crc_v3.txt
53
54 --  "A Painless Guide to CRC Error Detection Algorithms", Ross N. Williams
55 --
56 --  "Computation of Cyclic Redundancy Checks via Table Look-Up", Communications
57 --  of the ACM, Vol. 31 No. 8, pp.1008-1013 Aug. 1988. Sarwate, D.V.
58
59 with Ada.Streams;
60 with Interfaces;
61 with System.CRC32;
62
63 package GNAT.CRC32 is
64
65    subtype CRC32 is System.CRC32.CRC32;
66    --  Used to represent CRC32 values, which are 32 bit bit-strings
67
68    procedure Initialize (C : out CRC32)
69      renames System.CRC32.Initialize;
70    --  Initialize CRC value by assigning the standard Init value (16#FFFF_FFFF)
71
72    procedure Update
73      (C     : in out CRC32;
74       Value : Character)
75      renames System.CRC32.Update;
76    --  Evolve CRC by including the contribution from Character'Pos (Value)
77
78    procedure Update
79      (C     : in out CRC32;
80       Value : String);
81    pragma Inline (Update);
82    --  For each character in the Value string call above routine
83
84    procedure Wide_Update
85      (C     : in out CRC32;
86       Value : Wide_Character);
87    pragma Inline (Update);
88    --  Evolve CRC by including the contribution from Wide_Character'Pos (Value)
89    --  with the bytes being included in the natural memory order.
90
91    procedure Wide_Update
92      (C     : in out CRC32;
93       Value : Wide_String);
94    pragma Inline (Update);
95    --  For each character in the Value string call above routine
96
97    procedure Update
98      (C     : in out CRC32;
99       Value : Ada.Streams.Stream_Element);
100    pragma Inline (Update);
101    --  Evolve CRC by including the contribution from Value
102
103    procedure Update
104      (C     : in out CRC32;
105       Value : Ada.Streams.Stream_Element_Array);
106    pragma Inline (Update);
107    --  For each element in the Value array call above routine
108
109    function Get_Value (C : CRC32) return Interfaces.Unsigned_32
110      renames System.CRC32.Get_Value;
111    --  Get_Value computes the CRC32 value by performing an XOR with the
112    --  standard XorOut value (16#FFFF_FFFF). Note that this does not
113    --  change the value of C, so it may be used to retrieve intermediate
114    --  values of the CRC32 value during a sequence of Update calls.
115
116 end GNAT.CRC32;