glib: use copy-slots-to-{native,proxy} in variant-cstruct
[cl-gtk2.git] / glib / gobject.boxed.lisp
1 (in-package :gobject)
2
3 (define-foreign-type g-boxed-foreign-type ()
4   ((info :initarg :info
5          :accessor g-boxed-foreign-info
6          :initform (error "info must be specified"))
7    (return-p :initarg :return-p
8              :accessor g-boxed-foreign-return-p
9              :initform nil))
10   (:actual-type :pointer))
11
12 (eval-when (:compile-toplevel :load-toplevel :execute)
13   (defstruct g-boxed-info
14     name
15     g-type))
16
17 (eval-when (:compile-toplevel :load-toplevel :execute)
18   (defun get-g-boxed-foreign-info (name)
19     (get name 'g-boxed-foreign-info)))
20
21 (defvar *g-type-name->g-boxed-foreign-info* (make-hash-table :test 'equal))
22
23 (defun get-g-boxed-foreign-info-for-gtype (g-type-designator)
24   (or (gethash (g-type-string g-type-designator) *g-type-name->g-boxed-foreign-info*)
25       (error "Unknown GBoxed type '~A'" (g-type-string g-type-designator))))
26
27 (defgeneric make-foreign-type (info &key return-p))
28
29 (define-parse-method g-boxed-foreign (name &rest options)
30   (let ((info (get-g-boxed-foreign-info name)))
31     (assert info nil "Unknown foreign GBoxed type ~A" name)
32     (make-foreign-type info :return-p (member :return options))))
33
34 (defgeneric boxed-copy-fn (type-info native)
35   (:method (type-info native)
36     (g-boxed-copy (g-boxed-info-g-type type-info) native)))
37
38 (defmethod boxed-copy-fn :before (type-info native)
39   (format t "(boxed-copy-fn ~A ~A)~%" (g-boxed-info-name type-info) native))
40
41 (defgeneric boxed-free-fn (type-info native)
42   (:method (type-info native)
43     (g-boxed-free (g-boxed-info-g-type type-info) native)))
44
45 (defmethod boxed-free-fn :before (type-info native)
46   (format t "(boxed-free-fn ~A ~A)~%" (g-boxed-info-name type-info) native))
47
48 (defmethod has-callback-cleanup ((type g-boxed-foreign-type))
49   t)
50
51 (eval-when (:load-toplevel :compile-toplevel :execute)
52   (defstruct (g-boxed-cstruct-wrapper-info (:include g-boxed-info))
53     cstruct-description))
54
55 (defclass boxed-cstruct-foreign-type (g-boxed-foreign-type) ())
56
57 (defstruct cstruct-slot-description
58   name
59   type
60   count
61   initform)
62
63 (defmethod make-load-form ((object cstruct-slot-description) &optional environment)
64   (make-load-form-saving-slots object :environment environment))
65
66 (defstruct cstruct-description
67   name
68   slots)
69
70 (defmethod make-load-form ((object cstruct-description) &optional environment)
71   (make-load-form-saving-slots object :environment environment))
72
73 (defun parse-cstruct-slot (slot)
74   (destructuring-bind (name type &key count initform) slot
75     (make-cstruct-slot-description :name name :type type :count count :initform initform)))
76
77 (defun parse-cstruct-definition (name slots)
78   (make-cstruct-description :name name
79                             :slots (mapcar #'parse-cstruct-slot slots)))
80
81 (defmacro define-g-boxed-cstruct (name g-type-name &body slots)
82   (let ((cstruct-description (parse-cstruct-definition name slots)))
83     `(progn
84        (defstruct ,name
85          ,@(iter (for slot in (cstruct-description-slots cstruct-description))
86                  (for name = (cstruct-slot-description-name slot))
87                  (for initform = (cstruct-slot-description-initform slot))
88                  (collect (list name initform))))
89        (defcstruct ,(generated-cstruct-name name)
90          ,@(iter (for slot in (cstruct-description-slots cstruct-description))
91                  (for name = (cstruct-slot-description-name slot))
92                  (for type = (cstruct-slot-description-type slot))
93                  (for count = (cstruct-slot-description-count slot))
94                  (collect `(,name ,type ,@(when count `(:count ,count))))))
95        (eval-when (:compile-toplevel :load-toplevel :execute)
96          (setf (get ',name 'g-boxed-foreign-info)
97                (make-g-boxed-cstruct-wrapper-info :name ',name
98                                                   :g-type ,g-type-name
99                                                   :cstruct-description ,cstruct-description)
100                (gethash ,g-type-name *g-type-name->g-boxed-foreign-info*)
101                (get ',name 'g-boxed-foreign-info))))))
102
103 (defmethod make-foreign-type ((info g-boxed-cstruct-wrapper-info) &key return-p)
104   (make-instance 'boxed-cstruct-foreign-type :info info :return-p return-p))
105
106 (defun memcpy (target source bytes)
107   (iter (for i from 0 below bytes)
108         (setf (mem-aref target :uchar i)
109               (mem-aref source :uchar i))))
110
111 (defmethod boxed-copy-fn ((info g-boxed-cstruct-wrapper-info) native)
112   (if (g-boxed-info-g-type info)
113       (g-boxed-copy (g-boxed-info-g-type info) native)
114       (let ((copy (foreign-alloc (generated-cstruct-name (g-boxed-info-name info)))))
115         (memcpy copy native (foreign-type-size (generated-cstruct-name (g-boxed-info-name info))))
116         copy)))
117
118 (defmethod boxed-free-fn ((info g-boxed-cstruct-wrapper-info) native)
119   (if (g-boxed-info-g-type info)
120       (g-boxed-free (g-boxed-info-g-type info) native)
121       (foreign-free native)))
122
123 (defun copy-slots-to-native (proxy native cstruct-description)
124   (iter (with cstruct-type = (generated-cstruct-name (cstruct-description-name cstruct-description)))
125         (for slot in (cstruct-description-slots cstruct-description))
126         (for slot-name = (cstruct-slot-description-name slot))
127         (setf (foreign-slot-value native cstruct-type slot-name)
128               (slot-value proxy slot-name))))
129
130 (defun copy-slots-to-proxy (proxy native cstruct-description)
131   (iter (with cstruct-type = (generated-cstruct-name (cstruct-description-name cstruct-description)))
132         (for slot in (cstruct-description-slots cstruct-description))
133         (for slot-name = (cstruct-slot-description-name slot))
134         (setf (slot-value proxy slot-name)
135               (foreign-slot-value native cstruct-type slot-name))))
136
137 (defmethod translate-to-foreign (proxy (type boxed-cstruct-foreign-type))
138   (if (null proxy)
139       (null-pointer)
140       (let* ((info (g-boxed-foreign-info type))
141              (native-structure-type (generated-cstruct-name (g-boxed-info-name info))))
142         (with-foreign-object (native-structure native-structure-type)
143           (copy-slots-to-native proxy native-structure (g-boxed-cstruct-wrapper-info-cstruct-description info))
144           (values (boxed-copy-fn info native-structure) proxy)))))
145
146 (defmethod free-translated-object (native-structure (type boxed-cstruct-foreign-type) proxy)
147   (when proxy
148     (let ((info (g-boxed-foreign-info type)))
149       (copy-slots-to-proxy proxy native-structure (g-boxed-cstruct-wrapper-info-cstruct-description info))
150       (boxed-free-fn info native-structure))))
151
152 (defmethod translate-from-foreign (native-structure (type boxed-cstruct-foreign-type))
153   (unless (null-pointer-p native-structure)
154     (let* ((info (g-boxed-foreign-info type))
155            (proxy-structure-type (g-boxed-info-name info))
156            (proxy (make-instance proxy-structure-type)))
157       (copy-slots-to-proxy proxy native-structure (g-boxed-cstruct-wrapper-info-cstruct-description info))
158       (when (g-boxed-foreign-return-p type)
159         (boxed-free-fn info native-structure))
160       proxy)))
161
162 (defmethod cleanup-translated-object-for-callback ((type boxed-cstruct-foreign-type) proxy native-structure)
163   (when proxy
164     (let ((info (g-boxed-foreign-info type)))
165       (copy-slots-to-native proxy native-structure (g-boxed-cstruct-wrapper-info-cstruct-description info)))))
166
167 (eval-when (:compile-toplevel :load-toplevel :execute)
168   (defstruct (g-boxed-opaque-wrapper-info (:include g-boxed-info))
169     alloc free))
170
171 (define-foreign-type boxed-opaque-foreign-type (g-boxed-foreign-type) ())
172
173 (defclass g-boxed-opaque ()
174   ((pointer :initarg :pointer
175             :initform nil
176             :accessor g-boxed-opaque-pointer)))
177
178 (defmethod make-foreign-type ((info g-boxed-opaque-wrapper-info) &key return-p)
179   (make-instance 'boxed-opaque-foreign-type :info info :return-p return-p))
180
181 (defmethod translate-to-foreign (proxy (type boxed-opaque-foreign-type))
182   (prog1 (g-boxed-opaque-pointer proxy)
183     (when (g-boxed-foreign-return-p type)
184       (tg:cancel-finalization proxy)
185       (setf (g-boxed-opaque-pointer proxy) nil))))
186
187 (defmethod free-translated-object (native (type boxed-opaque-foreign-type) param)
188   (declare (ignore native type param)))
189
190 (defun make-boxed-free-finalizer (type pointer)
191   (lambda () (boxed-free-fn type pointer)))
192
193 (defmethod translate-from-foreign (native (foreign-type boxed-opaque-foreign-type))
194   (let* ((type (g-boxed-foreign-info foreign-type))
195          (proxy (make-instance (g-boxed-info-name type) :pointer native)))
196     (tg:finalize proxy (make-boxed-free-finalizer type native))))
197
198 (defmethod cleanup-translated-object-for-callback ((type boxed-opaque-foreign-type) proxy native)
199   (tg:cancel-finalization proxy)
200   (setf (g-boxed-opaque-pointer proxy) nil))
201
202 (defmacro define-g-boxed-opaque (name g-type-name &key
203                                  (alloc (error "Alloc must be specified")))
204   (let ((native-copy (gensym "NATIVE-COPY-"))
205         (instance (gensym "INSTANCE-"))
206         (finalizer (gensym "FINALIZER-")))
207     `(progn (defclass ,name (g-boxed-opaque) ())
208             (defmethod initialize-instance :after ((,instance ,name) &key &allow-other-keys)
209               (unless (g-boxed-opaque-pointer ,instance)
210                 (let ((,native-copy ,alloc))
211                   (flet ((,finalizer () (boxed-free-fn ,g-type-name ,native-copy)))
212                     (setf (g-boxed-opaque-pointer ,instance) ,native-copy)
213                     (finalize ,instance (make-boxed-free-finalizer (get ',name 'g-boxed-foreign-info) ,native-copy))))))
214             (eval-when (:compile-toplevel :load-toplevel :execute)
215               (setf (get ',name 'g-boxed-foreign-info)
216                     (make-g-boxed-opaque-wrapper-info :name ',name
217                                                       :g-type ,g-type-name)
218                     (gethash ,g-type-name *g-type-name->g-boxed-foreign-info*)
219                     (get ',name 'g-boxed-foreign-info))))))
220
221 (defstruct var-structure
222   name
223   parent
224   slots
225   discriminator-slot
226   variants
227   resulting-cstruct-description)
228
229 (defstruct var-structure-variant
230   discriminating-values
231   structure)
232
233 (defmethod make-load-form ((object var-structure) &optional env)
234   (make-load-form-saving-slots object :environment env))
235
236 (defmethod make-load-form ((object var-structure-variant) &optional env)
237   (make-load-form-saving-slots object :environment env))
238
239 (defun var-struct-all-slots (struct)
240   (when struct
241     (append (var-struct-all-slots (var-structure-parent struct))
242             (var-structure-slots struct))))
243
244 (defun all-structures (structure)
245   (append (iter (for variant in (var-structure-variants structure))
246                 (appending (all-structures (var-structure-variant-structure variant))))
247           (list structure)))
248
249 (defun parse-variant-structure-definition (name slots &optional parent)
250   (iter (with result = (make-var-structure :name name
251                                            :parent parent
252                                            :slots nil
253                                            :discriminator-slot nil
254                                            :variants nil))
255         (for slot in slots)
256         (if (eq :variant (first slot))
257             (progn
258               (when (var-structure-discriminator-slot result)
259                 (error "Structure has more than one discriminator slot"))
260               (setf (var-structure-discriminator-slot result) (second slot)
261                     (var-structure-variants result) (parse-variants result (nthcdr 2 slot))))
262             (push (parse-cstruct-slot slot) (var-structure-slots result)))
263         (finally (setf (var-structure-slots result)
264                        (reverse (var-structure-slots result)))
265                  (unless parent
266                    (set-variant-result-structure result))
267                  (return result))))
268
269 (defun set-variant-result-structure (var-structure)
270   (setf (var-structure-resulting-cstruct-description var-structure)
271         (make-cstruct-description
272          :name
273          (var-structure-name var-structure)
274          :slots
275          (append
276           (when (var-structure-parent var-structure)
277             (cstruct-description-slots (var-structure-resulting-cstruct-description (var-structure-parent var-structure))))
278           (var-structure-slots var-structure))))
279   (iter (for variant in (var-structure-variants var-structure))
280         (for child-var-structure = (var-structure-variant-structure variant))
281         (set-variant-result-structure child-var-structure)))
282
283 (defun ensure-list (thing)
284   (if (listp thing)
285       thing
286       (list thing)))
287
288 (defun parse-variants (parent variants)
289   (iter (for var-descr in variants)
290         (for (options variant-name . slots) in variants)
291         (for variant =
292              (make-var-structure-variant
293               :discriminating-values (ensure-list options)
294               :structure (parse-variant-structure-definition variant-name slots parent)))
295         (collect variant)))
296
297 (defun generated-cstruct-name (symbol)
298   (or (get symbol 'generated-cstruct-name)
299       (setf (get symbol 'generated-cstruct-name) (gensym (format nil "GEN-~A-CSTRUCT-" (symbol-name symbol))))))
300
301 (defun generated-cunion-name (symbol)
302   (or (get symbol 'generated-cunion-name)
303       (setf (get symbol 'generated-cunion-name) (gensym (format nil "GEN-~A-CUNION-" (symbol-name symbol))))))
304
305 (defun generate-cstruct-1 (struct)
306   `(defcstruct ,(generated-cstruct-name (cstruct-description-name struct))
307      ,@(iter (for slot in (cstruct-description-slots struct))
308              (collect `(,(cstruct-slot-description-name slot) ,(cstruct-slot-description-type slot)
309                          ,@(when (cstruct-slot-description-count slot)
310                                  `(:count ,(cstruct-slot-description-count slot))))))))
311
312 (defun generate-c-structures (structure)
313   (iter (for str in (all-structures structure))
314         (for cstruct = (var-structure-resulting-cstruct-description str))
315         (collect (generate-cstruct-1 cstruct))))
316
317 (defun generate-union-1 (struct)
318   `(defcunion ,(generated-cunion-name (var-structure-name struct))
319      ,@(iter (for variant in (all-structures struct))
320              (unless (eq struct variant)
321                (collect `(,(var-structure-name variant)
322                            ,(generated-cunion-name (var-structure-name variant))))))))
323
324 (defun generate-unions (struct)
325   (iter (for str in (all-structures struct))
326         (collect (generate-union-1 str))))
327
328 (defun generate-structure-1 (str)
329   `(defstruct ,(if (var-structure-parent str)
330                    `(,(var-structure-name str) (:include ,(var-structure-name (var-structure-parent str))
331                                                          (,(var-structure-discriminator-slot (var-structure-parent str))
332                                                            ,(first (var-structure-variant-discriminating-values
333                                                                     (find str
334                                                                           (var-structure-variants
335                                                                            (var-structure-parent str))
336                                                                           :key #'var-structure-variant-structure))))))
337                    `,(var-structure-name str))
338      ,@(iter (for slot in (var-structure-slots str))
339              (collect `(,(cstruct-slot-description-name slot)
340                          ,(cstruct-slot-description-initform slot))))))
341
342 (defun generate-structures (str)
343   (iter (for variant in (reverse (all-structures str)))
344         (collect (generate-structure-1 variant))))
345
346 (defun generate-native-type-decision-procedure-1 (str proxy-var)
347   (if (null (var-structure-discriminator-slot str))
348       `(values ',(var-structure-resulting-cstruct-description str))
349       `(typecase ,proxy-var
350          ,@(iter (for variant in (var-structure-variants str))
351                  (for v-str = (var-structure-variant-structure variant))
352                  (collect `(,(var-structure-name v-str)
353                              ,(generate-native-type-decision-procedure-1 v-str proxy-var))))
354          (,(var-structure-name str)
355           (values ',(var-structure-resulting-cstruct-description str))))))
356
357 (defun generate-proxy-type-decision-procedure-1 (str native-var)
358   (if (null (var-structure-discriminator-slot str))
359       `(values ',(var-structure-name str)
360                ',(var-structure-resulting-cstruct-description str))
361       `(case (foreign-slot-value ,native-var
362                                  ',(generated-cstruct-name (var-structure-name str))
363                                  ',(var-structure-discriminator-slot str))
364          ,@(iter (for variant in (var-structure-variants str))
365                  (for v-str = (var-structure-variant-structure variant))
366                  (collect `(,(var-structure-variant-discriminating-values variant)
367                              ,(generate-proxy-type-decision-procedure-1
368                                v-str
369                                native-var))))
370          (t (values ',(var-structure-name str)
371                     ',(var-structure-resulting-cstruct-description str))))))
372
373 (defun generate-proxy-type-decision-procedure (str)
374   (let ((native (gensym "NATIVE-")))
375     `(lambda (,native)
376        ,(generate-proxy-type-decision-procedure-1 str native))))
377
378 (defun generate-native-type-decision-procedure (str)
379   (let ((proxy (gensym "PROXY-")))
380     `(lambda (,proxy)
381        ,(generate-native-type-decision-procedure-1 str proxy))))
382
383 (defun compile-proxy-type-decision-procedure (str)
384   (compile nil (generate-proxy-type-decision-procedure str)))
385
386 (defun compile-native-type-decision-procedure (str)
387   (compile nil (generate-native-type-decision-procedure str)))
388
389 (defstruct (g-boxed-variant-cstruct-info (:include g-boxed-info))
390   root
391   native-type-decision-procedure
392   proxy-type-decision-procedure)
393
394 (defmethod make-load-form ((object g-boxed-variant-cstruct-info) &optional env)
395   (make-load-form-saving-slots object :environment env))
396
397 (define-foreign-type boxed-variant-cstruct-foreign-type (g-boxed-foreign-type) ())
398
399 (defmethod make-foreign-type ((info g-boxed-variant-cstruct-info) &key return-p)
400   (make-instance 'boxed-variant-cstruct-foreign-type :info info :return-p return-p))
401
402 (defmacro define-g-boxed-variant-cstruct (name g-type-name &body slots)
403   (let* ((structure (parse-variant-structure-definition name slots)))
404     `(progn ,@(generate-c-structures structure)
405             ,@(generate-unions structure)
406             ,@(generate-structures structure)
407             (eval-when (:compile-toplevel :load-toplevel :execute)
408               (setf (get ',name 'g-boxed-foreign-info)
409                     (make-g-boxed-variant-cstruct-info :name ',name
410                                                        :g-type ,g-type-name
411                                                        :root ,structure
412                                                        :native-type-decision-procedure
413                                                        ,(generate-native-type-decision-procedure structure)
414                                                        :proxy-type-decision-procedure
415                                                        ,(generate-proxy-type-decision-procedure structure))
416                     (gethash ,g-type-name *g-type-name->g-boxed-foreign-info*)
417                     (get ',name 'g-boxed-foreign-info))))))
418
419 (defun decide-native-type (info proxy)
420   (funcall (g-boxed-variant-cstruct-info-native-type-decision-procedure info) proxy))
421
422 (defmethod boxed-copy-fn ((info g-boxed-variant-cstruct-info) native)
423   (if (g-boxed-info-g-type info)
424       (g-boxed-copy (g-boxed-info-g-type info) native)
425       (let ((copy (foreign-alloc (generated-cstruct-name (g-boxed-info-name info)))))
426         (memcpy copy native (foreign-type-size (generated-cstruct-name (g-boxed-info-name info))))
427         copy)))
428
429 (defmethod boxed-free-fn ((info g-boxed-variant-cstruct-info) native)
430   (if (g-boxed-info-g-type info)
431       (g-boxed-free (g-boxed-info-g-type info) native)
432       (foreign-free native)))
433
434 (defmethod translate-to-foreign (proxy (foreign-type boxed-variant-cstruct-foreign-type))
435   (if (null proxy)
436       (null-pointer)
437       (let* ((type (g-boxed-foreign-info foreign-type))
438              (cstruct-description (decide-native-type type proxy)))
439         (with-foreign-object (native-structure (generated-cstruct-name
440                                                 (var-structure-name
441                                                  (g-boxed-variant-cstruct-info-root type))))
442           (copy-slots-to-native proxy native-structure cstruct-description)
443           (values (boxed-copy-fn type native-structure) proxy)))))
444
445 (defun decide-proxy-type (info native-structure)
446   (funcall (g-boxed-variant-cstruct-info-proxy-type-decision-procedure info) native-structure))
447
448 (defmethod free-translated-object (native (foreign-type boxed-variant-cstruct-foreign-type) proxy)
449   (when proxy
450     (let ((type (g-boxed-foreign-info foreign-type)))
451       (multiple-value-bind (actual-struct cstruct-description) (decide-proxy-type type native)
452         (unless (eq (type-of proxy) (cstruct-description-name actual-struct))
453           (restart-case
454               (error "Expected type of boxed variant structure ~A and actual type ~A do not match"
455                      (type-of proxy) actual-struct)
456             (skip-parsing-values () (return-from free-translated-object))))
457         (copy-slots-to-proxy proxy native cstruct-description)))))
458
459 (defmethod translate-from-foreign (native (foreign-type boxed-variant-cstruct-foreign-type))
460   (unless (null-pointer-p native)
461     (let ((type (g-boxed-foreign-info foreign-type)))
462       (multiple-value-bind (actual-struct cstruct-description) (decide-proxy-type type native)
463         (let ((proxy (make-instance actual-struct)))
464           (copy-slots-to-proxy proxy native cstruct-description)
465           (when (g-boxed-foreign-return-p foreign-type)
466             (boxed-free-fn type native))
467           proxy)))))
468
469 (defmethod cleanup-translated-object-for-callback ((foreign-type boxed-variant-cstruct-foreign-type) proxy native)
470   (when proxy
471     (let ((type (g-boxed-foreign-info foreign-type)))
472       (let ((cstruct-description (decide-native-type type proxy)))
473         (copy-slots-to-native proxy native cstruct-description)))))
474
475 (defgeneric boxed-parse-g-value (gvalue-ptr info))
476
477 (defgeneric boxed-set-g-value (gvalue-ptr info proxy))
478
479 (defmethod parse-g-value-for-type (gvalue-ptr (type-numeric (eql +g-type-boxed+)) parse-kind)
480   (declare (ignore parse-kind))
481   (if (g-type= (g-value-type gvalue-ptr) (g-strv-get-type))
482       (convert-from-foreign (g-value-get-boxed gvalue-ptr) '(glib:gstrv :free-from-foreign nil))
483       (let ((boxed-type (get-g-boxed-foreign-info-for-gtype type-numeric)))
484         (boxed-parse-g-value gvalue-ptr boxed-type))))
485
486 (defmethod set-gvalue-for-type (gvalue-ptr (type-numeric (eql +g-type-boxed+)) value)
487   (if (g-type= (g-value-type gvalue-ptr) (g-strv-get-type))
488       (g-value-set-boxed gvalue-ptr (convert-to-foreign value '(glib:gstrv :free-from-foreign nil)))
489       (let ((boxed-type (get-g-boxed-foreign-info-for-gtype type-numeric)))
490         (boxed-set-g-value gvalue-ptr boxed-type value))))
491
492 (defmethod boxed-parse-g-value (gvalue-ptr (info g-boxed-cstruct-wrapper-info))
493   (translate-from-foreign (g-value-get-boxed gvalue-ptr) (make-foreign-type info :return-p nil)))
494
495 (defmethod boxed-set-g-value (gvalue-ptr (info g-boxed-cstruct-wrapper-info) proxy)
496   (g-value-take-boxed gvalue-ptr (translate-to-foreign proxy (make-foreign-type info :return-p nil))))
497
498 (defmethod boxed-parse-g-value (gvalue-ptr (info g-boxed-variant-cstruct-info))
499   (translate-from-foreign (g-value-get-boxed gvalue-ptr) (make-foreign-type info :return-p nil)))
500
501 (defmethod boxed-set-g-value (gvalue-ptr (info g-boxed-variant-cstruct-info) proxy)
502   (g-value-take-boxed gvalue-ptr (translate-to-foreign proxy (make-foreign-type info :return-p nil))))
503
504 (defmethod boxed-parse-g-value (gvalue-ptr (info g-boxed-opaque-wrapper-info))
505   (translate-from-foreign (boxed-copy-fn info (g-value-get-boxed gvalue-ptr)) (make-foreign-type info :return-p nil)))
506
507 (defmethod boxed-set-g-value (gvalue-ptr (info g-boxed-opaque-wrapper-info) proxy)
508   (g-value-set-boxed gvalue-ptr (translate-to-foreign proxy (make-foreign-type info :return-p nil))))