efl/src/lib/eet/eet_dictionary.c

518 lines
13 KiB
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif /* ifdef HAVE_CONFIG_H */
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <Eina.h>
2008-03-01 09:37:39 -08:00
#include "Eet.h"
#include "Eet_private.h"
Eet_Dictionary *
eet_dictionary_add(void)
{
Eet_Dictionary *ed;
2008-03-01 09:37:39 -08:00
ed = eet_dictionary_calloc(1);
if (!ed) return NULL;
memset(ed->hash, -1, sizeof(int) * 256);
eina_rwlock_new(&ed->rwlock);
return ed;
}
2008-03-01 09:37:39 -08:00
void
eet_dictionary_free(Eet_Dictionary *ed)
2008-03-01 09:37:39 -08:00
{
int i;
if (!ed) return;
eina_rwlock_free(&ed->rwlock);
for (i = 0; i < ed->count; i++)
{
if (ed->all_allocated[i >> 3] & (1 << (i & 0x7)))
{
eina_stringshare_del(ed->all[i].str);
}
}
free(ed->all);
free(ed->all_hash);
free(ed->all_allocated);
if (ed->converts) eina_hash_free(ed->converts);
eet_dictionary_mp_free(ed);
}
2008-03-01 09:37:39 -08:00
static int
_eet_dictionary_lookup(Eet_Dictionary *ed,
const char *string,
int len,
int hash,
int *previous)
2008-03-01 09:37:39 -08:00
{
int prev = -1, current;
2008-03-01 09:37:39 -08:00
current = ed->hash[hash];
while (current != -1)
{
if ((ed->all[current].str) &&
((ed->all[current].str == string) ||
((ed->all[current].len == len) &&
(!strcmp(ed->all[current].str, string)))))
{
break;
}
2008-03-01 09:37:39 -08:00
prev = current;
current = ed->all[current].next;
}
if (previous) *previous = prev;
2008-03-01 09:37:39 -08:00
return current;
}
2008-03-01 09:37:39 -08:00
void
eet_dictionary_lock_read(const Eet_Dictionary *ed)
{
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
}
void
eet_dictionary_lock_write(Eet_Dictionary *ed)
{
eina_rwlock_take_write((Eina_RWLock *)&ed->rwlock);
}
void
eet_dictionary_unlock(const Eet_Dictionary *ed)
{
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
}
2008-03-01 09:37:39 -08:00
int
eet_dictionary_string_add(Eet_Dictionary *ed,
const char *string)
2008-03-01 09:37:39 -08:00
{
Eet_String *current;
const char *str;
int hash, idx, pidx, len, cnt;
2008-03-01 09:37:39 -08:00
if (!ed) return -1;
2008-03-01 09:37:39 -08:00
hash = _eet_hash_gen(string, 8);
len = strlen(string) + 1;
2008-03-01 09:37:39 -08:00
eina_rwlock_take_read(&ed->rwlock);
idx = _eet_dictionary_lookup(ed, string, len, hash, &pidx);
if (idx != -1)
2008-03-01 09:37:39 -08:00
{
eina_rwlock_release(&ed->rwlock);
return idx;
2008-03-01 09:37:39 -08:00
}
str = eina_stringshare_add(string);
if (!str) goto on_error;
eina_rwlock_release(&ed->rwlock);
eina_rwlock_take_write(&ed->rwlock);
2008-03-01 09:37:39 -08:00
if (ed->total == ed->count)
{
Eet_String *s;
unsigned char *new_hash, *new_allocated;
int total;
2008-03-01 09:37:39 -08:00
total = ed->total + 64;
2008-03-01 09:37:39 -08:00
s = realloc(ed->all, total * sizeof(Eet_String));
if (!s) goto on_error;
ed->all = s;
new_hash = realloc(ed->all_hash, total);
if (!new_hash) goto on_error;
ed->all_hash = new_hash;
new_allocated = realloc(ed->all_allocated, ((total >> 3) + 1));
if (!new_allocated) goto on_error;
ed->all_allocated = new_allocated;
2008-03-01 09:37:39 -08:00
ed->total = total;
}
current = ed->all + ed->count;
ed->all_allocated[ed->count >> 3] |= (1 << (ed->count & 0x7));
ed->all_hash[ed->count] = hash;
2008-03-01 09:37:39 -08:00
current->str = str;
2008-03-01 09:37:39 -08:00
current->len = len;
current->next = ed->hash[hash];
ed->hash[hash] = ed->count;
2012-05-15 00:51:00 -07:00
cnt = ed->count++;
eina_rwlock_release(&ed->rwlock);
return cnt;
on_error:
eina_rwlock_release(&ed->rwlock);
return -1;
}
2008-03-01 09:37:39 -08:00
int
eet_dictionary_string_get_size_unlocked(const Eet_Dictionary *ed,
int idx)
2008-03-01 09:37:39 -08:00
{
int length = 0;
if (!ed) goto done;
if (idx < 0) goto done;
if (idx < ed->count) length = ed->all[idx].len;
done:
return length;
}
2008-03-01 09:37:39 -08:00
int
eet_dictionary_string_get_size(const Eet_Dictionary *ed,
int idx)
{
int length;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
length = eet_dictionary_string_get_size_unlocked(ed, idx);
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return length;
}
eet: Rename EAPI macro to EET_API in Eet library Patch from a series of patches to rename EAPI symbols to specific library DSOs. EAPI was designed to be able to pass ```__attribute__ ((visibility ("default")))``` for symbols with GCC, which would mean that even if -fvisibility=hidden was used when compiling the library, the needed symbols would get exported. MSVC __almost__ works like GCC (or mingw) in which you can declare everything as export and it will just work (slower, but it will work). But there's a caveat: global variables will not work the same way for MSVC, but works for mingw and GCC. For global variables (as opposed to functions), MSVC requires correct DSO visibility for MSVC: instead of declaring a symbol as export for everything, you need to declare it as import when importing from another DSO and export when defining it locally. With current EAPI definitions, we get the following example working in mingw and MSVC (observe it doesn't define any global variables as exported symbols). Example 1: dll1: ``` EAPI void foo(void); EAPI void bar() { foo(); } ``` dll2: ``` EAPI void foo() { printf ("foo\n"); } ``` This works fine with API defined as __declspec(dllexport) in both cases and for gcc defining as ```__atttribute__((visibility("default")))```. However, the following: Example 2: dll1: ``` EAPI extern int foo; EAPI void foobar(void); EAPI void bar() { foo = 5; foobar(); } ``` dll2: ``` EAPI int foo = 0; EAPI void foobar() { printf ("foo %d\n", foo); } ``` This will work on mingw but will not work for MSVC. And that's why EAPI is the only solution that worked for MSVC. Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com> Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev> Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
2020-10-25 06:55:40 -07:00
EET_API int
eet_dictionary_count(const Eet_Dictionary *ed)
{
int cnt;
if (!ed) return 0;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
cnt = ed->count;
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return cnt;
}
int
eet_dictionary_string_get_hash_unlocked(const Eet_Dictionary *ed,
int idx)
{
int hash = -1;
if (!ed) goto done;
if (idx < 0) goto done;
if (idx < ed->count) hash = ed->all_hash[idx];
done:
return hash;
}
int
eet_dictionary_string_get_hash(const Eet_Dictionary *ed,
int idx)
{
int hash;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
hash = eet_dictionary_string_get_hash_unlocked(ed, idx);
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return hash;
}
const char *
eet_dictionary_string_get_char_unlocked(const Eet_Dictionary *ed,
int idx)
2008-03-01 09:37:39 -08:00
{
const char *s = NULL;
if (!ed) goto done;
if (idx < 0) goto done;
if (idx < ed->count)
2008-03-01 09:37:39 -08:00
{
#ifdef _WIN32
/* Windows file system could change the mmaped file when replacing a file. So we need to copy all string in memory to avoid bugs. */
if (!(ed->all_allocated[idx >> 3] & (1 << (idx & 0x7))))
{
ed->all[idx].str = eina_stringshare_add(ed->all[idx].str);
ed->all_allocated[idx >> 3] |= (1 << (idx & 0x7));
}
#endif /* ifdef _WIN32 */
s = ed->all[idx].str;
2008-03-01 09:37:39 -08:00
}
done:
return s;
}
2008-03-01 09:37:39 -08:00
const char *
eet_dictionary_string_get_char(const Eet_Dictionary *ed,
int idx)
{
const char *s = NULL;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
s = eet_dictionary_string_get_char_unlocked(ed, idx);
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return s;
}
static inline Eina_Bool
_eet_dictionary_string_get_me_cache(const char *s,
int len,
int *mantisse,
int *exponent)
2008-03-01 09:37:39 -08:00
{
if ((len == 6) && (s[0] == '0') && (s[1] == 'x') && (s[3] == 'p'))
{
*mantisse = (s[2] >= 'a') ? (s[2] - 'a' + 10) : (s[2] - '0');
*exponent = (s[5] - '0');
return EINA_TRUE;
2008-03-01 09:37:39 -08:00
}
return EINA_FALSE;
}
2008-03-01 09:37:39 -08:00
static inline Eina_Bool
_eet_dictionary_string_get_float_cache(const char *s,
int len,
float *result)
2008-03-01 09:37:39 -08:00
{
int mantisse, exponent;
2008-03-01 09:37:39 -08:00
if (_eet_dictionary_string_get_me_cache(s, len, &mantisse, &exponent))
{
if (s[4] == '+') *result = (float)(mantisse << exponent);
else *result = (float)mantisse / (float)(1 << exponent);
return EINA_TRUE;
2008-03-01 09:37:39 -08:00
}
return EINA_FALSE;
}
2008-03-01 09:37:39 -08:00
static inline Eina_Bool
_eet_dictionary_string_get_double_cache(const char *s,
int len,
double *result)
2008-03-01 09:37:39 -08:00
{
int mantisse, exponent;
2008-03-01 09:37:39 -08:00
if (_eet_dictionary_string_get_me_cache(s, len, &mantisse, &exponent))
{
if (s[4] == '+') *result = (double)(mantisse << exponent);
else *result = (double)mantisse / (float)(1 << exponent);
return EINA_TRUE;
2008-03-01 09:37:39 -08:00
}
return EINA_FALSE;
}
2008-03-01 09:37:39 -08:00
static inline Eina_Bool
_eet_dictionary_test_unlocked(const Eet_Dictionary *ed,
int idx,
void *result)
{
Eina_Bool limit = EINA_FALSE;
if (!result) goto done;
if (!ed) goto done;
if (idx < 0) goto done;
if (!(idx < ed->count)) goto done;
limit = EINA_TRUE;
done:
return limit;
}
static Eet_Convert *
eet_dictionary_convert_get_unlocked(const Eet_Dictionary *ed,
int idx,
const char **str)
{
Eet_Convert *result;
*str = ed->all[idx].str;
if (!ed->converts)
{
((Eet_Dictionary *)ed)->converts = eina_hash_int32_new(free);
goto add_convert;
}
result = eina_hash_find(ed->converts, &idx);
if (result) goto done;
add_convert:
result = calloc(1, sizeof (Eet_Convert));
eina_hash_add(ed->converts, &idx, result);
done:
return result;
}
Eina_Bool
eet_dictionary_string_get_float_unlocked(const Eet_Dictionary *ed,
int idx,
float *result)
2008-03-01 09:37:39 -08:00
{
Eet_Convert *convert;
const char *str;
if (!_eet_dictionary_test_unlocked(ed, idx, result)) return EINA_FALSE;
2008-03-01 09:37:39 -08:00
convert = eet_dictionary_convert_get_unlocked(ed, idx, &str);
if (!convert) return EINA_FALSE;
2008-03-01 09:37:39 -08:00
if (!(convert->type & EET_D_FLOAT))
{
if (!_eet_dictionary_string_get_float_cache(str, ed->all[idx].len,
&convert->f))
{
long long mantisse = 0;
long exponent = 0;
2008-03-01 09:37:39 -08:00
if (eina_convert_atod(str, ed->all[idx].len, &mantisse,
&exponent) == EINA_FALSE)
{
return EINA_FALSE;
}
convert->f = ldexpf((float)mantisse, exponent);
}
convert->type |= EET_D_FLOAT;
2008-03-01 09:37:39 -08:00
}
*result = convert->f;
return EINA_TRUE;
}
2008-03-01 09:37:39 -08:00
Eina_Bool
eet_dictionary_string_get_float(const Eet_Dictionary *ed,
int idx,
float *result)
{
Eina_Bool ret;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
ret = eet_dictionary_string_get_float_unlocked(ed, idx, result);
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return ret;
}
Eina_Bool
eet_dictionary_string_get_double_unlocked(const Eet_Dictionary *ed,
int idx,
double *result)
2008-03-01 09:37:39 -08:00
{
Eet_Convert *convert;
const char *str;
if (!_eet_dictionary_test_unlocked(ed, idx, result)) return EINA_FALSE;
convert = eet_dictionary_convert_get_unlocked(ed, idx, &str);
if (!convert) return EINA_FALSE;
2008-03-01 09:37:39 -08:00
if (!(convert->type & EET_D_DOUBLE))
{
if (!_eet_dictionary_string_get_double_cache(str, ed->all[idx].len,
&convert->d))
{
long long mantisse = 0;
long exponent = 0;
2008-03-01 09:37:39 -08:00
if (eina_convert_atod(str, ed->all[idx].len, &mantisse,
&exponent) == EINA_FALSE)
{
return EINA_FALSE;
}
convert->d = ldexp((double)mantisse, exponent);
}
convert->type |= EET_D_DOUBLE;
}
2008-03-01 09:37:39 -08:00
*result = convert->d;
return EINA_TRUE;
}
Eina_Bool
eet_dictionary_string_get_double(const Eet_Dictionary *ed,
int idx,
double *result)
{
Eina_Bool ret;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
ret = eet_dictionary_string_get_double_unlocked(ed, idx, result);
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return ret;
}
Eina_Bool
eet_dictionary_string_get_fp_unlocked(const Eet_Dictionary *ed,
int idx,
Eina_F32p32 *result)
{
Eet_Convert *convert;
const char *str;
if (!_eet_dictionary_test_unlocked(ed, idx, result)) return EINA_FALSE;
convert = eet_dictionary_convert_get_unlocked(ed, idx, &str);
if (!convert) return EINA_FALSE;
if (!(convert->type & EET_D_FIXED_POINT))
{
Eina_F32p32 fp;
if (!eina_convert_atofp(str, ed->all[idx].len, &fp))
{
return EINA_FALSE;
}
convert->fp = fp;
convert->type |= EET_D_FIXED_POINT;
2008-03-01 09:37:39 -08:00
}
*result = convert->fp;
return EINA_TRUE;
}
Eina_Bool
eet_dictionary_string_get_fp(const Eet_Dictionary *ed,
int idx,
Eina_F32p32 *result)
{
Eina_Bool ret;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
ret = eet_dictionary_string_get_fp_unlocked(ed, idx, result);
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return ret;
}
eet: Rename EAPI macro to EET_API in Eet library Patch from a series of patches to rename EAPI symbols to specific library DSOs. EAPI was designed to be able to pass ```__attribute__ ((visibility ("default")))``` for symbols with GCC, which would mean that even if -fvisibility=hidden was used when compiling the library, the needed symbols would get exported. MSVC __almost__ works like GCC (or mingw) in which you can declare everything as export and it will just work (slower, but it will work). But there's a caveat: global variables will not work the same way for MSVC, but works for mingw and GCC. For global variables (as opposed to functions), MSVC requires correct DSO visibility for MSVC: instead of declaring a symbol as export for everything, you need to declare it as import when importing from another DSO and export when defining it locally. With current EAPI definitions, we get the following example working in mingw and MSVC (observe it doesn't define any global variables as exported symbols). Example 1: dll1: ``` EAPI void foo(void); EAPI void bar() { foo(); } ``` dll2: ``` EAPI void foo() { printf ("foo\n"); } ``` This works fine with API defined as __declspec(dllexport) in both cases and for gcc defining as ```__atttribute__((visibility("default")))```. However, the following: Example 2: dll1: ``` EAPI extern int foo; EAPI void foobar(void); EAPI void bar() { foo = 5; foobar(); } ``` dll2: ``` EAPI int foo = 0; EAPI void foobar() { printf ("foo %d\n", foo); } ``` This will work on mingw but will not work for MSVC. And that's why EAPI is the only solution that worked for MSVC. Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com> Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev> Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
2020-10-25 06:55:40 -07:00
EET_API int
eet_dictionary_string_check(Eet_Dictionary *ed,
const char *string)
{
int res = 0, i;
if ((!ed) || (!string)) return 0;
eina_rwlock_take_read((Eina_RWLock *)&ed->rwlock);
if ((ed->start <= string) && (string < ed->end)) res = 1;
if (!res)
{
for (i = 0; i < ed->count; i++)
{
if ((ed->all_allocated[i >> 3] & (1 << (i & 0x7))) && ed->all[i].str == string)
{
res = 1;
break;
}
}
}
eina_rwlock_release((Eina_RWLock *)&ed->rwlock);
return res;
}