profile/ivi/eina.git
15 years agoApplication and library using Eina Magic API should be able to decide if they
cedric [Mon, 8 Dec 2008 10:18:05 +0000 (10:18 +0000)]
Application and library using Eina Magic API should be able to decide if they
want to check magic or not. This should not be forced by Eina config.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@38014 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agohash: better handling of NULL, add magic checking.
barbieri [Sun, 7 Dec 2008 13:28:29 +0000 (13:28 +0000)]
hash: better handling of NULL, add magic checking.

 * evas: if we automatically destroy hash, check for NULL before
   handling it to eina api, which expect elements to be created with
   eina_hash_new() and thus will fail on NULL.
 * eina: add magic checking for eina_hash and eina_hash_iterator, this will
   help spot when NULL is used.
 * eina_hash_foreach: do not try to create the iterator if hash is NULL.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37982 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agorefactor eina_hash_del*, expose simpler functions and avoid GCC hack.
barbieri [Sat, 6 Dec 2008 06:58:56 +0000 (06:58 +0000)]
refactor eina_hash_del*, expose simpler functions and avoid GCC hack.

By using simpler functions for hash element deletion we can avoid the
hack to shut up GCC warking about hash_num not being used. As these
simple functions are more often needed than the catch-all, expose them
as well.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37962 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoLet valgrind help with EINA_MAGIC.
barbieri [Sat, 6 Dec 2008 06:53:14 +0000 (06:53 +0000)]
Let valgrind help with EINA_MAGIC.

Keep EINA_MAGIC at the end of the structure (WHEN POSSIBLE! Watch out
flexible arrays like char str[] at the end!)

this way if parts use EINA_MAGIC and others do not, it will possible overflow and valgrind can help us.

WARNING: make uninstall before update! Then make clean and make install, check if everything is working with "make check".

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37961 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix couple of issues with MAGIC handling.
barbieri [Sat, 6 Dec 2008 06:17:11 +0000 (06:17 +0000)]
Fix couple of issues with MAGIC handling.

eina_magic.h MUST include eina_config.h, otherwise it will not
consider EINA_MAGIC stuff. Worse than that, some files were including
that directly and were considering EINA_MAGIC attribute even if the
file that alloc'ed the memory were not!

Also add missing EINA_MAGIC_SET() to iterators and accessors.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37960 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agogrow array only when required, use step properly.
barbieri [Sat, 6 Dec 2008 06:13:55 +0000 (06:13 +0000)]
grow array only when required, use step properly.

We need to grow when we reach total amount, not when current + step > total.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37959 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoForce dummy_symbol to be visible.
barbieri [Sat, 6 Dec 2008 06:12:30 +0000 (06:12 +0000)]
Force dummy_symbol to be visible.

"make check" was failing with -fvisibility=hidden.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37958 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agodo not segv on NULL inlist.
barbieri [Sat, 6 Dec 2008 06:11:39 +0000 (06:11 +0000)]
do not segv on NULL inlist.

this was exposed by "make check", counter had no tests and it was failing.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37957 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMake it possible to create iterators outside Eina.
barbieri [Sat, 6 Dec 2008 03:41:03 +0000 (03:41 +0000)]
Make it possible to create iterators outside Eina.

Many places in EFL we just create walk something, create a list with
walked data, return, then the user walks it again and then deletes
(which will walk again). For such cases it's way better to define
iterators or accessors.

