adacl_eastrings_6.1.1_e075ab39/src/adacl-eastrings-ucs_2.ads

  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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
-----------------------------------------------------------------------------
--
--  Copyright 2004, 2006 Björn Persson.
--
--  This library is free software; you can redistribute it and/or modify it
--  under the terms of the GNU General Public License, version 2, as published
--  by the Free Software Foundation.
--
--  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 General Public License. This exception does not however invalidate
--  any other reasons why the executable file might be covered by the General
--  Public License.
--
----------------------------------------------------------------------------

pragma License (Modified_Gpl);
pragma Ada_2022;

with Ada.Strings.Wide_Unbounded; use Ada.Strings.Wide_Unbounded;

package AdaCL.EAstrings.UCS_2 is
   pragma Elaborate_Body;

   ----------------------------------------------------------
   -- Conversion, Concatenation, and Selection Subprograms --
   ----------------------------------------------------------

   function To_EAstring (Source : in Wide_String) return EAstring;

   function To_EAstring
     (Source : in Unbounded_Wide_String)
      return   EAstring;

   function To_Wide_String (Source : in EAstring) return Wide_String;

   function To_Unbounded_Wide_String
     (Source : in EAstring)
      return   Unbounded_Wide_String;

   function "+" (Source : in Wide_String) return EAstring renames To_EAstring;

   function "+" (Source : in Unbounded_Wide_String) return EAstring renames
      To_EAstring;

   function "+" (Source : in EAstring) return Wide_String renames
      To_Wide_String;

   function "+" (Source : in EAstring) return Unbounded_Wide_String renames
      To_Unbounded_Wide_String;

   procedure Append (Source : in out EAstring; New_Item : in Wide_String);

   procedure Append
     (Source   : in out EAstring;
      New_Item : in Unbounded_Wide_String);

   procedure Append
     (Source   : in out EAstring;
      New_Item : in Wide_Character);

   function "&"
     (Left  : in EAstring;
      Right : in Wide_String)
      return  EAstring;

   function "&"
     (Left  : in Wide_String;
      Right : in EAstring)
      return  EAstring;

   function "&"
     (Left  : in EAstring;
      Right : in Unbounded_Wide_String)
      return  EAstring;

   function "&"
     (Left  : in Unbounded_Wide_String;
      Right : in EAstring)
      return  EAstring;

   function "&"
     (Left  : in EAstring;
      Right : in Wide_Character)
      return  EAstring;

   function "&"
     (Left  : in Wide_Character;
      Right : in EAstring)
      return  EAstring;

   function Element
     (Source : in EAstring;
      Index  : in Positive)
      return   Wide_Character;

   procedure Replace_Element
     (Source : in out EAstring;
      Index  : in Positive;
      By     : Wide_Character);

   function Slice
     (Source : in EAstring;
      Low    : in Positive;
      High   : in Natural)
      return   Wide_String;

   function "="
     (Left  : in EAstring;
      Right : in Wide_String)
      return  Boolean;

   function "="
     (Left  : in Wide_String;
      Right : in EAstring)
      return  Boolean;

   ------------------------
   -- Search Subprograms --
   ------------------------

   function Index
     (Source  : in EAstring;
      Pattern : in Wide_String;
      Going   : in Direction := Forward)
   --      Mapping  : in Wide_Character_Mapping := Identity) to be added later
      return    Natural;

   function Index
     (Source  : in EAstring;
      Pattern : in Unbounded_Wide_String;
      Going   : in Direction := Forward)
   --      Mapping  : in Wide_Character_Mapping := Identity) to be added later
      return    Natural;

   function Count
     (Source  : in EAstring;
      Pattern : in Wide_String)
   --      Mapping : in Wide_Character_Mapping := Identity) to be added later
      return    Natural;

   function Count
     (Source  : in EAstring;
      Pattern : in Unbounded_Wide_String)
   --      Mapping : in Wide_Character_Mapping := Identity) to be added later
      return    Natural;

   ---------------------------------------
   -- String Transformation Subprograms --
   ---------------------------------------

   function Replace_Slice
     (Source : in EAstring;
      Low    : in Positive;
      High   : in Natural;
      By     : in Wide_String)
      return   EAstring;

   function Replace_Slice
     (Source : in EAstring;
      Low    : in Positive;
      High   : in Natural;
      By     : in Unbounded_Wide_String)
      return   EAstring;

   procedure Replace_Slice
     (Source : in out EAstring;
      Low    : in Positive;
      High   : in Natural;
      By     : in Wide_String);

   procedure Replace_Slice
     (Source : in out EAstring;
      Low    : in Positive;
      High   : in Natural;
      By     : in Unbounded_Wide_String);

   function Insert
     (Source   : in EAstring;
      Before   : in Positive;
      New_Item : in Wide_String)
      return     EAstring;

   function Insert
     (Source   : in EAstring;
      Before   : in Positive;
      New_Item : in Unbounded_Wide_String)
      return     EAstring;

   procedure Insert
     (Source   : in out EAstring;
      Before   : in Positive;
      New_Item : in Wide_String);

   procedure Insert
     (Source   : in out EAstring;
      Before   : in Positive;
      New_Item : in Unbounded_Wide_String);

   function Overwrite
     (Source   : in EAstring;
      Position : in Positive;
      New_Item : in Wide_String)
      return     EAstring;

   function Overwrite
     (Source   : in EAstring;
      Position : in Positive;
      New_Item : in Unbounded_Wide_String)
      return     EAstring;

   procedure Overwrite
     (Source   : in out EAstring;
      Position : in Positive;
      New_Item : in Wide_String);

   procedure Overwrite
     (Source   : in out EAstring;
      Position : in Positive;
      New_Item : in Unbounded_Wide_String);

   function "*"
     (Left  : in Natural;
      Right : in Wide_String)
      return  EAstring;

   function "*"
     (Left  : in Natural;
      Right : in Unbounded_Wide_String)
      return  EAstring;

   function "*"
     (Left  : in Natural;
      Right : in Wide_Character)
      return  EAstring;

end AdaCL.EAstrings.UCS_2;