agpl_1.0.0_b5da3320/src/agpl-strings.adb

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
with Ada.Characters.Handling;
with Ada.Strings;
with Ada.Strings.Fixed;

--  with Agpl.Text_Io; use Agpl.Text_Io;

package body Agpl.Strings is

   ------------------------------------------------------------------------
   -- Pos                                                                --
   ------------------------------------------------------------------------
   --  Pos of Pattern in S, starting at Start
   --  Returns 0 if not found
   function Pos (S : in String; Pattern : in String; Start : in Positive := 1)
      return Natural
   is
   begin
      return Ada.Strings.Fixed.Index (S (S'First + Start - 1 .. S'Last), Pattern);
   end Pos;

   -----------
   -- Count --
   -----------

   function Count (S, Pattern : String) return Natural is
      Aux   : constant String (1 .. S'Length) := S;
      Found : Natural := Pos (Aux, Pattern);
      Times : Natural := 0;
   begin
      while Found > 0 loop
         Times := Times + 1;
         Found := Pos (Aux, Pattern, Found + 1);
      end loop;
      return Times;
   end Count;

   ------------------------------------------------------------------------
   -- To_lower                                                           --
   ------------------------------------------------------------------------
   function To_lower (This : in String) return String is
   begin
      return Ada.Characters.Handling.To_lower (This);
   end To_lower;

   ------------------------------------------------------------------------
   -- To_upper                                                           --
   ------------------------------------------------------------------------
   function To_upper (This : in String) return String is
   begin
      return Ada.Characters.Handling.To_upper (This);
   end To_upper;

   ------------------------------------------------------------------------
   -- Lpad                                                               --
   ------------------------------------------------------------------------
   function Lpad (
      S    : in String;
      Size : in Natural;
      Fill : in Character := ' ') return String
   is
   begin
      return S & String'(1 .. Size - S'Length => Fill);
   end Lpad;

   ------------------------------------------------------------------------
   -- Rpad                                                               --
   ------------------------------------------------------------------------
   function Rpad (
      S    : in String;
      Size : in Natural;
      Fill : in Character := ' ') return String
   is
   begin
      return String'(1 .. Size - S'Length => Fill) & S;
   end Rpad;

   ------------------------------------------------------------------------
   -- Contains                                                           --
   ------------------------------------------------------------------------
   --  Says if a string is substring of another:
   function Contains (Search_in, Search_for : in String) return Boolean is
   begin
      return Ada.Strings.Fixed.Index (Search_in, Search_for) > 0;
   end Contains;

   ------------------------------------------------------------------------
   -- Starts                                                             --
   ------------------------------------------------------------------------
   --  Says if a string starts with some other:
   function Starts (Search_in, Prefix : in String) return Boolean is
   begin
      if Prefix'Length > Search_in'Length then
         return False;
      else
         return Search_in (Search_in'First .. Search_in'First + Prefix'Length - 1) = Prefix;
      end if;
   end Starts;

   -------------
   -- Replace --
   -------------

   function Replace (S, Pattern, New_Pattern : String) return String is
      Result : String (S'First .. S'First + S'Length * New_Pattern'Length + S'Length);
      --  Worst case: all replaced or nothing replaced with New_Pattern = ""

      Pos    : Positive := Result'First;
      Wold   : constant Natural := Pattern'Length - 1;
      Wnew   : constant Integer := New_Pattern'Length - 1;
      I      : Positive := S'First;
   begin
      while I + Wold <= S'Last loop
         if S (I .. I + Wold) = Pattern then
            Result (Pos .. Pos + Wnew) := New_Pattern;
            I   := I   + Pattern'Length;
            Pos := Pos + New_Pattern'Length;
         else
            Result (Pos) := S (I);
            I   := I   + 1;
            Pos := Pos + 1;
         end if;
      end loop;

      Result (Pos .. Pos + S'Last - I) := S (I .. S'Last);
      Pos := Pos + S'Last - I + 1;

--        Put_Line ("Old:" & S);
--        Put_Line ("Pos:" & Pos'Img);
--        Put_Line ("New:" & Result);

      return Result (Result'First .. Pos - 1);

   end Replace;

   ----------
   -- Left --
   ----------

   function Left (This : in String; Count : Natural) return String is
   begin
      return This (This'First .. Natural'Min (This'Last, This'First + Count - 1));
   end Left;

   ----------------
   -- Capitalize --
   ----------------

   function Capitalize (This : in String) return String is
   begin
      return U (This (This'First .. This'First)) &
             L (This (This'First + 1 .. This'Last));
   end Capitalize;

   ------------
   -- Crunch --
   ------------

   function Crunch (This : String; Sep : Character := ' ') return String is
      R : String (This'Range);
      I : Positive := R'First;
      Skip : Boolean := False;
   begin
      for J in This'Range loop
         if This (J) = Sep then
            if not Skip then
               R (I) := This (J);
               I     := I + 1;
               Skip  := True;
            end if;
         else
            R (I) := This (J);
            I     := I + 1;
            Skip  := False;
         end if;
      end loop;
      return R (R'First .. I - 1);
   end Crunch;

   -----------
   -- Untab --
   -----------

   function Untab (This : String) return String is
   begin
      return Replace (This, "" & Character'Val (9), " ");
   end Untab;

   ------------------
   -- Enum_Padding --
   ------------------

   package body Enum_Padding is

   ---------
   -- Pad --
   ---------

      function Pad (X            : Enum;
                    Align        : Alignments := Left;
                    Extra_Pad    : Natural    := 0;
                    Fill         : Character := ' ')
                    return         String
      is
      begin
         --  Done here on first call to avoid non-preelaborable
         if Max_Length = 0 then
            for X in Enum'Range loop
               Max_Length := Natural'Max (Max_Length, X'Img'Length);
            end loop;
         end if;

         case Align is
            when Left =>
               return Lpad (X'Img, Max_Length + Extra_Pad, Fill);
            when Right =>
               return Rpad (X'Img, Max_Length + Extra_Pad, Fill);
         end case;
      end Pad;

   end Enum_Padding;

end Agpl.Strings;