I'm not moving any EFL code to it now, but if people are interested,
things like evas_render_method_list(), evas_font_available_list(),
evas_objects_at_xy_get(), evas_objects_in_rectangle_get(),
evas_object_smart_members_get() are good candidates. If the subject is
already using Eina list, then you can just use
eina_list_iterator_new() and return it, otherwise you can define your
own iterator, which is very easy.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37956 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoshut up gcc warning, with comment.
barbieri [Sat, 6 Dec 2008 03:02:30 +0000 (03:02 +0000)]
shut up gcc warning, with comment.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37953 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix list accounting on sort! bad - how did this hide for so long?
raster [Sat, 6 Dec 2008 02:51:04 +0000 (02:51 +0000)]
fix list accounting on sort! bad - how did this hide for so long?

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37951 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix namespace: Eina_Foreach -> Eina_Hash_Foreach.
barbieri [Sat, 6 Dec 2008 02:21:17 +0000 (02:21 +0000)]
Fix namespace: Eina_Foreach -> Eina_Hash_Foreach.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37950 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd safe Eina list walk function.
barbieri [Sat, 6 Dec 2008 02:13:01 +0000 (02:13 +0000)]
Add safe Eina list walk function.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37949 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years ago Use includedir instead of prefix/include to install Eina headers.
illogict [Thu, 4 Dec 2008 16:25:40 +0000 (16:25 +0000)]
 Use includedir instead of prefix/include to install Eina headers.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37925 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years ago Typo: --enable enables an option.
illogict [Wed, 3 Dec 2008 17:27:51 +0000 (17:27 +0000)]
 Typo: --enable enables an option.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37913 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix a little memory leak when iterating.
cedric [Thu, 20 Nov 2008 13:26:18 +0000 (13:26 +0000)]
Fix a little memory leak when iterating.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37718 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoeina needs dl functions (Windows)
caro [Tue, 11 Nov 2008 07:22:47 +0000 (07:22 +0000)]
eina needs dl functions (Windows)

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37583 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix some constness.
cedric [Mon, 10 Nov 2008 16:23:56 +0000 (16:23 +0000)]
Fix some constness.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37576 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix order of free during hash free.
cedric [Mon, 10 Nov 2008 14:32:14 +0000 (14:32 +0000)]
Fix order of free during hash free.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37572 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoput static functions where they belong
caro [Sat, 8 Nov 2008 16:47:52 +0000 (16:47 +0000)]
put static functions where they belong

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37552 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd missing return value.
englebass [Fri, 7 Nov 2008 06:50:45 +0000 (06:50 +0000)]
Add missing return value.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37528 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd eina_array_data_set.
cedric [Wed, 5 Nov 2008 17:16:07 +0000 (17:16 +0000)]
Add eina_array_data_set.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37475 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix documentation.
cedric [Wed, 5 Nov 2008 16:20:37 +0000 (16:20 +0000)]
Fix documentation.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37474 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd and use eina_stringshare_ref().
barbieri [Tue, 4 Nov 2008 16:25:12 +0000 (16:25 +0000)]
Add and use eina_stringshare_ref().

This is a faster "add", if we know we're using a shared string we know
the node without any need to search it, just increment reference and
exit.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37458 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agosmall doc fix
caro [Sun, 2 Nov 2008 09:41:14 +0000 (09:41 +0000)]
small doc fix

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37407 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd dladdr and env code for eina_module from Vincent Torri.
cedric [Sat, 1 Nov 2008 15:39:53 +0000 (15:39 +0000)]
Add dladdr and env code for eina_module from Vincent Torri.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37374 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoffs does not exist on windows CE, so use Evil
caro [Sat, 1 Nov 2008 07:33:02 +0000 (07:33 +0000)]
ffs does not exist on windows CE, so use Evil

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37367 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoformatting
caro [Fri, 31 Oct 2008 16:59:45 +0000 (16:59 +0000)]
formatting

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37358 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMake eina rectangle handle NULL case.
cedric [Thu, 30 Oct 2008 10:54:58 +0000 (10:54 +0000)]
Make eina rectangle handle NULL case.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37328 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoPack a hole when magic is in use.
barbieri [Wed, 29 Oct 2008 23:50:24 +0000 (23:50 +0000)]
Pack a hole when magic is in use.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37324 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoerror macro.
raster [Wed, 29 Oct 2008 23:41:55 +0000 (23:41 +0000)]
error macro.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37323 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoDo not pad node on 64bits.
barbieri [Wed, 29 Oct 2008 23:33:24 +0000 (23:33 +0000)]
Do not pad node on 64bits.

