diff options
Diffstat (limited to '')
-rw-r--r-- | libraries/evas/src/lib/canvas/evas_stats.c | 185 |
1 files changed, 185 insertions, 0 deletions
diff --git a/libraries/evas/src/lib/canvas/evas_stats.c b/libraries/evas/src/lib/canvas/evas_stats.c new file mode 100644 index 0000000..cfb1a84 --- /dev/null +++ b/libraries/evas/src/lib/canvas/evas_stats.c | |||
@@ -0,0 +1,185 @@ | |||
1 | #include "evas_common.h" | ||
2 | #include "evas_private.h" | ||
3 | #include "evas_cs.h" | ||
4 | |||
5 | EAPI Eina_Bool | ||
6 | evas_cserve_want_get(void) | ||
7 | { | ||
8 | #ifdef EVAS_CSERVE | ||
9 | return evas_cserve_use_get(); | ||
10 | #endif | ||
11 | return 0; | ||
12 | } | ||
13 | |||
14 | EAPI Eina_Bool | ||
15 | evas_cserve_connected_get(void) | ||
16 | { | ||
17 | #ifdef EVAS_CSERVE | ||
18 | return evas_cserve_have_get(); | ||
19 | #endif | ||
20 | return 0; | ||
21 | } | ||
22 | |||
23 | EAPI Eina_Bool | ||
24 | evas_cserve_stats_get(Evas_Cserve_Stats *stats) | ||
25 | { | ||
26 | #ifdef EVAS_CSERVE | ||
27 | Op_Getstats_Reply st; | ||
28 | |||
29 | if (!evas_cserve_raw_stats_get(&st)) return 0; | ||
30 | if (!stats) return 1; | ||
31 | stats->saved_memory = st.saved_memory; | ||
32 | stats->wasted_memory = st.wasted_memory; | ||
33 | stats->saved_memory_peak = st.saved_memory_peak; | ||
34 | stats->wasted_memory_peak = st.wasted_memory_peak; | ||
35 | stats->saved_time_image_header_load = st.saved_time_image_header_load; | ||
36 | stats->saved_time_image_data_load = st.saved_time_image_data_load; | ||
37 | // may expand this in future | ||
38 | return 1; | ||
39 | #else | ||
40 | (void) stats; | ||
41 | return 0; | ||
42 | #endif | ||
43 | } | ||
44 | |||
45 | EAPI Eina_Bool | ||
46 | evas_cserve_image_cache_contents_get(Evas_Cserve_Image_Cache *cache) | ||
47 | { | ||
48 | #ifdef EVAS_CSERVE | ||
49 | Op_Getinfo_Reply *info; | ||
50 | unsigned char *p; | ||
51 | int i, j; | ||
52 | |||
53 | if (!(info = evas_cserve_raw_info_get())) return 0; | ||
54 | if (!cache) | ||
55 | { | ||
56 | free(info); | ||
57 | return 1; | ||
58 | } | ||
59 | cache->active.mem_total = info->active.mem_total; | ||
60 | cache->active.count = info->active.count; | ||
61 | cache->cached.mem_total = info->cached.mem_total; | ||
62 | cache->cached.count = info->cached.count; | ||
63 | cache->images = NULL; | ||
64 | j = info->active.count + info->cached.count; | ||
65 | p = (unsigned char *)info; | ||
66 | p += sizeof(Op_Getinfo_Reply); | ||
67 | for (i = 0; i < j; i++) | ||
68 | { | ||
69 | Evas_Cserve_Image *im; | ||
70 | Op_Getinfo_Item it; | ||
71 | char *file, *key; | ||
72 | |||
73 | memcpy(&it, p, sizeof(Op_Getinfo_Item)); | ||
74 | file = (char*) (p + sizeof(Op_Getinfo_Item)); | ||
75 | key = file + strlen(file) + 1; | ||
76 | im = calloc(1, sizeof(Evas_Cserve_Image)); | ||
77 | if (!im) continue; | ||
78 | if (file[0] != 0) | ||
79 | { | ||
80 | file = (char *)eina_stringshare_add(file); | ||
81 | if (!file) | ||
82 | { | ||
83 | free(im); | ||
84 | continue; | ||
85 | } | ||
86 | } | ||
87 | else | ||
88 | file = NULL; | ||
89 | if (key[0] != 0) | ||
90 | { | ||
91 | key = (char *)eina_stringshare_add(key); | ||
92 | if (!key) | ||
93 | { | ||
94 | if (file) eina_stringshare_del(file); | ||
95 | free(im); | ||
96 | continue; | ||
97 | } | ||
98 | } | ||
99 | else key = NULL; | ||
100 | cache->images = eina_list_append(cache->images, im); | ||
101 | im->file = file; | ||
102 | im->key = key; | ||
103 | im->w = it.w; | ||
104 | im->h = it.h; | ||
105 | im->cached_time = it.cached_time; | ||
106 | im->file_mod_time = it.file_mod_time; | ||
107 | im->file_checked_time = it.file_checked_time; | ||
108 | im->refcount = it.refcount; | ||
109 | im->data_refcount = it.data_refcount; | ||
110 | im->memory_footprint = it.memory_footprint; | ||
111 | im->head_load_time = it.head_load_time; | ||
112 | im->data_load_time = it.data_load_time; | ||
113 | im->active = it.active; | ||
114 | im->alpha = it.alpha; | ||
115 | im->data_loaded = it.data_loaded; | ||
116 | im->dead = it.dead; | ||
117 | im->useless = it.useless; | ||
118 | } | ||
119 | free(info); | ||
120 | return 1; | ||
121 | #else | ||
122 | (void) cache; | ||
123 | return 0; | ||
124 | #endif | ||
125 | } | ||
126 | |||
127 | EAPI void | ||
128 | evas_cserve_image_cache_contents_clean(Evas_Cserve_Image_Cache *cache) | ||
129 | { | ||
130 | #ifdef EVAS_CSERVE | ||
131 | Evas_Cserve_Image *im; | ||
132 | |||
133 | EINA_LIST_FREE(cache->images, im) | ||
134 | { | ||
135 | if (im->file) eina_stringshare_del(im->file); | ||
136 | if (im->key) eina_stringshare_del(im->key); | ||
137 | free(im); | ||
138 | } | ||
139 | #else | ||
140 | (void) cache; | ||
141 | #endif | ||
142 | } | ||
143 | |||
144 | EAPI Eina_Bool | ||
145 | evas_cserve_config_get(Evas_Cserve_Config *config) | ||
146 | { | ||
147 | #ifdef EVAS_CSERVE | ||
148 | Op_Getconfig_Reply conf; | ||
149 | |||
150 | if (!evas_cserve_raw_config_get(&conf)) return 0; | ||
151 | if (!config) return 1; | ||
152 | config->cache_max_usage = conf.cache_max_usage; | ||
153 | config->cache_item_timeout = conf.cache_item_timeout; | ||
154 | config->cache_item_timeout_check = conf.cache_item_timeout_check; | ||
155 | return 1; | ||
156 | #else | ||
157 | (void) config; | ||
158 | return 0; | ||
159 | #endif | ||
160 | } | ||
161 | |||
162 | EAPI Eina_Bool | ||
163 | evas_cserve_config_set(const Evas_Cserve_Config *config) | ||
164 | { | ||
165 | #ifdef EVAS_CSERVE | ||
166 | Op_Setconfig conf; | ||
167 | |||
168 | if (!config) return 1; | ||
169 | conf.cache_max_usage = config->cache_max_usage; | ||
170 | conf.cache_item_timeout = config->cache_item_timeout; | ||
171 | conf.cache_item_timeout_check = config->cache_item_timeout_check; | ||
172 | return evas_cserve_raw_config_set(&conf); | ||
173 | #else | ||
174 | (void) config; | ||
175 | return 0; | ||
176 | #endif | ||
177 | } | ||
178 | |||
179 | EAPI void | ||
180 | evas_cserve_disconnect(void) | ||
181 | { | ||
182 | #ifdef EVAS_CSERVE | ||
183 | evas_cserve_discon(); | ||
184 | #endif | ||
185 | } | ||