freebsd-ports/devel/gprbuild/files/patch-src_rewrite__data.ada
John Marino e960f79073 devel/gprbuild: Upgrade version 20130416 (2013) => 20140417 (2014)
Adacore provides annual releases for its major GPL-licensed products.
GPRBuild is an important tool, but it's source is only exposed once
per year, in May.  The 2014 release of GPRBuild relies on features in
Adacore's commercial product, GNAT Pro, that has not yet been migrated
to FSF GNAT.  I had to patch 2014 to get it to build with FSF GNAT 4.9,
losing minor new functionality in the process.

My first decision was to simply skip GPRBuild 2014 stay on the 2013
version, but it turns out packages are already using the new features
in gprinstall, one of the tools in the GPRBuild package.

Tests on adabooch, aws, asis and opentoken indicate they build fine
with GPRBuild 2014.
2014-05-16 09:06:13 +00:00

288 lines
10 KiB
Ada

This functionality was part of GPRBuild 2013, but it has since moved to
GNAT itself. Unfortunately, that's only happened for GNAT Pro so GCC 4.9
doesn't have this GNAT.Rewrite_Data. Moveover, the GNAT Pro version has
been extended since 2013.
Bring in the GNAT 2013 local Rewrite_Data package to build GPRBuild 2014.
--- src/rewrite_data.ads.orig 2014-05-16 07:42:27.000000000 +0000
+++ src/rewrite_data.ads
@@ -0,0 +1,86 @@
+------------------------------------------------------------------------------
+-- GNAT COMPILER COMPONENTS --
+-- --
+-- R E W R I T E _ D A T A --
+-- --
+-- S p e c --
+-- --
+-- Copyright (C) 2012, Free Software Foundation, Inc. --
+-- --
+-- This is free software; you can redistribute it and/or modify it under --
+-- terms of the GNU General Public License as published by the Free Soft- --
+-- ware Foundation; either version 3, or (at your option) any later ver- --
+-- sion. This software is distributed in the hope that it will be useful, --
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
+-- TABILITY 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 software; see file --
+-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
+-- of the license. --
+------------------------------------------------------------------------------
+
+with Ada.Streams; use Ada.Streams;
+
+package Rewrite_Data is
+
+ type Buffer
+ (Size, Size_Pattern, Size_Value : Stream_Element_Offset) is
+ limited private;
+
+ function Create
+ (Pattern, Value : String;
+ Size : Stream_Element_Offset := 1_024) return Buffer;
+ -- Create and return a buffer
+
+ procedure Write
+ (B : in out Buffer;
+ Data : Stream_Element_Array;
+ Output : not null access procedure (Data : Stream_Element_Array));
+ -- Write Data into the buffer, call Output for any prepared data
+
+ function Size (B : Buffer) return Natural;
+ -- Returns the current size of the buffer (count of Stream_Array_Element)
+
+ procedure Flush
+ (B : in out Buffer;
+ Output : not null access procedure (Data : Stream_Element_Array));
+ -- Call Output for all remaining data in the buffer. The buffer is
+ -- reset and ready for another use after this call.
+
+ procedure Reset (B : in out Buffer);
+ pragma Inline (Reset);
+ -- Clear all data in buffer, B is ready for another use. Note that this is
+ -- not needed after a Flush.
+
+ procedure Rewrite
+ (B : in out Buffer;
+ Input : not null access procedure
+ (Buffer : out Stream_Element_Array;
+ Last : out Stream_Element_Offset);
+ Output : not null access procedure (Data : Stream_Element_Array));
+ -- Read data from Input, rewrite them and then call Output
+
+private
+
+ type Buffer
+ (Size, Size_Pattern, Size_Value : Stream_Element_Offset) is
+ limited record
+ -- Fully prepared/rewritten data waiting to be output
+ Buffer : Stream_Element_Array (1 .. Size);
+
+ -- Current data checked, this buffer contains every piece of data
+ -- starting with the pattern. It means that at any point:
+ -- Current (1 .. Pos_C) = Pattern (1 .. Pos_C)
+ Current : Stream_Element_Array (1 .. Size_Pattern);
+
+ -- The pattern to look for
+ Pattern : Stream_Element_Array (1 .. Size_Pattern);
+
+ -- The value the pattern is replaced by
+ Value : Stream_Element_Array (1 .. Size_Value);
+
+ Pos_C : Stream_Element_Offset; -- last valid element in Current
+ Pos_B : Stream_Element_Offset; -- last valid element in Buffer
+ end record;
+
+end Rewrite_Data;
--- src/rewrite_data.adb.orig 2014-05-16 07:42:21.000000000 +0000
+++ src/rewrite_data.adb
@@ -0,0 +1,189 @@
+------------------------------------------------------------------------------
+-- GNAT COMPILER COMPONENTS --
+-- --
+-- R E W R I T E _ D A T A --
+-- --
+-- B o d y --
+-- --
+-- Copyright (C) 2012, Free Software Foundation, Inc. --
+-- --
+-- This is free software; you can redistribute it and/or modify it under --
+-- terms of the GNU General Public License as published by the Free Soft- --
+-- ware Foundation; either version 3, or (at your option) any later ver- --
+-- sion. This software is distributed in the hope that it will be useful, --
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
+-- TABILITY 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 software; see file --
+-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
+-- of the license. --
+------------------------------------------------------------------------------
+
+with Ada.Unchecked_Conversion;
+
+package body Rewrite_Data is
+
+ use Ada;
+
+ subtype SEO is Stream_Element_Offset;
+
+ ------------
+ -- Create --
+ ------------
+
+ function Create
+ (Pattern, Value : String;
+ Size : Stream_Element_Offset := 1_024) return Buffer
+ is
+
+ subtype SP is String (1 .. Pattern'Length);
+ subtype SEAP is Stream_Element_Array (1 .. Pattern'Length);
+
+ subtype SV is String (1 .. Value'Length);
+ subtype SEAV is Stream_Element_Array (1 .. Value'Length);
+
+ function To_SEAP is new Unchecked_Conversion (SP, SEAP);
+ function To_SEAV is new Unchecked_Conversion (SV, SEAV);
+
+ begin
+ return B : Buffer
+ (SEO'Max (Size, SEO (Pattern'Length)), -- can't be smaller than pattern
+ SEO (Pattern'Length),
+ SEO (Value'Length))
+ do
+ B.Pattern := To_SEAP (Pattern);
+ B.Value := To_SEAV (Value);
+ B.Pos_C := 0;
+ B.Pos_B := 0;
+ end return;
+ end Create;
+
+ -----------
+ -- Flush --
+ -----------
+
+ procedure Flush
+ (B : in out Buffer;
+ Output : not null access procedure (Data : Stream_Element_Array)) is
+ begin
+ if B.Pos_B > 0 then
+ Output (B.Buffer (1 .. B.Pos_B));
+ end if;
+
+ if B.Pos_C > 0 then
+ Output (B.Current (1 .. B.Pos_C));
+ end if;
+
+ Reset (B);
+ end Flush;
+
+ -----------
+ -- Reset --
+ -----------
+
+ procedure Reset (B : in out Buffer) is
+ begin
+ B.Pos_B := 0;
+ B.Pos_C := 0;
+ end Reset;
+
+ -------------
+ -- Rewrite --
+ -------------
+
+ procedure Rewrite
+ (B : in out Buffer;
+ Input : not null access procedure
+ (Buffer : out Stream_Element_Array;
+ Last : out Stream_Element_Offset);
+ Output : not null access procedure (Data : Stream_Element_Array))
+ is
+ Buffer : Stream_Element_Array (1 .. B.Size);
+ Last : Stream_Element_Offset;
+ begin
+ Rewrite_All : loop
+ Input (Buffer, Last);
+ exit Rewrite_All when Last = 0;
+ Write (B, Buffer (1 .. Last), Output);
+ end loop Rewrite_All;
+
+ Flush (B, Output);
+ end Rewrite;
+
+ ----------
+ -- Size --
+ ----------
+
+ function Size (B : Buffer) return Natural is
+ begin
+ return Natural (B.Pos_B + B.Pos_C);
+ end Size;
+
+ -----------
+ -- Write --
+ -----------
+
+ procedure Write
+ (B : in out Buffer;
+ Data : Stream_Element_Array;
+ Output : not null access procedure (Data : Stream_Element_Array))
+ is
+
+ procedure Need_Space (Size : Stream_Element_Offset);
+ pragma Inline (Need_Space);
+
+ ----------------
+ -- Need_Space --
+ ----------------
+
+ procedure Need_Space (Size : Stream_Element_Offset) is
+ begin
+ if B.Pos_B + Size > B.Size then
+ Output (B.Buffer (1 .. B.Pos_B));
+ B.Pos_B := 0;
+ end if;
+ end Need_Space;
+
+ begin
+ if B.Size_Pattern = 0 then
+ Output (Data);
+
+ else
+ for K in Data'Range loop
+ if Data (K) = B.Pattern (B.Pos_C + 1) then
+ -- Store possible start of a macth
+ B.Pos_C := B.Pos_C + 1;
+ B.Current (B.Pos_C) := Data (K);
+
+ else
+ -- Not part of pattern, if a start of a match was found,
+ -- remove it.
+
+ if B.Pos_C /= 0 then
+ Need_Space (B.Pos_C);
+
+ B.Buffer (B.Pos_B + 1 .. B.Pos_B + B.Pos_C) :=
+ B.Current (1 .. B.Pos_C);
+ B.Pos_B := B.Pos_B + B.Pos_C;
+ B.Pos_C := 0;
+ end if;
+
+ Need_Space (1);
+ B.Pos_B := B.Pos_B + 1;
+ B.Buffer (B.Pos_B) := Data (K);
+ end if;
+
+ if B.Pos_C = B.Size_Pattern then
+ -- The pattern is found
+
+ Need_Space (B.Size_Value);
+
+ B.Buffer (B.Pos_B + 1 .. B.Pos_B + B.Size_Value) := B.Value;
+ B.Pos_C := 0;
+ B.Pos_B := B.Pos_B + B.Size_Value;
+ end if;
+ end loop;
+ end if;
+ end Write;
+
+end Rewrite_Data;