Instead of padding node we should always refer to offset of str[]
inside node, that way we save some bytes and work properly.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37322 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoadd error catching and output if mempool alloc/init fails.
raster [Wed, 29 Oct 2008 23:12:56 +0000 (23:12 +0000)]
add error catching and output if mempool alloc/init fails.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37321 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoRemove unused attribute warnings.
barbieri [Wed, 29 Oct 2008 14:51:18 +0000 (14:51 +0000)]
Remove unused attribute warnings.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37307 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix stringshare on 64bits platforms.
barbieri [Wed, 29 Oct 2008 14:18:29 +0000 (14:18 +0000)]
Fix stringshare on 64bits platforms.

sizeof(Eina_Stringshare_Node) is now 24 bytes on 64bits platforms, but
str[] was pointing to before that, to the 20th byte, causing out of
bounds access.

Adding the padding will cause str[] to use the correct position. It
wastes 4 more bytes, like pre-optimizations, but it's just on big
machines.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37305 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoremove from list properly and don't segv!
raster [Wed, 29 Oct 2008 01:38:47 +0000 (01:38 +0000)]
remove from list properly and don't segv!

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37290 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoignore generated data.
barbieri [Tue, 28 Oct 2008 18:26:06 +0000 (18:26 +0000)]
ignore generated data.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37283 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agorefactor eina_stringshare_del() to make it easier to read.
barbieri [Tue, 28 Oct 2008 18:12:10 +0000 (18:12 +0000)]
refactor eina_stringshare_del() to make it easier to read.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37282 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoimprove readability: avoid macros inside our code
barbieri [Tue, 28 Oct 2008 17:47:59 +0000 (17:47 +0000)]
improve readability: avoid macros inside our code

mixing #ifdef'ed blocks inside code is bad, can lead to warnings if
some variables are not used and it's a pain to read.

instead, just define functions and always call them, choose their
implementation based on the ifdef macros. I opted to have 2
declarations, but one can go like other parts and #ifdef around the
function contents as well.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37281 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agotest small strings.
barbieri [Tue, 28 Oct 2008 17:19:02 +0000 (17:19 +0000)]
test small strings.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37280 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd missing magic check for existing node.
barbieri [Tue, 28 Oct 2008 17:16:42 +0000 (17:16 +0000)]
Add missing magic check for existing node.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37279 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoCode refactor and cleanup of eina_stringshare_add().
barbieri [Tue, 28 Oct 2008 17:15:07 +0000 (17:15 +0000)]
Code refactor and cleanup of eina_stringshare_add().

Cases are now handled in separate, doing less useless steps and easier
to understand since 3 cases are now distinct.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37278 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoThis test is now not defined. Remove it.
cedric [Tue, 28 Oct 2008 16:40:34 +0000 (16:40 +0000)]
This test is now not defined. Remove it.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37277 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix _GET macros.
barbieri [Tue, 28 Oct 2008 16:37:32 +0000 (16:37 +0000)]
fix _GET macros.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37276 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMake Eina_Rectangle_Pool more usable.
cedric [Tue, 28 Oct 2008 15:28:46 +0000 (15:28 +0000)]
Make Eina_Rectangle_Pool more usable.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37275 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix a little typo.
cedric [Tue, 28 Oct 2008 14:45:16 +0000 (14:45 +0000)]
Fix a little typo.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37274 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agosave a byte per stringshare node.
barbieri [Tue, 28 Oct 2008 12:34:58 +0000 (12:34 +0000)]
save a byte per stringshare node.

we don't need to use 'begin' flag (that takes a byte) just to see if
we're in the same memory block as the head, just do a pointer math.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37270 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoreduce the popuplation_group size.
barbieri [Tue, 28 Oct 2008 12:26:05 +0000 (12:26 +0000)]
reduce the popuplation_group size.

