#ifndef EFREET_PRIVATE_H #define EFREET_PRIVATE_H /** * @file efreet_private.h * @brief Contains methods and defines that are private to the Efreet * implementaion * @addtogroup Efreet_Private Efreet_Private: Private methods and defines * * @{ */ /** * @def NEW(x, c) * Allocate and zero out c structures of type x */ #define NEW(x, c) calloc(c, sizeof(x)) /** * @def FREE(x) * Free x and set to NULL */ #define FREE(x) do { free(x); x = NULL; } while (0) /** * @def IF_FREE(x) * If x is set, free x and set to NULL */ #define IF_FREE(x) do { if (x) FREE(x); } while (0) /** * @def IF_RELEASE(x) * If x is set, eina_stringshare_del x and set to NULL */ #define IF_RELEASE(x) do { \ if (x) { \ const char *__tmp; __tmp = (x); (x) = NULL; eina_stringshare_del(__tmp); \ } \ (x) = NULL; \ } while (0) /** * @def IF_FREE_LIST(x) * If x is a valid pointer destroy x and set to NULL */ #define IF_FREE_LIST(list, free_cb) do { \ void *_data; \ EINA_LIST_FREE(list, _data) \ free_cb(_data); \ list = NULL; \ } while (0) /** * @def IF_FREE_HASH(x) * If x is a valid pointer destroy x and set to NULL */ #define IF_FREE_HASH(x) do { \ if (x) { \ Eina_Hash *__tmp; __tmp = (x); (x) = NULL; eina_hash_free(__tmp); \ } \ (x) = NULL; \ } while (0) #ifdef EFREET_DEFAULT_LOG_COLOR #undef EFREET_DEFAULT_LOG_COLOR #endif #define EFREET_DEFAULT_LOG_COLOR "\033[36m" #ifndef EFREET_MODULE_LOG_DOM #error "Need to define a log domain" #endif /** * macros that are used all around the code for message processing * four macros are defined ERR, WRN, DGB, INF. * EFREET_MODULE_LOG_DOM should be defined individually for each module */ #ifdef ERR #undef ERR #endif #define ERR(...) EINA_LOG_DOM_ERR(EFREET_MODULE_LOG_DOM, __VA_ARGS__) #ifdef DBG #undef DBG #endif #define DBG(...) EINA_LOG_DOM_DBG(EFREET_MODULE_LOG_DOM, __VA_ARGS__) #ifdef INF #undef INF #endif #define INF(...) EINA_LOG_DOM_INFO(EFREET_MODULE_LOG_DOM, __VA_ARGS__) #ifdef WRN #undef WRN #endif #define WRN(...) EINA_LOG_DOM_WARN(EFREET_MODULE_LOG_DOM, __VA_ARGS__) /* TODO: Move these to cache, make static and add accessor */ extern Eina_Hash *efreet_desktop_cache; #define EFREET_DESKTOP_CACHE_MAJOR 1 #define EFREET_DESKTOP_CACHE_MINOR 0 #define EFREET_DESKTOP_UTILS_CACHE_MAJOR 1 #define EFREET_DESKTOP_UTILS_CACHE_MINOR 0 #define EFREET_ICON_CACHE_MAJOR 1 #define EFREET_ICON_CACHE_MINOR 0 typedef struct _Efreet_Cache_Directory Efreet_Cache_Directory; typedef struct _Efreet_Cache_Icon Efreet_Cache_Icon; typedef struct _Efreet_Cache_Icon_Element Efreet_Cache_Icon_Element; typedef struct _Efreet_Cache_Fallback_Icon Efreet_Cache_Fallback_Icon; struct _Efreet_Cache_Directory { long long modified_time; }; struct _Efreet_Cache_Icon { const char *theme; Efreet_Cache_Icon_Element **icons; unsigned int icons_count; }; struct _Efreet_Cache_Icon_Element { const char **paths; /* possible paths for icon */ unsigned int paths_count; unsigned short type; /* size type of icon */ unsigned short normal; /* The size for this icon */ unsigned short min; /* The minimum size for this icon */ unsigned short max; /* The maximum size for this icon */ }; struct _Efreet_Cache_Fallback_Icon { #if 0 const char *name; #endif const char *theme; #if 0 int context; /* the type of icon */ #endif const char **icons; unsigned int icons_count; }; typedef struct _Efreet_Cache_Version Efreet_Cache_Version; struct _Efreet_Cache_Version { unsigned char major; unsigned char minor; }; typedef struct _Efreet_Cache_Hash Efreet_Cache_Hash; struct _Efreet_Cache_Hash { Eina_Hash *hash; }; typedef struct _Efreet_Cache_Array_String Efreet_Cache_Array_String; struct _Efreet_Cache_Array_String { const char **array; unsigned int array_count; }; int efreet_base_init(void); void efreet_base_shutdown(void); int efreet_cache_init(void); void efreet_cache_shutdown(void); int efreet_icon_init(void); void efreet_icon_shutdown(void); int efreet_menu_init(void); void efreet_menu_shutdown(void); EAPI Eina_List *efreet_default_dirs_get(const char *user_dir, Eina_List *system_dirs, const char *suffix); int efreet_ini_init(void); void efreet_ini_shutdown(void); int efreet_desktop_init(void); void efreet_desktop_shutdown(void); int efreet_util_init(void); int efreet_util_shutdown(void); EAPI const char *efreet_home_dir_get(void); const char *efreet_lang_get(void); const char *efreet_lang_country_get(void); const char *efreet_lang_modifier_get(void); size_t efreet_array_cat(char *buffer, size_t size, const char *strs[]); const char *efreet_desktop_environment_get(void); void efreet_util_desktop_cache_reload(void); EAPI const char *efreet_desktop_util_cache_file(void); EAPI const char *efreet_desktop_cache_file(void); EAPI const char *efreet_desktop_cache_dirs(void); int efreet_desktop_write_cache_dirs_file(void); void efreet_cache_desktop_update(void); void efreet_cache_icon_update(void); void efreet_cache_desktop_free(Efreet_Desktop *desktop); Efreet_Desktop *efreet_cache_desktop_find(const char *file); EAPI const char *efreet_icon_cache_file(const char *theme); EAPI const char *efreet_icon_theme_cache_file(void); Efreet_Cache_Icon *efreet_cache_icon_find(Efreet_Icon_Theme *theme, const char *icon); Efreet_Cache_Fallback_Icon *efreet_cache_icon_fallback_find(const char *icon); Efreet_Icon_Theme *efreet_cache_icon_theme_find(const char *theme); void efreet_cache_icon_theme_free(Efreet_Icon_Theme *theme); Eina_List *efreet_cache_icon_theme_list(void); EAPI void efreet_cache_array_string_free(Efreet_Cache_Array_String *array); EAPI void efreet_hash_free(Eina_Hash *hash, Eina_Free_Cb free_cb); EAPI void efreet_setowner(const char *path); EAPI void efreet_fsetowner(int fd); #define NON_EXISTING (void *)-1 EAPI extern int efreet_cache_update; /** * @} */ #endif