gtkada_21.0.0_3c1373c0/src/gtkada-bindings.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
------------------------------------------------------------------------------
--               GtkAda - Ada95 binding for the Gimp Toolkit                --
--                                                                          --
--                     Copyright (C) 2006-2018, AdaCore                     --
--                                                                          --
-- 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 MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.                            --
--                                                                          --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception,   --
-- version 3.1, as published by the Free Software Foundation.               --
--                                                                          --
-- You should have received a copy of the GNU General Public License and    --
-- a copy of the GCC Runtime Library Exception along with this program;     --
-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
-- <http://www.gnu.org/licenses/>.                                          --
--                                                                          --
------------------------------------------------------------------------------

with Ada.Unchecked_Conversion;
with Glib;                 use Glib;
with Glib.Object;          use Glib.Object;
with GNAT.IO;
with GNAT.Strings;         use GNAT.Strings;
with Interfaces.C;         use Interfaces.C;
with Interfaces.C.Strings; use Interfaces.C.Strings;

package body Gtkada.Bindings is

   procedure Default_Exception_Handler
      (Occurrence : Ada.Exceptions.Exception_Occurrence);
   On_Exception : Exception_Handler := Default_Exception_Handler'Access;

   --------------------
   -- String_Or_Null --
   --------------------

   function String_Or_Null
     (S : String) return Interfaces.C.Strings.chars_ptr is
   begin
      if S = "" then
         return Null_Ptr;
      else
         return New_String (S);
      end if;
   end String_Or_Null;

   function String_Or_Null (S : String) return Gtkada.Types.Chars_Ptr is
   begin
      if S = "" then
         return Gtkada.Types.Null_Ptr;
      else
         return Gtkada.Types.New_String (S);
      end if;
   end String_Or_Null;

   --------------------
   -- To_String_List --
   --------------------

   function To_String_List
     (C : Gtkada.Types.Chars_Ptr_Array) return String_List
   is
      Count : Natural := 0;
      use type Gtkada.Types.Chars_Ptr;
   begin
      while C (size_t (Count)) /= Gtkada.Types.Null_Ptr loop
         Count := Count + 1;
      end loop;

      return To_String_List (C, Gint (Count));
   end To_String_List;

   -----------------------------
   -- To_String_List_And_Free --
   -----------------------------

   function To_String_List_And_Free
     (C : chars_ptr_array_access) return String_List
   is
      Result : constant String_List := To_String_List (C.all);
   begin
      g_strfreev (C);
      return Result;
   end To_String_List_And_Free;

   --------------------
   -- To_String_List --
   --------------------

   function To_String_List
     (C : Gtkada.Types.Chars_Ptr_Array; N : Gint)
      return GNAT.Strings.String_List
   is
      Result : String_List (1 .. Natural (N));
   begin
      for R in Result'Range loop
         Result (R) := new String'(Gtkada.Types.Value (C (size_t (R) - 1)));
      end loop;
      return Result;
   end To_String_List;

   ----------------------
   -- From_String_List --
   ----------------------

   function From_String_List
     (C : String_List) return Gtkada.Types.Chars_Ptr_Array
   is
      Result : Gtkada.Types.Chars_Ptr_Array (0 .. C'Length);
   begin
      for S in C'Range loop
         Result (size_t (S - C'First)) := Gtkada.Types.New_String (C (S).all);
      end loop;
      Result (Result'Last) := Gtkada.Types.Null_Ptr;
      return Result;
   end From_String_List;

   ------------------
   -- To_Chars_Ptr --
   ------------------

   function To_Chars_Ptr
     (C : chars_ptr_array_access) return Gtkada.Types.Chars_Ptr_Array
   is
      Count : size_t := 0;
      use type Gtkada.Types.Chars_Ptr;
   begin
      while C (Count) /= Gtkada.Types.Null_Ptr loop
         Count := Count + 1;
      end loop;

      declare
         Result : Gtkada.Types.Chars_Ptr_Array (0 .. Count - 1);
      begin
         for J in Result'Range loop
            Result (J) := C (J);
         end loop;
         return Result;
      end;
   end To_Chars_Ptr;

   --------------------------------
   -- Generic_To_Address_Or_Null --
   --------------------------------

   function Generic_To_Address_Or_Null
     (Val : System.Address) return System.Address
   is
      type T_Access is access all T;
      function Convert is new Ada.Unchecked_Conversion
        (System.Address, T_Access);
   begin
      if Convert (Val).all = Null_T then
         return System.Null_Address;
      else
         return Val;
      end if;
   end Generic_To_Address_Or_Null;

   -----------------------------------
   -- To_Gint_Array_Zero_Terminated --
   -----------------------------------

   function To_Gint_Array_Zero_Terminated
     (Arr : Gint_Arrays.Unbounded_Array_Access) return Glib.Gint_Array
   is
      Count : Natural := Arr'First;
   begin
      while Arr (Count) /= 0 loop
         Count := Count + 1;
      end loop;

      declare
         Result : Gint_Array (1 .. Count);
      begin
         for R in Result'Range loop
            Result (R) := Arr (R - Result'First + Arr'First);
         end loop;
         return Result;
      end;
   end To_Gint_Array_Zero_Terminated;

   --------------------
   -- Value_And_Free --
   --------------------

   function Value_And_Free
     (Str : Interfaces.C.Strings.chars_ptr) return String
   is
   begin
      if Str = Null_Ptr then
         return "";
      end if;

      declare
         procedure C_Free (S : chars_ptr);
         pragma Import (C, C_Free, "free");

         Val : constant String := Value (Str);
      begin
         --  Since Str was allocated by gtk+ via malloc(), and not via
         --  System.Memory, we should not be using Interfaces.C.Strings.Free
         --  which goes through System.Memory. So we call free() directly
         --  instead.
         C_Free (Str);

         return Val;
      end;
   end Value_And_Free;

   --------------------
   -- Value_And_Free --
   --------------------

   function Value_And_Free
     (Str : Gtkada.Types.Chars_Ptr) return String
   is
      use type Gtkada.Types.Chars_Ptr;
   begin
      if Str = Gtkada.Types.Null_Ptr then
         return "";
      end if;

      declare
         Val : constant String := Gtkada.Types.Value (Str);
      begin
         Gtkada.Types.g_free (Str);
         return Val;
      end;
   end Value_And_Free;

   -------------------------
   -- Value_Allowing_Null --
   -------------------------

   function Value_Allowing_Null
     (Str : Interfaces.C.Strings.chars_ptr) return String
   is
   begin
      if Str = Null_Ptr then
         return "";
      end if;

      return Interfaces.C.Strings.Value (Str);
   end Value_Allowing_Null;

   function Value_Allowing_Null
     (Str : Gtkada.Types.Chars_Ptr) return String
   is
      use type Gtkada.Types.Chars_Ptr;
   begin
      if Str = Gtkada.Types.Null_Ptr then
         return "";
      end if;

      return Gtkada.Types.Value (Str);
   end Value_Allowing_Null;

   function Value_Allowing_Null
     (Str : Interfaces.C.Strings.chars_ptr) return Glib.Signal_Name
   is
   begin
      if Str = Null_Ptr then
         return "";
      end if;

      return Glib.Signal_Name (String'(Interfaces.C.Strings.Value (Str)));
   end Value_Allowing_Null;

   function Value_Allowing_Null
     (Str : Gtkada.Types.Chars_Ptr) return Glib.Signal_Name
   is
      use type Gtkada.Types.Chars_Ptr;
   begin
      if Str = Gtkada.Types.Null_Ptr then
         return "";
      end if;

      return Glib.Signal_Name (String'(Gtkada.Types.Value (Str)));
   end Value_Allowing_Null;

   ---------------------------------
   -- Unchecked_Do_Signal_Connect --
   ---------------------------------

   procedure Unchecked_Do_Signal_Connect
     (Object              : not null access Glib.Object.GObject_Record'Class;
      C_Name              : Glib.Signal_Name;
      Marshaller          : C_Marshaller;
      Handler             : System.Address;
      Destroy             : System.Address := System.Null_Address;
      After               : Boolean := False;
      Slot_Object         : access Glib.Object.GObject_Record'Class := null)
   is
      function Internal
        (Instance : System.Address;
         Detailed_Signal : Glib.Signal_Name;
         Closure  : GClosure;
         After    : Gint := 0) return Gulong;
      pragma Import (C, Internal, "g_signal_connect_closure");

      use type System.Address;
      Id : Gulong;
      Closure : GClosure;
      pragma Unreferenced (Id);

   begin
      if Slot_Object /= null then
         Closure := CClosure_New (Handler, Get_Object (Slot_Object), Destroy);
         Watch_Closure (Get_Object (Slot_Object), Closure);
      else
         Closure := CClosure_New (Handler, System.Null_Address, Destroy);
      end if;

      --  Could also use Set_Meta_Marshal to pass user data to the marshaller
      Set_Marshal (Closure, Marshaller);

      Id := Internal
        (Get_Object (Object),
         C_Name,
         Closure => Closure,
         After   => Boolean'Pos (After));
   end Unchecked_Do_Signal_Connect;

   ---------------------------------
   -- Unchecked_Do_Signal_Connect --
   ---------------------------------

   procedure Unchecked_Do_Signal_Connect
     (Object              : Glib.Types.GType_Interface;
      C_Name              : Glib.Signal_Name;
      Marshaller          : C_Marshaller;
      Handler             : System.Address;
      Destroy             : System.Address := System.Null_Address;
      After               : Boolean := False;
      Slot_Object         : access Glib.Object.GObject_Record'Class := null)
   is
      function Internal
        (Instance : Glib.Types.GType_Interface;
         Detailed_Signal : Glib.Signal_Name;
         Closure  : GClosure;
         After    : Gint := 0) return Gulong;
      pragma Import (C, Internal, "g_signal_connect_closure");

      use type System.Address;
      Id      : Gulong;
      Closure : GClosure;
      pragma Unreferenced (Id);

   begin
      if Slot_Object /= null then
         Closure := CClosure_New (Handler, Get_Object (Slot_Object), Destroy);
         Watch_Closure (Get_Object (Slot_Object), Closure);
      else
         Closure := CClosure_New (Handler, System.Null_Address, Destroy);
      end if;

      --  Could also use Set_Meta_Marshal to pass user data to the marshaller
      Set_Marshal (Closure, Marshaller);

      Id := Internal
        (Object,
         C_Name,
         Closure => Closure,
         After   => Boolean'Pos (After));
   end Unchecked_Do_Signal_Connect;

   -----------------------
   -- Process_Exception --
   -----------------------

   procedure Process_Exception (E : Ada.Exceptions.Exception_Occurrence) is
   begin
      On_Exception (E);
   exception
      when E : others =>
         --  never propagate the exception to C
         Default_Exception_Handler (E);
   end Process_Exception;

   -------------------------------
   -- Default_Exception_Handler --
   -------------------------------

   procedure Default_Exception_Handler
      (Occurrence : Ada.Exceptions.Exception_Occurrence)
   is
   begin
      GNAT.IO.Put_Line
         (GNAT.IO.Standard_Error,
          Ada.Exceptions.Exception_Information (Occurrence));
   end Default_Exception_Handler;

   ----------------------
   -- Set_On_Exception --
   ----------------------

   procedure Set_On_Exception (Handler : Exception_Handler) is
   begin
      On_Exception := Handler;
   end Set_On_Exception;

end Gtkada.Bindings;