we just have special case for up to 3 letters, everything else is
regular population.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37269 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agostringshare_del optimization.
barbieri [Tue, 28 Oct 2008 12:23:12 +0000 (12:23 +0000)]
stringshare_del optimization.

trade off safety by speed, we will always assume str was previously
shared, like evas_stringshare_del() did and we can know with zero-cost
the number of references and can avoid strlen() too.

When references drop to zero we still have to do the hash, access the
bucket and then lookup the Red-Black tree, then walk the list of
nodes, but avoiding so would use more memory, unacceptable at this
point.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37268 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoSave 4 bytes per big string shared.
barbieri [Tue, 28 Oct 2008 00:42:35 +0000 (00:42 +0000)]
Save 4 bytes per big string shared.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37258 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoCheap way to get strlen of a shared string.
barbieri [Tue, 28 Oct 2008 00:31:09 +0000 (00:31 +0000)]
Cheap way to get strlen of a shared string.

it's not safe, but it's faster and can help for large strings, maximum
cost is 4 comparisons plus one pointer access.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37257 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agodefine function as void as in prototype.
barbieri [Tue, 28 Oct 2008 00:18:31 +0000 (00:18 +0000)]
define function as void as in prototype.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37256 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agodump show percentages.
barbieri [Mon, 27 Oct 2008 20:35:28 +0000 (20:35 +0000)]
dump show percentages.

not that useful, but I like it.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37253 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd Eina_Rectangle_Pool support. Typically help for font handling in OpenGL or
cedric [Mon, 27 Oct 2008 20:24:12 +0000 (20:24 +0000)]
Add Eina_Rectangle_Pool support. Typically help for font handling in OpenGL or
any case where you need to split a rectangle in many differents small rectangle.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37252 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agobetter optimize small stringshare comparison
barbieri [Mon, 27 Oct 2008 20:16:52 +0000 (20:16 +0000)]
better optimize small stringshare comparison

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37251 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agostringshare: special case for small (2-3 letters).
barbieri [Mon, 27 Oct 2008 19:26:14 +0000 (19:26 +0000)]
stringshare: special case for small (2-3 letters).

This should reduce overhead and give a bit speedup as well, let's test
with e17 real data and see how it goes.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37250 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoSince CLOCK_PROCESS_CPUTIME_ID is a POSIX standard, we use it if it
englebass [Mon, 27 Oct 2008 15:16:06 +0000 (15:16 +0000)]
Since CLOCK_PROCESS_CPUTIME_ID is a POSIX standard, we use it if it
exists regardles of system. Seems BSD actually is the weird case here.
Still use CLOCK_REALTIME as fallback.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37249 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoBetter fallback on clock as suggested by Naruto TAKAHASHI
englebass [Mon, 27 Oct 2008 15:08:46 +0000 (15:08 +0000)]
Better fallback on clock as suggested by Naruto TAKAHASHI

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37248 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix CLOCK as suggested by Ravenlock.
englebass [Mon, 27 Oct 2008 14:19:55 +0000 (14:19 +0000)]
Fix CLOCK as suggested by Ravenlock.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37247 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoCorrectly put condition around the code.
cedric [Mon, 27 Oct 2008 14:05:09 +0000 (14:05 +0000)]
Correctly put condition around the code.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37244 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years ago* Optimize case for string length == 0 and 1.
cedric [Mon, 27 Oct 2008 13:23:52 +0000 (13:23 +0000)]
* Optimize case for string length == 0 and 1.
* Add more debug information when using --enable-stringshare-usage.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37239 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMark unused parameter with __UNUSED__
englebass [Mon, 27 Oct 2008 09:49:13 +0000 (09:49 +0000)]
Mark unused parameter with __UNUSED__

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37214 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoadd a stringshare dumper so we can examine what's in there and improve usage.
raster [Mon, 27 Oct 2008 00:36:22 +0000 (00:36 +0000)]
add a stringshare dumper so we can examine what's in there and improve usage.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37186 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoSat Oct 25 11:41:49 2008 Michael Jennings (mej)
mej [Sat, 25 Oct 2008 18:46:18 +0000 (18:46 +0000)]
Sat Oct 25 11:41:49 2008                        Michael Jennings (mej)

