-- Abstract : -- -- See spec. -- -- Copyright (C) 2004, 2009 Stephen Leake. All Rights Reserved. -- -- This library is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, 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 General Public License for more details. You -- should have received a copy of the GNU General Public License -- distributed with this program; see file COPYING. If not, write to -- the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- MA 02111-1307, USA. -- -- As a special exception, if other files instantiate generics from -- this unit, or you link this unit with other files to produce an -- executable, this unit does not by itself cause the resulting -- executable to be covered by the GNU General Public License. This -- exception does not however invalidate any other reasons why the -- executable file might be covered by the GNU Public License. pragma License (Modified_GPL); with SAL.Endianness; use SAL.Endianness; with Ada.Unchecked_Conversion; package body SAL.Network_Order.Gen_Scalar_64 is function To_8_Byte is new Ada.Unchecked_Conversion (Target => Network_Byte_Array_8_Type, Source => Host_64_Type); function From_8_Byte is new Ada.Unchecked_Conversion (Target => Host_64_Type, Source => Network_Byte_Array_8_Type); procedure To_Network (Item : in Host_64_Type; Buffer : in out Ada.Streams.Stream_Element_Array; Last : in out Ada.Streams.Stream_Element_Offset) is use type Ada.Streams.Stream_Element_Offset; begin case Byte_Order is when Big_Endian => Buffer (Last + 1 .. Last + 8) := To_8_Byte (Item); when Little_Endian => declare Temp : constant Network_Byte_Array_8_Type := To_8_Byte (Item); begin Buffer (Last + 1) := Temp (8); Buffer (Last + 2) := Temp (7); Buffer (Last + 3) := Temp (6); Buffer (Last + 4) := Temp (5); Buffer (Last + 5) := Temp (4); Buffer (Last + 6) := Temp (3); Buffer (Last + 7) := Temp (2); Buffer (Last + 8) := Temp (1); end; end case; Last := Last + 8; end To_Network; procedure From_Network (Item : out Host_64_Type; Buffer : in Ada.Streams.Stream_Element_Array; Last : in out Ada.Streams.Stream_Element_Offset) is use type Ada.Streams.Stream_Element_Offset; begin case Byte_Order is when Big_Endian => Item := From_8_Byte (Buffer (Last + 1 .. Last + 8)); when Little_Endian => declare Temp : Network_Byte_Array_8_Type; begin Temp (1) := Buffer (Last + 8); Temp (2) := Buffer (Last + 7); Temp (3) := Buffer (Last + 6); Temp (4) := Buffer (Last + 5); Temp (5) := Buffer (Last + 4); Temp (6) := Buffer (Last + 3); Temp (7) := Buffer (Last + 2); Temp (8) := Buffer (Last + 1); Item := From_8_Byte (Temp); end; end case; Last := Last + 8; end From_Network; end SAL.Network_Order.Gen_Scalar_64;