OSDN Git Service

2008-04-08 Ed Schonberg <schonberg@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-crc32.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT LIBRARY COMPONENTS                          --
4 --                                                                          --
5 --                        S Y S T E M  . C R C 3 2                          --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 2001-2007, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, USA.                                              --
21 --                                                                          --
22 -- As a special exception,  if other files  instantiate  generics from this --
23 -- unit, or you link  this unit with other files  to produce an executable, --
24 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
25 -- covered  by the  GNU  General  Public  License.  This exception does not --
26 -- however invalidate  any other reasons why  the executable file  might be --
27 -- covered by the  GNU Public License.                                      --
28 --                                                                          --
29 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
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 pragma Warnings (Off);
60 pragma Compiler_Unit;
61 pragma Warnings (On);
62
63 with Interfaces;
64
65 package System.CRC32 is
66
67    type CRC32 is new Interfaces.Unsigned_32;
68    --  Used to represent CRC32 values, which are 32 bit bit-strings
69
70    procedure Initialize (C : out CRC32);
71    pragma Inline (Initialize);
72    --  Initialize CRC value by assigning the standard Init value (16#FFFF_FFFF)
73
74    procedure Update
75      (C     : in out CRC32;
76       Value : Character);
77    pragma Inline (Update);
78    --  Evolve CRC by including the contribution from Character'Pos (Value)
79
80    function Get_Value (C : CRC32) return Interfaces.Unsigned_32;
81    pragma Inline (Get_Value);
82    --  Get_Value computes the CRC32 value by performing an XOR with the
83    --  standard XorOut value (16#FFFF_FFFF). Note that this does not
84    --  change the value of C, so it may be used to retrieve intermediate
85    --  values of the CRC32 value during a sequence of Update calls.
86
87 end System.CRC32;