Add spec file for eina.
----------------------------------------------------------------------

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37104 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoBuild on FreeBSD. Patch from Naruto, plus a tweak to remove the unneeded libdl.
ravenlock [Sat, 25 Oct 2008 18:17:22 +0000 (18:17 +0000)]
Build on FreeBSD.  Patch from Naruto, plus a tweak to remove the unneeded libdl.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37103 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agohandle some bizarre build issues...
raster [Fri, 24 Oct 2008 10:57:00 +0000 (10:57 +0000)]
handle some bizarre build issues...

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37048 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agomodules most export init and shutdown as EAPI
englebass [Fri, 24 Oct 2008 06:24:08 +0000 (06:24 +0000)]
modules most export init and shutdown as EAPI

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37042 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agosmall doxy fix
davemds [Fri, 24 Oct 2008 00:37:09 +0000 (00:37 +0000)]
small doxy fix

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37037 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoReally return Eina_Bool.
cedric [Thu, 23 Oct 2008 12:50:33 +0000 (12:50 +0000)]
Really return Eina_Bool.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37022 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd more error information during eina module load.
cedric [Wed, 22 Oct 2008 08:56:19 +0000 (08:56 +0000)]
Add more error information during eina module load.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36955 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoeina_bool is now an unsigned char.
barbieri [Tue, 21 Oct 2008 15:21:37 +0000 (15:21 +0000)]
eina_bool is now an unsigned char.

This makes clear what size and if we have a signal or not in our type,
so no compilers have the right to choose different for us (like they
do with enum).

Also fixes compile of C++ programs with eina_rectangle.h, that
contains some inline code, the expression evaluates a boolean
expression and compiler does not know how to convert that to old
Eina_Bool.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36939 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoRename EINA_LIST_ITER_NEXT to EINA_LIST_FOREACH.
cedric [Tue, 21 Oct 2008 12:49:29 +0000 (12:49 +0000)]
Rename EINA_LIST_ITER_NEXT to EINA_LIST_FOREACH.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36930 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoRename EINA_INLIST_ITER_NEXT/EINA_INLIST_ITER_LAST to EINA_INLIST_FOREACH/
cedric [Tue, 21 Oct 2008 12:19:57 +0000 (12:19 +0000)]
Rename EINA_INLIST_ITER_NEXT/EINA_INLIST_ITER_LAST to EINA_INLIST_FOREACH/
EINA_INLIST_REVERSE_FOREACH so it best match is behaviour. Asked by Gustavo.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36928 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd Debian files.
kaethorn [Tue, 21 Oct 2008 12:07:40 +0000 (12:07 +0000)]
Add Debian files.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36927 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd merge function to list data type.
cedric [Tue, 21 Oct 2008 11:28:38 +0000 (11:28 +0000)]
Add merge function to list data type.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36922 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoActually include eina_convert in the main header.
cedric [Mon, 20 Oct 2008 15:01:01 +0000 (15:01 +0000)]
Actually include eina_convert in the main header.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36860 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix hash iterator to iterate with only one element.
cedric [Mon, 20 Oct 2008 14:45:01 +0000 (14:45 +0000)]
Fix hash iterator to iterate with only one element.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36858 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoPut the mempool backend structure with other structure.
cedric [Mon, 20 Oct 2008 13:23:18 +0000 (13:23 +0000)]
Put the mempool backend structure with other structure.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36855 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoZero is a correct value.
cedric [Mon, 20 Oct 2008 13:21:52 +0000 (13:21 +0000)]
Zero is a correct value.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36854 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoactually compile!
raster [Mon, 20 Oct 2008 12:08:16 +0000 (12:08 +0000)]
actually compile!

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36849 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoApps can now provide their own mempool.
cedric [Mon, 20 Oct 2008 11:40:01 +0000 (11:40 +0000)]
Apps can now provide their own mempool.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36847 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoand remvoe cats
raster [Mon, 20 Oct 2008 04:30:21 +0000 (04:30 +0000)]
and remvoe cats

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36834 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agomake eina able to do automake 1.9 and before... :)
raster [Mon, 20 Oct 2008 04:25:13 +0000 (04:25 +0000)]
make eina able to do automake 1.9 and before... :)

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36833 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix compilation and warnings on Windows:
caro [Thu, 16 Oct 2008 21:31:51 +0000 (21:31 +0000)]
Fix compilation and warnings on Windows:

 * include Evil.h for getenv on mingw32ce
 * include config.h in benchmark.c so that EAPI is correctly defined
 * minor fixes in configure.ac

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36729 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoSeems better that way.
cedric [Wed, 15 Oct 2008 16:47:54 +0000 (16:47 +0000)]
Seems better that way.

