summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/efl/ffi/eina/eina_hash.rb108
-rwxr-xr-xtools/extract-api.sh1
-rwxr-xr-xtools/genruby.rb4
3 files changed, 110 insertions, 3 deletions
diff --git a/lib/efl/ffi/eina/eina_hash.rb b/lib/efl/ffi/eina/eina_hash.rb
new file mode 100644
index 0000000..1b110cc
--- /dev/null
+++ b/lib/efl/ffi/eina/eina_hash.rb
@@ -0,0 +1,108 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/ffi'
+#
+module Efl
+ #
+ module EinaHash
+ def self.method_missing m, *args, &block
+ return Efl::FFI.send 'eina_hash_'+m.to_s, *args, &block
+ end
+ end
+ #
+ module FFI
+ #
+ #
+ ffi_lib 'eina'
+ #
+ # ENUMS
+ #
+ # TYPEDEFS
+ # typedef struct _Eina_Hash Eina_Hash;
+ typedef :pointer, :eina_hash
+ typedef :pointer, :eina_hash_p
+ # typedef struct _Eina_Hash_Tuple Eina_Hash_Tuple;
+ typedef :pointer, :eina_hash_tuple
+ #
+ # CALLBACKS
+ # typedef unsigned int (*Eina_Key_Length) (const void *key);
+ callback :eina_key_length, [ :void_p ], :uint
+ # typedef int (*Eina_Key_Cmp) (const void *key1, int key1_length, const void *key2, int key2_length);
+ callback :eina_key_cmp, [ :void_p, :int, :void_p, :int ], :int
+ # typedef int (*Eina_Key_Hash) (const void *key, int key_length);
+ callback :eina_key_hash, [ :void_p, :int ], :int
+ # typedef Eina_Bool (*Eina_Hash_Foreach) (const Eina_Hash *hash, const void *key, void *data, void *fdata);
+ callback :eina_hash_foreach, [ :eina_hash_p, :void_p, :void_p, :void_p ], :eina_bool
+ #
+ # FUNCTIONS
+ fcts = [
+ # EAPI Eina_Hash *eina_hash_new(Eina_Key_Length key_length_cb, Eina_Key_Cmp key_cmp_cb, Eina_Key_Hash key_hash_cb, Eina_Free_Cb data_free_cb, int buckets_power_size);
+ [ :eina_hash_new, [ :eina_key_length, :eina_key_cmp, :eina_key_hash, :eina_free_cb, :int ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_string_djb2_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_string_djb2_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_string_superfast_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_string_superfast_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_string_small_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_string_small_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_int32_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_int32_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_int64_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_int64_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_pointer_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_pointer_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Hash *eina_hash_stringshared_new(Eina_Free_Cb data_free_cb);
+ [ :eina_hash_stringshared_new, [ :eina_free_cb ], :eina_hash_p ],
+ # EAPI Eina_Bool eina_hash_add(Eina_Hash *hash, const void *key, const void *data);
+ [ :eina_hash_add, [ :eina_hash_p, :void_p, :void_p ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_direct_add(Eina_Hash *hash, const void *key, const void *data);
+ [ :eina_hash_direct_add, [ :eina_hash_p, :void_p, :void_p ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_del(Eina_Hash *hash, const void *key, const void *data);
+ [ :eina_hash_del, [ :eina_hash_p, :void_p, :void_p ], :eina_bool ],
+ # EAPI void *eina_hash_find(const Eina_Hash *hash, const void *key);
+ [ :eina_hash_find, [ :eina_hash_p, :void_p ], :void_p ],
+ # EAPI void *eina_hash_modify(Eina_Hash *hash, const void *key, const void *data);
+ [ :eina_hash_modify, [ :eina_hash_p, :void_p, :void_p ], :void_p ],
+ # EAPI void *eina_hash_set(Eina_Hash *hash, const void *key, const void *data);
+ [ :eina_hash_set, [ :eina_hash_p, :void_p, :void_p ], :void_p ],
+ # EAPI Eina_Bool eina_hash_move(Eina_Hash *hash, const void *old_key, const void *new_key);
+ [ :eina_hash_move, [ :eina_hash_p, :void_p, :void_p ], :eina_bool ],
+ # EAPI void eina_hash_free(Eina_Hash *hash);
+ [ :eina_hash_free, [ :eina_hash_p ], :void ],
+ # EAPI void eina_hash_free_buckets(Eina_Hash *hash);
+ [ :eina_hash_free_buckets, [ :eina_hash_p ], :void ],
+ # EAPI int eina_hash_population(const Eina_Hash *hash);
+ [ :eina_hash_population, [ :eina_hash_p ], :int ],
+ # EAPI Eina_Bool eina_hash_add_by_hash(Eina_Hash *hash, const void *key, int key_length, int key_hash, const void *data);
+ [ :eina_hash_add_by_hash, [ :eina_hash_p, :void_p, :int, :int, :void_p ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_direct_add_by_hash(Eina_Hash *hash, const void *key, int key_length, int key_hash, const void *data);
+ [ :eina_hash_direct_add_by_hash, [ :eina_hash_p, :void_p, :int, :int, :void_p ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_del_by_key_hash(Eina_Hash *hash, const void *key, int key_length, int key_hash);
+ [ :eina_hash_del_by_key_hash, [ :eina_hash_p, :void_p, :int, :int ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_del_by_key(Eina_Hash *hash, const void *key);
+ [ :eina_hash_del_by_key, [ :eina_hash_p, :void_p ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_del_by_data(Eina_Hash *hash, const void *data);
+ [ :eina_hash_del_by_data, [ :eina_hash_p, :void_p ], :eina_bool ],
+ # EAPI Eina_Bool eina_hash_del_by_hash(Eina_Hash *hash, const void *key, int key_length, int key_hash, const void *data);
+ [ :eina_hash_del_by_hash, [ :eina_hash_p, :void_p, :int, :int, :void_p ], :eina_bool ],
+ # EAPI void *eina_hash_find_by_hash(const Eina_Hash *hash, const void *key, int key_length, int key_hash);
+ [ :eina_hash_find_by_hash, [ :eina_hash_p, :void_p, :int, :int ], :void_p ],
+ # EAPI void *eina_hash_modify_by_hash(Eina_Hash *hash, const void *key, int key_length, int key_hash, const void *data);
+ [ :eina_hash_modify_by_hash, [ :eina_hash_p, :void_p, :int, :int, :void_p ], :void_p ],
+ # EAPI Eina_Iterator *eina_hash_iterator_key_new(const Eina_Hash *hash);
+ [ :eina_hash_iterator_key_new, [ :eina_hash_p ], :eina_iterator_p ],
+ # EAPI Eina_Iterator *eina_hash_iterator_data_new(const Eina_Hash *hash);
+ [ :eina_hash_iterator_data_new, [ :eina_hash_p ], :eina_iterator_p ],
+ # EAPI Eina_Iterator *eina_hash_iterator_tuple_new(const Eina_Hash *hash);
+ [ :eina_hash_iterator_tuple_new, [ :eina_hash_p ], :eina_iterator_p ],
+ # EAPI void eina_hash_foreach(const Eina_Hash *hash, Eina_Hash_Foreach cb, const void *fdata);
+ [ :eina_hash_foreach, [ :eina_hash_p, :eina_hash_foreach, :void_p ], :void ],
+ # EAPI int eina_hash_superfast(const char *key, int len);
+ [ :eina_hash_superfast, [ :string, :int ], :int ],
+ ]
+ #
+ attach_fcts fcts
+ end
+end
+#
+# EOF
diff --git a/tools/extract-api.sh b/tools/extract-api.sh
index 67eafb6..29844aa 100755
--- a/tools/extract-api.sh
+++ b/tools/extract-api.sh
@@ -22,6 +22,7 @@ for header in \
"${INCLUDE}/eina-1/eina/eina_types.h" \
"${INCLUDE}/eina-1/eina/eina_main.h" \
"${INCLUDE}/eina-1/eina/eina_list.h" \
+ "${INCLUDE}/eina-1/eina/eina_hash.h" \
"${INCLUDE}/eet-1/Eet.h" \
"${INCLUDE}/edje-1/Edje.h" \
"${INCLUDE}/evas-1/Evas.h" \
diff --git a/tools/genruby.rb b/tools/genruby.rb
index 4e74bf3..aaac399 100755
--- a/tools/genruby.rb
+++ b/tools/genruby.rb
@@ -10,7 +10,7 @@ libraries = [
[ 'eina_types.h', 'Eina', 'eina', 'eina', 'eina/eina_types.rb' ],
[ 'eina_main.h', 'Eina', 'eina', 'eina', 'eina.rb' ],
[ 'eina_list.h', 'EinaList', 'eina_list', 'eina', 'eina/eina_list.rb' ],
-# [ 'eina_hash.h', 'EinaHash', 'eina_hash', 'eina', 'eina/eina_hash.rb' ],
+ [ 'eina_hash.h', 'EinaHash', 'eina_hash', 'eina', 'eina/eina_hash.rb' ],
[ 'Eet.h', 'Eet', 'eet', 'eet', 'eet.rb' ],
[ 'Evas.h', 'Evas', 'evas', 'evas', 'evas.rb' ],
# [ 'Evas_GL.h', 'EvasGl', 'evas_gl', 'evas', 'evas/evas_gl.rb' ],
@@ -87,8 +87,6 @@ TYPES = {
# Efl BASE TYPES
'Eina_Bool' => ':eina_bool',
'Eina_Bool *' => ':eina_bool_p',
- 'Eina_Hash' => ':eina_hash',
- 'Eina_Hash *' => ':eina_hash_p',
'Eina_Iterator' => ':eina_iterator',
'Eina_Iterator *' => ':eina_iterator_p',
'Eina_Accessor' => ':eina_accessor',