blob: 96f4281ced0833922833eb302e58a4d05ea98a2d [file] [log] [blame]
Thomas Heijligen62268ee2023-11-27 15:10:41 +00001with Interfaces;
2
Nico Huber98417fc2023-11-30 16:46:25 +01003use Interfaces;
4
Thomas Heijligen5c43abc2023-12-11 15:24:36 +00005package FILO is
Thomas Heijligend1e04572023-11-27 14:28:55 +00006
Nico Huber9c041872023-12-12 13:24:55 +01007 type Blockdev_Length is range 0 .. Interfaces.Unsigned_64'Last;
8 subtype Blockdev_Offset is Blockdev_Length range 0 .. Blockdev_Length'Last - 1;
9 subtype Partition_Length is Blockdev_Length;
10 subtype Partition_Offset is Blockdev_Offset;
Nico Huber481ff842023-12-12 13:19:49 +010011
12 BLOCK_SIZE : constant := 512;
13 type Block_Offset is range 0 .. Partition_Offset'Last / BLOCK_SIZE;
14
Nico Huber98417fc2023-11-30 16:46:25 +010015 subtype Index_Type is Natural range 0 .. Natural'Last - 1;
16 subtype Index_Type16 is Index_Type range 0 .. Index_Type'Last - 1;
17 subtype Index_Type32 is Index_Type16 range 0 .. Index_Type16'Last - 2;
18
19 type Buffer_Type is array (Index_Type range <>) of Unsigned_8;
20
21 function Read_LE16 (Buf : Buffer_Type; Off : Index_Type16) return Unsigned_16
22 is
Nico Huber90720902023-12-12 16:03:30 +010023 (Shift_Left (Unsigned_16 (Buf (Buf'First + Off + 1)), 8) or
24 Unsigned_16 (Buf (Buf'First + Off)))
Nico Hubercd6b7ec2023-12-04 15:21:26 +010025 with
Nico Huber90720902023-12-12 16:03:30 +010026 Pre =>
27 Buf'First <= Index_Type16'Last - Off and
28 Buf'First + Off + 1 <= Buf'Last;
Nico Huber98417fc2023-11-30 16:46:25 +010029
30 function Read_LE32 (Buf : Buffer_Type; Off : Index_Type32) return Unsigned_32
31 is
Nico Huber90720902023-12-12 16:03:30 +010032 (Shift_Left (Unsigned_32 (Buf (Buf'First + Off + 3)), 24) or
33 Shift_Left (Unsigned_32 (Buf (Buf'First + Off + 2)), 16) or
34 Shift_Left (Unsigned_32 (Buf (Buf'First + Off + 1)), 8) or
35 Unsigned_32 (Buf (Buf'First + Off)))
Nico Hubercd6b7ec2023-12-04 15:21:26 +010036 with
Nico Huber90720902023-12-12 16:03:30 +010037 Pre =>
38 Buf'First <= Index_Type32'Last - Off and
39 Buf'First + Off + 3 <= Buf'Last;
Thomas Heijligend1e04572023-11-27 14:28:55 +000040
Thomas Heijligen5c43abc2023-12-11 15:24:36 +000041end FILO;