Thanks for your help ni1s.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36691 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoOops forgot this one.
cedric [Wed, 15 Oct 2008 16:40:57 +0000 (16:40 +0000)]
Oops forgot this one.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36690 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoShould fix build outside of the source tree.
cedric [Wed, 15 Oct 2008 16:23:14 +0000 (16:23 +0000)]
Should fix build outside of the source tree.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36689 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdd option to report stringshare usage (E17 use around 10000 differents strings).
cedric [Tue, 14 Oct 2008 15:32:57 +0000 (15:32 +0000)]
Add option to report stringshare usage (E17 use around 10000 differents strings).

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36658 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFix stringshare bug with same length.
cedric [Tue, 14 Oct 2008 15:31:45 +0000 (15:31 +0000)]
Fix stringshare bug with same length.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36657 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMove eina outside of PROTO.
cedric [Fri, 10 Oct 2008 09:38:39 +0000 (09:38 +0000)]
Move eina outside of PROTO.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@36564 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoand update comments
caro [Thu, 9 Oct 2008 20:24:40 +0000 (20:24 +0000)]
and update comments

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36554 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agobug--
caro [Thu, 9 Oct 2008 20:20:38 +0000 (20:20 +0000)]
bug--

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36553 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix doxygen m4 macro (make it more efl-ish and fix a bug)
caro [Thu, 9 Oct 2008 20:16:41 +0000 (20:16 +0000)]
fix doxygen m4 macro (make it more efl-ish and fix a bug)

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36552 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoRemove dead code.
cedric [Tue, 7 Oct 2008 11:07:03 +0000 (11:07 +0000)]
Remove dead code.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36493 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoDon't display useless file.
cedric [Mon, 6 Oct 2008 14:49:36 +0000 (14:49 +0000)]
Don't display useless file.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36481 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoActually bench djb2 inline and not superfast hash function.
cedric [Mon, 6 Oct 2008 14:48:13 +0000 (14:48 +0000)]
Actually bench djb2 inline and not superfast hash function.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36480 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoGive more choice to eina_list mempool.
cedric [Mon, 6 Oct 2008 14:47:09 +0000 (14:47 +0000)]
Give more choice to eina_list mempool.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36479 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdate hash benchmark to reflect E use (hash population under 2000, more find than...
cedric [Mon, 6 Oct 2008 12:16:27 +0000 (12:16 +0000)]
Update hash benchmark to reflect E use (hash population under 2000, more find than add).

Current status :
 - same performance for evas, eina and glib with les than 500 items.
 - glib is then faster, eina/evas are second until 800.
 - glib remain the fastest, eina is second, and evas is starting to drop in performance.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36476 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agorename result files so that we can check out on Windows
caro [Sun, 5 Oct 2008 16:10:17 +0000 (16:10 +0000)]
rename result files so that we can check out on Windows

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36448 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years ago * add detection of SIMD and thread support
caro [Fri, 3 Oct 2008 15:28:13 +0000 (15:28 +0000)]
 * add detection of SIMD and thread support
 * minor formatting

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eina@36418 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33