@@ -85,10 +85,12 @@ def __init__(self, ada, property):
85
85
self .is_ptr = False
86
86
self .param = ada # type as parameter
87
87
self .cparam = ada # type for Ada subprograms binding to C
88
- self .cleanup = None # If set, a tmp variable is created to hold the
89
- # result of convert during the call, and is then
90
- # free by calling this cleanup. Use "%s" as the
91
- # name of the variable.
88
+
89
+ self .cleanup = None
90
+ # If set, a tmp variable is created to hold the result of convert during
91
+ # the call, and is then free by calling this cleanup. Use "%s" as the
92
+ # name of the variable.
93
+
92
94
self .isArray = False
93
95
94
96
# In some cases, Ada provides a special value for a parameter that
@@ -132,8 +134,8 @@ def convert_to_c(self, pkg=None):
132
134
It can also use %(var)s which will be substituted by the name of the
133
135
parameter.
134
136
Otherwise, it is used as " Tmp := <convert>".
135
- It might be necessary to also override add_with() to add the necessary
136
- with statements.
137
+ It might be necessary to also override add_with() to add the
138
+ necessary with statements.
137
139
"""
138
140
139
141
if self .allow_none and self .val_or_null :
@@ -193,8 +195,8 @@ def as_c_param(self, pkg=None):
193
195
return self .cparam
194
196
195
197
def as_call (
196
- self , name , pkg , wrapper = "%s" , lang = "ada" , mode = "in" , value = None ,
197
- is_temporary_variable = True ):
198
+ self , name , pkg , wrapper = "%s" , lang = "ada" , mode = "in" , value = None ,
199
+ is_temporary_variable = True ):
198
200
"""'name' represents a parameter of type 'self'.
199
201
'pkg' is the Package instance in which the call occurs.
200
202
'wrapper' is used in the call itself, and %s is replaced by the
@@ -227,18 +229,20 @@ def as_call(
227
229
# Unless we are already using a temporary variable.
228
230
229
231
if (ret
230
- and ret != "%(var)s"
231
- and mode != "in"
232
- and not is_temporary_variable ):
232
+ and ret != "%(var)s"
233
+ and mode != "in"
234
+ and not is_temporary_variable ):
233
235
234
236
tmp = "Tmp_%s" % name
235
237
236
238
if mode in ("out" , "access" ):
237
- tmpvars = [Local_Var (name = tmp , type = returns [4 ], aliased = True )]
239
+ tmpvars = [Local_Var (
240
+ name = tmp , type = returns [4 ], aliased = True )]
238
241
else :
239
242
tmpvars = [
240
243
Local_Var (name = tmp , type = returns [4 ], aliased = True ,
241
- default = self .convert_to_c (pkg = pkg ) % {"var" :name })]
244
+ default = self .convert_to_c (pkg = pkg ) % {
245
+ "var" : name })]
242
246
243
247
if "%(tmp)s" in ret :
244
248
tmp2 = "Tmp2_%s" % name
@@ -264,17 +268,17 @@ def as_call(
264
268
call = VariableCall (
265
269
call = wrapper % tmp ,
266
270
precall = self .convert_to_c (pkg = pkg ) % {
267
- "var" :name , "tmp" :tmp },
271
+ "var" : name , "tmp" : tmp },
268
272
postcall = self .cleanup % tmp ,
269
- tmpvars = [Local_Var (name = tmp , type = self .cparam )]
270
- + []) # additional_tmp_vars
273
+ tmpvars = [Local_Var (name = tmp , type = self .cparam )] + [])
271
274
272
275
elif self .cleanup :
273
276
tmp = "Tmp_%s" % name
274
- conv = self .convert_to_c (pkg = pkg ) % {"var" :name }
277
+ conv = self .convert_to_c (pkg = pkg ) % {"var" : name }
275
278
276
- # Initialize the temporary variable with a default value, in case
277
- # it is an unconstrained type (a chars_ptr_array for instance)
279
+ # Initialize the temporary variable with a default value, in
280
+ # case it is an unconstrained type (a chars_ptr_array for
281
+ # instance)
278
282
call = VariableCall (
279
283
call = wrapper % tmp ,
280
284
precall = '' ,
@@ -283,7 +287,7 @@ def as_call(
283
287
name = tmp , type = AdaType (self .cparam ), default = conv )])
284
288
285
289
else :
286
- conv = self .convert_to_c (pkg = pkg ) % {"var" :name }
290
+ conv = self .convert_to_c (pkg = pkg ) % {"var" : name }
287
291
call = VariableCall (
288
292
call = wrapper % conv , precall = '' , postcall = "" , tmpvars = [])
289
293
@@ -411,7 +415,7 @@ def __init__(self, ada, userecord=True, allow_none=False, classwide=False):
411
415
self .is_ptr = False
412
416
self .classwide = classwide # Parameter should include "'Class"
413
417
self .userecord = userecord # Parameter should be "access .._Record"
414
- self .allow_none = allow_none
418
+ self .allow_none = allow_none
415
419
416
420
def convert_from_c (self ):
417
421
stub = "Stub_%s" % (base_name (self .ada ), )
@@ -451,6 +455,7 @@ def copy(self):
451
455
result = CType .copy (self )
452
456
return result
453
457
458
+
454
459
class Tagged (GObject ):
455
460
"""Tagged types that map C objects, but do not derive from GObject"""
456
461
@@ -467,6 +472,7 @@ def as_ada_param(self, pkg):
467
472
# Make sure to bind as a CType here, not as a GOBject
468
473
return CType .as_ada_param (self , pkg )
469
474
475
+
470
476
class UTF8 (CType ):
471
477
def __init__ (self ):
472
478
CType .__init__ (self , "UTF8_String" , "Glib.Properties.Property_String" )
@@ -539,7 +545,7 @@ def add_with(self, pkg=None, specs=False):
539
545
if pkg :
540
546
pkg .add_with ("GNAT.Strings" , specs = True )
541
547
pkg .add_with ("Interfaces.C.Strings" , specs = specs )
542
- pkg .add_with ("Gtkada.Bindings" , specs = specs )
548
+ pkg .add_with ("Gtkada.Bindings" , specs = specs , might_be_unused = True )
543
549
544
550
545
551
class Record (CType ):
@@ -2048,20 +2054,26 @@ def _output_withs(self, withs):
2048
2054
if withs :
2049
2055
result = []
2050
2056
m = max_length (withs )
2051
- for w in sorted (withs .keys ()):
2057
+ had_warnings_off = False
2058
+
2059
+ # sort so that all packages for which 'might_be_unused' is True
2060
+ # are last in the list
2061
+
2062
+ for w in sorted (withs .keys (), key = lambda w : 'zz%s' % w if withs [w ][1 ] else w ):
2052
2063
do_use , might_be_unused = withs [w ]
2053
2064
2054
- if might_be_unused :
2065
+ if might_be_unused and not had_warnings_off :
2055
2066
result .append ("pragma Warnings(Off); -- might be unused" )
2067
+ had_warnings_off = True
2056
2068
2057
2069
if do_use :
2058
2070
result .append (
2059
2071
"with %-*s use %s;" % (m + 1 , w + ";" , w ))
2060
2072
else :
2061
2073
result .append ("with %s;" % w )
2062
2074
2063
- if might_be_unused :
2064
- result .append ("pragma Warnings(On);" )
2075
+ if had_warnings_off :
2076
+ result .append ("pragma Warnings(On);" )
2065
2077
2066
2078
return "\n " .join (result ) + "\n "
2067
2079
return ""
0 commit comments