10 #:*glib-interface-age*
20 #:+g-priority-default+
21 #:+g-priority-high-idle+
22 #:+g-priority-default-idle+
28 (eval-when (:compile-toplevel :load-toplevel :execute)
29 (define-foreign-library glib
30 (:unix (:or "libglib-2.0.so.0" "libglib-2.0.so"))
33 (use-foreign-library glib)
35 (eval-when (:compile-toplevel :load-toplevel :execute)
36 (define-foreign-library gthread
37 (:unix (:or "libgthread-2.0.so.0" "libgthread-2.0.so"))
38 (t "libgthread-2.0")))
40 (use-foreign-library gthread)
47 ;; Fundamentals - Basic types
51 ;; TODO: not sure about these: for amd64 they are ok
52 (eval-when (:compile-toplevel :load-toplevel :execute)
54 ((cffi-features:cffi-feature-p :x86-64) (defctype gsize :uint64))
55 ((cffi-features:cffi-feature-p :x86) (defctype gsize :ulong))
56 (t (error "Can not define 'gsize', unknown CPU architecture (known are x86 and x86-64)"))))
58 (defctype gssize :long)
60 (defctype goffset :uint64)
64 ;; Fundamentals - Version information
67 (defcvar (*glib-major-version* "glib_major_version" :read-only t :library glib) :uint)
68 (defcvar (*glib-minor-version* "glib_minor_version" :read-only t :library glib) :uint)
69 (defcvar (*glib-micro-version* "glib_micro_version" :read-only t :library glib) :uint)
70 (defcvar (*glib-binary-age* "glib_binary_age" :read-only t :library glib) :uint)
71 (defcvar (*glib-interface-age* "glib_interface_age" :read-only t :library glib) :uint)
75 ;; Limits of Basic Types, Standard Macros, Type Conversion Macros, Byte Order Macros,
76 ;; Numerical Definitions, Miscellaneous Macros, Atomic operations
79 ;; Core Application Support - The Main Event Loop
81 (defcstruct g-main-loop)
82 (defcstruct g-main-context)
84 (defcstruct g-source-funcs
89 (closure-callback :pointer)
90 (closure-marshal :pointer))
91 (defcstruct g-source-callback-funcs
99 (fd :int) ;; TODO: #if defined (G_OS_WIN32) && GLIB_SIZEOF_VOID_P == 8
103 (defcstruct g-time-val
105 (microseconds :long))
107 (defcstruct g-thread)
109 (defcfun (g-main-loop-new "g_main_loop_new" :library glib) (:pointer g-main-loop)
110 (context (:pointer g-main-context))
111 (is-running :boolean))
113 (defcfun (g-main-loop-ref "g_main_loop_ref" :library glib) (:pointer g-main-loop)
114 (loop (:pointer g-main-loop)))
116 (defcfun (g-main-loop-unref "g_main_loop_unref" :library glib) (:pointer g-main-loop)
117 (loop (:pointer g-main-loop)))
119 (defcfun (g-main-loop-run "g_main_loop_run" :library glib) :void
120 (loop (:pointer g-main-loop)))
122 (defcfun (g-main-loop-quit "g_main_loop_quit" :library glib) :void
123 (loop (:pointer g-main-loop)))
125 (defcfun (g-main-loop-is-running "g_main_loop_is_running" :library glib) :boolean
126 (loop (:pointer g-main-loop)))
128 (defcfun (g-main-loop-get-context "g_main_loop_get_context" :library glib) (:pointer g-main-context)
129 (loop (:pointer g-main-loop)))
131 (defconstant +g-priority-high+ -100)
132 (defconstant +g-priority-default+ 0)
133 (defconstant +g-priority-high-idle+ 100)
134 (defconstant +g-priority-default-idle+ 200)
135 (defconstant +g-priority-low+ 300)
137 (defcfun (g-main-context-new "g_main_context_new" :library glib) (:pointer g-main-context))
139 (defcfun (g-main-context-ref "g_main_context_ref" :library glib) (:pointer g-main-context)
140 (context (:pointer g-main-context)))
142 (defcfun (g-main-context-unref "g_main_context_unref" :library glib) (:pointer g-main-context)
143 (context (:pointer g-main-context)))
145 (defcfun (g-main-context-default "g_main_context_default" :library glib) (:pointer g-main-context))
147 (defcfun (g-main-context-iteration "g_main_context_iteration" :library glib) :boolean
148 (context (:pointer g-main-context))
149 (may-block :boolean))
151 (defcfun (g-main-context-pending "g_main_context_pending" :library glib) :boolean
152 (context (:pointer g-main-context)))
154 (defcfun (g-main-context-find-source-by-id "g_main_context_find_source_by_id" :library glib) (:pointer g-source)
155 (context (:pointer g-main-context))
158 (defcfun (g-main-context-find-source-by-user-data "g_main_context_find_source_by_user_data" :library glib) (:pointer g-source)
159 (context (:pointer g-main-context))
160 (user-data :pointer))
162 (defcfun (g-main-context-find-source-by-funcs-user-data "g_main_context_find_source_by_funcs_user_data" :library glib) (:pointer g-source)
163 (context (:pointer g-main-context))
164 (funcs (:pointer g-source-funcs))
165 (user-data :pointer))
167 (defcfun (g-main-context-wakeup "g_main_context_wakeup" :library glib) :void
168 (context (:pointer g-main-context)))
170 (defcfun (g-main-context-acquire "g_main_context_acquire" :library glib) :boolean
171 (context (:pointer g-main-context)))
173 (defcfun (g-main-context-release "g_main_context_release" :library glib) :void
174 (context (:pointer g-main-context)))
176 (defcfun (g-main-context-is-owner "g_main_context_is_owner" :library glib) :boolean
177 (context (:pointer g-main-context)))
179 (defcfun (g-main-context-wait "g_main_context_wait" :library glib) :boolean
180 (context (:pointer g-main-context))
181 (cond (:pointer g-cond))
182 (mutex (:pointer g-mutex)))
184 (defcfun (g_main_context_prepare "g_main_context_prepare" :library glib) :boolean
185 (context (:pointer g-main-context))
186 (priority-ret (:pointer :int)))
188 (defcfun (g_main_context_query "g_main_context_query" :library glib) :int
189 (context (:pointer g-main-context))
191 (timeout-ret (:pointer :int))
192 (fds-ret (:pointer g-poll-fd))
195 (defcfun (g-main-context-check "g_main_context_check" :library glib) :int
196 (context (:pointer g-main-context))
198 (fds (:pointer g-poll-fd))
201 (defcfun (g-main-context-dispatch "g_main_context_dispatch" :library glib) :void
202 (context (:pointer g-main-context)))
204 (defcfun (g-main-context-set-poll-func "g_main_context_set_poll_func" :library glib) :void
205 (context (:pointer g-main-context))
208 (defcfun (g-main-context-get-poll-func "g_main_context_get_poll_func" :library glib) :pointer
209 (context (:pointer g-main-context)))
211 (defcfun (g-main-context-add-poll "g_main_context_add_poll" :library glib) :void
212 (context (:pointer g-main-context))
213 (fd (:pointer g-poll-fd))
216 (defcfun (g-main-context-remove-poll "g_main_context_remove_poll" :library glib) :void
217 (context (:pointer g-main-context))
218 (fd (:pointer g-poll-fd)))
220 (defcfun (g-main-depth "g_main_depth" :library glib) :int)
222 (defcfun (g-main-current-source "g_main_current_source" :library glib) (:pointer g-source))
224 (defcfun (g-timeout-source-new "g_timeout_source_new" :library glib) (:pointer g-source)
225 (interval-milliseconds :int))
227 (defcfun (g-timeout-source-new-seconds "g_timeout_source_new_seconds" :library glib) (:pointer g-source)
228 (interval-seconds :int))
230 (defcfun (g-timeout-add "g_timeout_add" :library glib) :uint
231 (interval-milliseconds :uint)
235 (defcfun (g-timeout-add-full "g_timeout_add_full" :library glib) :uint
237 (interval-milliseconds :uint)
240 (destroy-notify :pointer))
242 (defcfun (g-timeout-add-seconds "g_timeout_add_seconds" :library glib) :uint
243 (interval-seconds :uint)
247 (defcfun (g-timeout-add-seconds-full "g_timeout_add_seconds_full" :library glib) :uint
249 (interval-seconds :uint)
252 (destroy-notify :pointer))
254 (defcfun (g-idle-source-new "g_idle_source_new" :library glib) (:pointer g-source))
256 (defcfun (g-idle-add "g_idle_add" :library glib) :uint
260 (defcfun (g-idle-add-full "g_idle_add_full" :library glib) :uint
266 (defcfun (g-idle-remove-by-data "g_idle_remove_by_data" :library glib) :boolean
269 ;(defctype g-pid :int) ;;TODO: might work on amd64 linux, but on others
271 ;; Omitted GPid, g_child_add_watch, g_child_add_watch_full
273 (defcfun (g-source-new "g_source_new" :library glib) (:pointer g-source)
274 (source-funcs (:pointer g-source-funcs))
277 (defcfun (g-source-ref "g_source_ref" :library glib) (:pointer g-source)
278 (source (:pointer g-source)))
280 (defcfun (g-source-unref "g_source_unref" :library glib) :void
281 (source (:pointer g-source)))
283 (defcfun (g-source-set-funcs "g_source_set_funcs" :library glib) :void
284 (source (:pointer g-source))
285 (funcs (:pointer g-source-funcs)))
287 (defcfun (g-source-attach "g_source_attach" :library glib) :uint
288 (source (:pointer g-source))
289 (context (:pointer g-main-context)))
291 (defcfun (g-source-destroy "g_source_destroy" :library glib) :void
292 (source (:pointer g-source)))
294 (defcfun (g-source-is-destroyed "g_source_is_destroyed" :library glib) :boolean
295 (source (:pointer g-source)))
297 (defcfun (g-source-set-priority "g_source_set_priority" :library glib) :void
298 (source (:pointer g-source))
301 (defcfun (g-source-get-priority "g_source_get_priority" :library glib) :int
302 (source (:pointer g-source)))
304 (defcfun (g-source-set-can-recurse "g_source_set_can_recurse" :library glib) :void
305 (source (:pointer g-source))
306 (can-recurse :boolean))
308 (defcfun (g-source-get-can-recurse "g_source_get_can_recurse" :library glib) :boolean
309 (source (:pointer g-source)))
311 (defcfun (g-source-get-id "g_source_get_id" :library glib) :uint
312 (source (:pointer g-source)))
314 (defcfun (g-source-get-context "g_source_get_context" :library glib) (:pointer g-main-context)
315 (source (:pointer g-source)))
317 (defcfun (g-source-set-callback "g_source_set_callback" :library glib) :void
318 (source (:pointer g-source))
323 (defcfun (g-source-add-poll "g_source_add_poll" :library glib) :void
324 (source (:pointer g-source))
325 (fd (:pointer g-poll-fd)))
327 (defcfun (g-source-remove-poll "g_source_remove_poll" :library glib) :void
328 (source (:pointer g-source))
329 (fd (:pointer g-poll-fd)))
331 (defcfun (g-source-get-current-time "g_source_get_current_time" :library glib) :void
332 (source (:pointer g-source))
333 (timeval-ret (:pointer g-time-val)))
335 (defcfun (g-source-remove "g_source_remove" :library glib) :boolean
338 (defcfun (g-source-remove-by-funcs-user-data "g_source_remove_by_funcs_user_data" :library glib) :boolean
339 (funcs (:pointer g-source-funcs))
342 (defcfun (g-source-remove-by-user-data "g_source_remove_by_user_data" :library glib) :boolean
346 ;; Core Application Support - Threads
349 (defcenum g-thread-error
350 :g-thread-error-again)
352 ;omitted: struct GThreadFunctions
354 (defcfun (g-thread-init "g_thread_init") :void
357 (defvar *threads-initialized-p* nil)
359 (unless *threads-initialized-p*
360 (g-thread-init (null-pointer))
361 (setf *threads-initialized-p* t))
363 (defcenum g-thread-priority
364 :g-thread-priority-low
365 :g-thread-priority-normal
366 :g-thread-priority-hight
367 :g-thread-priority-urgent)
369 ;omitted: g_thread_create, g_thread_create_full, g_thread_yield, g_thread_exit, g_thread_foreach
371 (defcfun (g-thread-self "g_thread_self" :library glib) (:pointer g-thread))
373 (defcfun (g-thread-join "g_thread_join" :library glib) :pointer
374 (thread (:pointer g-thread)))
376 (defcfun (g-thread-priority "g_thread_set_priority" :library glib) :void
377 (thread (:pointer g-thread))
378 (priority g-thread-priority))
380 ;;;; TODO: Commented g_mutex_*, g_cond* because they are not functions, but called through dispatch table
382 ;; (defcfun (g-mutex-new "g_mutex_new" :library glib) (:pointer g-mutex))
384 ;; (defcfun (g-mutex-lock "g_mutex_lock" :library glib) :void
385 ;; (mutex (:pointer g-mutex)))
387 ;; (defcfun (g-mutex-try-lock "g_mutex_trylock" :library glib) :boolean
388 ;; (mutex (:pointer g-mutex)))
390 ;; (defcfun (g-mutex-free "g_mutex_free" :library glib) :void
391 ;; (mutex (:pointer g-mutex)))
393 ;omitted: GStaticMutex, GStaticRWLock stuff
395 ;; (defcfun (g-cond-new "g_cond_new" :library glib) (:pointer g-cond))
397 ;; (defcfun (g-cond-signal "g_cond_signal" :library glib) :void
398 ;; (cond (:pointer g-cond)))
400 ;; (defcfun (g-cond-broadcast "g_cond_broadcast" :library glib) :void
401 ;; (cond (:pointer g-cond)))
403 ;; (defcfun (g-cond-wait "g_cond_wait" :library glib) :void
404 ;; (cond (:pointer g-cond))
405 ;; (mutex (:pointer g-mutex)))
407 ;; (defcfun (g-cond-timed-wait "g_cond_timed_wait" :library glib) :boolean
408 ;; (cond (:pointer g-cond))
409 ;; (mutex (:pointer g-mutex))
410 ;; (abs-time (:pointer g-time-val)))
412 ;; (defcfun (g-cond-free "g_cond_free" :library glib) :void
413 ;; (cond (:pointer g-cond)))
415 ;omitted: GPrivate, GOnce stuff
417 ;omitted: Thread pools, Asynchronous queues, Dynamic Loading of Modules,
418 ; Memory Allocation, IO Channels, Error Reporting, Message Output and Debugging Functions, Message Logging
420 (defcfun g-free :void
423 (defcfun (g-malloc "g_malloc0") :pointer
426 (defcfun g-strdup :pointer
427 (str (:string :free-to-foreign t)))
429 ;omitted all GLib Utilites
430 ;TODO: omitted Date and Time Functions