Re: [E-devel] EET and EDJE improvements

2008-01-18 Thread The Rasterman
On Fri, 4 Jan 2008 23:02:06 +0100 Cedric BAIL [EMAIL PROTECTED] babbled: Hi, I am looking for a way to improve edje file load time. Right now a large amount of time is logically lost in _eet_data_descriptor_decode. So looking at its profile, most of the time is lost in manipulating

Re: [E-devel] EET and EDJE improvements

2008-01-18 Thread The Rasterman
On Thu, 10 Jan 2008 08:53:25 -0600 Nathan Ingersoll [EMAIL PROTECTED] babbled: On Jan 10, 2008 7:53 AM, Cedric BAIL [EMAIL PROTECTED] wrote: In the current eet file format, string are inside the directory structure, so they don't have a fixed size and it's usefull during reading to

Re: [E-devel] EET and EDJE improvements

2008-01-10 Thread Cedric BAIL
On Jan 7, 2008 2:44 PM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 7, 2008 10:43 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008 5:13 AM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 4, 2008 8:43 PM, Nathan Ingersoll [EMAIL PROTECTED] wrote: On Jan 4,

Re: [E-devel] EET and EDJE improvements

2008-01-10 Thread Gustavo Sverzut Barbieri
On Jan 10, 2008 9:51 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008 2:44 PM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 7, 2008 10:43 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008 5:13 AM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 4,

Re: [E-devel] EET and EDJE improvements

2008-01-10 Thread Cedric BAIL
On Jan 10, 2008 2:38 PM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 10, 2008 9:51 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008 2:44 PM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 7, 2008 10:43 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008

Re: [E-devel] EET and EDJE improvements

2008-01-10 Thread Gustavo Sverzut Barbieri
On Jan 10, 2008 10:53 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 10, 2008 2:38 PM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 10, 2008 9:51 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008 2:44 PM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 7,

Re: [E-devel] EET and EDJE improvements

2008-01-10 Thread Nathan Ingersoll
On Jan 10, 2008 7:53 AM, Cedric BAIL [EMAIL PROTECTED] wrote: In the current eet file format, string are inside the directory structure, so they don't have a fixed size and it's usefull during reading to know the size of all directory entries (It's not the direct result of some math, but it

Re: [E-devel] EET and EDJE improvements

2008-01-10 Thread Cedric BAIL
On Jan 10, 2008 3:53 PM, Nathan Ingersoll [EMAIL PROTECTED] wrote: On Jan 10, 2008 7:53 AM, Cedric BAIL [EMAIL PROTECTED] wrote: In the current eet file format, string are inside the directory structure, so they don't have a fixed size and it's usefull during reading to know the size of all

Re: [E-devel] EET and EDJE improvements

2008-01-07 Thread Cedric BAIL
On Jan 7, 2008 5:13 AM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 4, 2008 8:43 PM, Nathan Ingersoll [EMAIL PROTECTED] wrote: On Jan 4, 2008 4:02 PM, Cedric BAIL [EMAIL PROTECTED] wrote: I am looking for a way to improve edje file load time. Right now a large amount of

Re: [E-devel] EET and EDJE improvements

2008-01-07 Thread Gustavo Sverzut Barbieri
On Jan 7, 2008 10:43 AM, Cedric BAIL [EMAIL PROTECTED] wrote: On Jan 7, 2008 5:13 AM, Gustavo Sverzut Barbieri [EMAIL PROTECTED] wrote: On Jan 4, 2008 8:43 PM, Nathan Ingersoll [EMAIL PROTECTED] wrote: On Jan 4, 2008 4:02 PM, Cedric BAIL [EMAIL PROTECTED] wrote: I am looking for a way

Re: [E-devel] EET and EDJE improvements

2008-01-06 Thread Gustavo Sverzut Barbieri
On Jan 4, 2008 8:43 PM, Nathan Ingersoll [EMAIL PROTECTED] wrote: On Jan 4, 2008 4:02 PM, Cedric BAIL [EMAIL PROTECTED] wrote: Hi, I am looking for a way to improve edje file load time. Right now a large amount of time is logically lost in _eet_data_descriptor_decode. So looking at

[E-devel] EET and EDJE improvements

2008-01-04 Thread Cedric BAIL
Hi, I am looking for a way to improve edje file load time. Right now a large amount of time is logically lost in _eet_data_descriptor_decode. So looking at its profile, most of the time is lost in manipulating string. It took me sometime to understand why we need to strdup all EET_T_STRING

Re: [E-devel] EET and EDJE improvements

2008-01-04 Thread Nathan Ingersoll
On Jan 4, 2008 4:02 PM, Cedric BAIL [EMAIL PROTECTED] wrote: Hi, I am looking for a way to improve edje file load time. Right now a large amount of time is logically lost in _eet_data_descriptor_decode. So looking at its profile, most of the time is lost in manipulating string. Before