579a6ab7b0681d1166ea57780bb913e44bda86aa
[profile/ivi/evas.git] / src / bin / evas_cserve2_cache.c
1 #ifdef HAVE_CONFIG_H
2 # include "config.h"
3 #endif
4
5 #include <string.h>
6
7 #ifdef DEBUG_LOAD_TIME
8    #include <sys/time.h>
9 #endif
10
11 #include "evas_cserve2.h"
12 #include "evas_cs2_utils.h"
13
14 typedef struct _Request_Funcs Request_Funcs;
15 typedef struct _Request Request;
16
17 typedef struct _Entry Entry;
18 typedef struct _Reference Reference;
19 typedef struct _Waiter Waiter;
20 typedef struct _File_Data File_Data;
21 typedef struct _Image_Data Image_Data;
22 typedef struct _File_Watch File_Watch;
23
24 typedef struct _Font_Source Font_Source;
25 typedef struct _Font_Entry Font_Entry;
26 typedef struct _Font_Cache Font_Cache;
27
28 typedef void *(*Request_Msg_Create)(Entry *e, int *size);
29 typedef void (*Request_Response)(Entry *e, void *resp);
30 typedef void (*Request_Error)(Entry *e, Error_Type error);
31
32 struct _Request_Funcs {
33    Request_Msg_Create msg_create;
34    Request_Response response;
35    Request_Error error;
36 };
37
38 struct _Request {
39    Entry *entry;
40    Eina_List *waiters;
41    Eina_Bool processing;
42    Request_Funcs *funcs;
43 };
44
45 typedef enum {
46    CSERVE2_IMAGE_FILE,
47    CSERVE2_IMAGE_DATA,
48    CSERVE2_FONT_ENTRY
49 } Entry_Type;
50
51 struct _Entry {
52    unsigned int id;
53    Eina_List *references;
54    Request *request;
55    Entry_Type type;
56 #ifdef DEBUG_LOAD_TIME
57    struct timeval load_start;
58    struct timeval load_finish;
59    int load_time;
60    int saved_time;
61 #endif
62 };
63
64 struct _File_Data {
65    Entry base;
66    char *path;
67    char *key;
68    int w, h;
69    int frame_count;
70    int loop_count;
71    int loop_hint;
72    const char *loader_data;
73    File_Watch *watcher;
74    Eina_List *images;
75    Eina_Bool alpha : 1;
76    Eina_Bool invalid : 1;
77 };
78
79 // Default values for load options commented below
80 struct _Image_Data {
81    Entry base;
82    unsigned int file_id;
83    File_Data *file;
84    struct {
85       double dpi; // dpi < -1
86       int w, h; // w and h < -1
87       int scale_down; // scale_down < -1
88       int rx, ry, rw, rh; // rx, ry, rw, rh < -1
89       Eina_Bool orientation; // orientation == 0
90    } opts;
91    Shm_Handle *shm;
92    Eina_Bool alpha_sparse : 1;
93    Eina_Bool unused : 1;
94    Eina_Bool doload : 1;
95 };
96
97 struct _Font_Source {
98    const char *key;
99    const char *name;
100    const char *file;
101    int references;
102    void *ft;
103 };
104
105 struct _Font_Entry {
106    Entry base;
107    Font_Request *request;
108    unsigned int rend_flags;
109    unsigned int size;
110    unsigned int dpi;
111    Font_Source *src;
112    void *ft;
113    Fash_Glyph2 *glyphs;
114    unsigned int nglyphs;
115    Eina_Inlist *caches;
116    Font_Cache *last_cache;
117    Eina_Bool unused : 1;
118 #ifdef DEBUG_LOAD_TIME
119    struct timeval load_start;
120    struct timeval load_finish;
121    int gl_load_time;
122    int gl_saved_time;
123 #endif
124 };
125
126 struct _Font_Cache {
127    EINA_INLIST;
128    Font_Entry *fe;
129    Shm_Handle *shm;
130    unsigned int usage;
131    int inuse;
132    Eina_Inlist *glyphs;
133    unsigned int nglyphs;
134 };
135
136 struct _Glyph_Entry {
137    EINA_INLIST;
138    Font_Entry *fe;
139    Font_Cache *fc;
140    unsigned int index;
141    unsigned int offset;
142    unsigned int size;
143    unsigned int rows;
144    unsigned int width;
145    unsigned int pitch;
146    unsigned int num_grays;
147    unsigned int pixel_mode;
148 };
149
150 struct _Glyphs_Request {
151    Client *client;
152    Font_Entry *fe;
153    unsigned int current;
154    unsigned int nglyphs;
155    unsigned int *glyphs;
156    unsigned int nrender;
157    unsigned int *render;
158    unsigned int nanswer;
159    Glyph_Entry **answer;
160    unsigned int hint;
161 };
162
163 typedef struct _Glyphs_Request Glyphs_Request;
164
165 struct _Glyphs_Group {
166    Font_Cache *fc;
167    Eina_List *glyphs;
168 };
169
170 typedef struct _Glyphs_Group Glyphs_Group;
171
172 struct _Reference {
173    Client *client;
174    Entry *entry;
175    unsigned int client_entry_id; // for reverse lookup
176    int count;
177 };
178
179 struct _Waiter {
180    Reference *ref;
181    unsigned int rid;
182    Message_Type type;
183 };
184
185 struct _File_Watch {
186    const char *path;
187    Eina_List *entries;
188 };
189
190 static Eina_List *open_requests = NULL;
191 static Eina_List *load_requests = NULL;
192 static Eina_List *spload_requests = NULL; // speculative preload requests
193
194 static unsigned int _file_id = 0; // id unique number
195 static unsigned int _image_id = 0; // id unique number
196 static Eina_Hash *file_ids = NULL; // maps path + key --> file_id
197 static Eina_Hash *file_entries = NULL; // maps file_id --> entry
198
199 static Eina_Hash *image_ids = NULL; // maps file id + load opts --> image id
200 static Eina_Hash *image_entries = NULL; // maps image_id --> entry
201
202 static Eina_Hash *font_sources = NULL; // font path --> font source
203 static Eina_Hash *font_entries = NULL; // maps font path + options --> entry
204
205 static Eina_Hash *file_watch = NULL;
206
207 static Eina_List *image_entries_lru = NULL;
208
209 static Eina_List *font_shm_lru = NULL;
210
211 static int max_unused_mem_usage = 5 * 1024; /* in kbytes */
212 static int unused_mem_usage = 0;
213 static int max_font_usage = 10 * 4 * 1024; /* in kbytes */
214 static int font_mem_usage = 0;
215
216 #ifdef DEBUG_LOAD_TIME
217 static int
218 _timeval_sub(const struct timeval *tv2, const struct timeval *tv1)
219 {
220     int t1, t2;
221
222     t1 = tv1->tv_usec + tv1->tv_sec * 1000000;
223     t2 = tv2->tv_usec + tv2->tv_sec * 1000000;
224
225     // Make sure that we don't add negative values. Some images may have
226     // been not loaded yet, so it would mess with the stats.
227     if (t2 > t1)
228       return t2 - t1;
229
230     return 0;
231 }
232 #endif
233
234 static inline void
235 _entry_load_start(Entry *e)
236 {
237 #ifdef DEBUG_LOAD_TIME
238    gettimeofday(&e->load_start, NULL);
239 #endif
240 }
241
242 static inline void
243 _entry_load_finish(Entry *e)
244 {
245 #ifdef DEBUG_LOAD_TIME
246    gettimeofday(&e->load_finish, NULL);
247    e->load_time = _timeval_sub(&e->load_finish, &e->load_start);
248 #endif
249 }
250
251 static inline void
252 _entry_load_reused(Entry *e)
253 {
254 #ifdef DEBUG_LOAD_TIME
255    e->saved_time += e->load_time;
256 #endif
257 }
258
259 static void
260 _image_opened_send(Client *client, File_Data *entry, unsigned int rid)
261 {
262     int size;
263     Msg_Opened msg;
264
265     DBG("Sending OPENED reply for entry: %d and RID: %d.", entry->base.id, rid);
266     // clear the struct with possible paddings, since it is not aligned.
267     memset(&msg, 0, sizeof(msg));
268     msg.base.rid = rid;
269     msg.base.type = CSERVE2_OPENED;
270     msg.image.w = entry->w;
271     msg.image.h = entry->h;
272     msg.image.frame_count = entry->frame_count;
273     msg.image.loop_count = entry->loop_count;
274     msg.image.loop_hint = entry->loop_hint;
275     msg.image.alpha = entry->alpha;
276
277     size = sizeof(msg);
278     cserve2_client_send(client, &size, sizeof(size));
279     cserve2_client_send(client, &msg, sizeof(msg));
280     // _cserve2_cache_load_requests_process();
281 }
282
283 static void
284 _image_loaded_send(Client *client, Image_Data *entry, unsigned int rid)
285 {
286    int size;
287    const char *shmpath = cserve2_shm_name_get(entry->shm);
288    Msg_Loaded msg;
289    int path_len;
290    char *buf;
291
292    DBG("Sending LOADED reply for entry %d and RID: %d.", entry->base.id, rid);
293    path_len = strlen(shmpath) + 1;
294
295    memset(&msg, 0, sizeof(msg));
296    msg.base.rid = rid;
297    msg.base.type = CSERVE2_LOADED;
298
299    msg.shm.mmap_offset = cserve2_shm_map_offset_get(entry->shm);
300    msg.shm.use_offset = cserve2_shm_offset_get(entry->shm);
301    msg.shm.mmap_size = cserve2_shm_map_size_get(entry->shm);
302    msg.shm.image_size = cserve2_shm_size_get(entry->shm);
303    msg.alpha_sparse = entry->alpha_sparse;
304
305    buf = malloc(sizeof(msg) + path_len);
306
307    memcpy(buf, &msg, sizeof(msg));
308    memcpy(buf + sizeof(msg), shmpath, path_len);
309
310    size = sizeof(msg) + path_len;
311
312    cserve2_client_send(client, &size, sizeof(size));
313    cserve2_client_send(client, buf, size);
314
315    free(buf);
316 }
317
318 static void
319 _image_preloaded_send(Client *client, unsigned int rid)
320 {
321    int size;
322    Msg_Preloaded msg;
323
324    DBG("Sending PRELOADED reply for RID: %d.", rid);
325    memset(&msg, 0, sizeof(msg));
326    msg.base.rid = rid;
327    msg.base.type = CSERVE2_PRELOADED;
328
329    size = sizeof(msg);
330    cserve2_client_send(client, &size, sizeof(size));
331    cserve2_client_send(client, &msg, size);
332 }
333
334 static void
335 _font_loaded_send(Client *client, unsigned int rid)
336 {
337    int size;
338    Msg_Font_Loaded msg;
339
340    DBG("Sending FONT_LOADED reply for RID: %d.", rid);
341
342    size = sizeof(msg);
343    memset(&msg, 0, size);
344    msg.base.rid = rid;
345    msg.base.type = CSERVE2_FONT_LOADED;
346
347    size = sizeof(msg);
348    cserve2_client_send(client, &size, sizeof(size));
349    cserve2_client_send(client, &msg, size);
350 }
351
352 static void *
353 _open_request_build(File_Data *f, int *bufsize)
354 {
355    char *buf;
356    int size, pathlen, keylen;
357    Slave_Msg_Image_Open msg;
358
359    pathlen = strlen(f->path) + 1;
360    keylen = strlen(f->key) + 1;
361
362    size = sizeof(msg) + pathlen + keylen;
363    buf = malloc(size);
364    if (!buf) return NULL;
365
366    memset(&msg, 0, sizeof(msg));
367    memcpy(buf, &msg, sizeof(msg));
368    memcpy(buf + sizeof(msg), f->path, pathlen);
369    memcpy(buf + sizeof(msg) + pathlen, f->key, keylen);
370
371    *bufsize = size;
372
373    _entry_load_start(&f->base);
374
375    return buf;
376 }
377
378 static void
379 _request_failed(Entry *e, Error_Type type)
380 {
381    Waiter *w;
382    Eina_List *l;
383    Reference *ref;
384
385    DBG("Request for entry %p failed with error %d", e, type);
386    EINA_LIST_FREE(e->request->waiters, w)
387      {
388         cserve2_client_error_send(w->ref->client, w->rid, type);
389
390         w->ref->count--;
391         free(w);
392      }
393
394    EINA_LIST_FOREACH(e->references, l, ref)
395      {
396         Eina_Hash *hash = NULL;
397         if (e->type == CSERVE2_IMAGE_FILE)
398           hash = ref->client->files.referencing;
399         else if (e->type == CSERVE2_IMAGE_DATA)
400           hash = ref->client->images.referencing;
401         else
402           continue;
403
404         eina_hash_del_by_key(hash, &(ref->client_entry_id));
405      }
406 }
407
408 static void
409 _open_request_response(File_Data *e, Slave_Msg_Image_Opened *resp)
410 {
411    Waiter *w;
412
413    _entry_load_finish(&e->base);
414    e->w = resp->w;
415    e->h = resp->h;
416    e->frame_count = resp->frame_count;
417    e->loop_count = resp->loop_count;
418    e->loop_hint = resp->loop_hint;
419    e->alpha = resp->alpha;
420    if (resp->has_loader_data)
421      {
422         const char *ldata = (const char *)resp +
423                                            sizeof(Slave_Msg_Image_Opened);
424         e->loader_data = eina_stringshare_add(ldata);
425      }
426
427    DBG("Finished opening file %d. Notifying %d waiters.", e->base.id,
428        e->base.request->waiters ? eina_list_count(e->base.request->waiters) : 0);
429    EINA_LIST_FREE(e->base.request->waiters, w)
430      {
431         _image_opened_send(w->ref->client, e, w->rid);
432         free(w);
433      }
434 }
435
436 static Request_Funcs _open_funcs = {
437    .msg_create = (Request_Msg_Create)_open_request_build,
438    .response = (Request_Response)_open_request_response,
439    .error = (Request_Error)_request_failed
440 };
441
442 static void *
443 _load_request_build(Image_Data *i, int *bufsize)
444 {
445    char *buf, *ptr;
446    const char *shmpath;
447    int size;
448    int shmlen, filelen, keylen, loaderlen;
449    Slave_Msg_Image_Load msg;
450
451    // opening shm for this file
452    i->shm = cserve2_shm_request(i->file->w * i->file->h * 4);
453
454    shmpath = cserve2_shm_name_get(i->shm);
455
456    shmlen = strlen(shmpath) + 1;
457    filelen = strlen(i->file->path) + 1;
458    keylen = strlen(i->file->key) + 1;
459    if (i->file->loader_data)
460      loaderlen = strlen(i->file->loader_data) + 1;
461    else
462      loaderlen = 0;
463
464    size = sizeof(msg) + shmlen + filelen + keylen + loaderlen;
465    buf = malloc(size);
466    if (!buf) return NULL;
467
468    memset(&msg, 0, sizeof(msg));
469    msg.w = i->file->w;
470    msg.h = i->file->h;
471    msg.alpha = i->file->alpha;
472    msg.opts.w = i->opts.w;
473    msg.opts.h = i->opts.h;
474    msg.opts.rx = i->opts.rx;
475    msg.opts.ry = i->opts.ry;
476    msg.opts.rw = i->opts.rw;
477    msg.opts.rh = i->opts.rh;
478    msg.opts.scale_down_by = i->opts.scale_down;
479    msg.opts.dpi = i->opts.dpi;
480    msg.opts.orientation = i->opts.orientation;
481
482    msg.shm.mmap_offset = cserve2_shm_map_offset_get(i->shm);
483    msg.shm.image_offset = cserve2_shm_offset_get(i->shm);
484    msg.shm.mmap_size = cserve2_shm_map_size_get(i->shm);
485    msg.shm.image_size = cserve2_shm_size_get(i->shm);
486
487    msg.has_loader_data = !!loaderlen;
488
489    memcpy(buf, &msg, sizeof(msg));
490    ptr = buf + sizeof(msg);
491
492    memcpy(ptr, shmpath, shmlen);
493    ptr += shmlen;
494    memcpy(ptr, i->file->path, filelen);
495    ptr += filelen;
496    memcpy(ptr, i->file->key, keylen);
497    ptr += keylen;
498    memcpy(ptr, i->file->loader_data, loaderlen);
499
500    *bufsize = size;
501
502    _entry_load_start(&i->base);
503
504    return buf;
505 }
506
507 static void
508 _load_request_response(Image_Data *e, Slave_Msg_Image_Loaded *resp)
509 {
510    Waiter *w;
511
512    _entry_load_finish(&e->base);
513
514    e->alpha_sparse = resp->alpha_sparse;
515    if (!e->doload)
516      DBG("Entry %d loaded by speculative preload.", e->base.id);
517
518    DBG("Finished loading image %d. Notifying %d waiters.", e->base.id,
519        e->base.request->waiters ? eina_list_count(e->base.request->waiters) : 0);
520    EINA_LIST_FREE(e->base.request->waiters, w)
521      {
522         if (w->type == CSERVE2_LOAD)
523           _image_loaded_send(w->ref->client, e, w->rid);
524         else if (w->type == CSERVE2_PRELOAD)
525           _image_preloaded_send(w->ref->client, w->rid);
526         // else w->type == CSERVE2_SETOPTS --> do nothing
527
528         free(w);
529      }
530 }
531
532 static Request_Funcs _load_funcs = {
533    .msg_create = (Request_Msg_Create)_load_request_build,
534    .response = (Request_Response)_load_request_response,
535    .error = (Request_Error)_request_failed
536 };
537
538 static unsigned int
539 _img_opts_id_get(Image_Data *im, char *buf, int size)
540 {
541    uintptr_t image_id;
542
543    snprintf(buf, size, "%u:%0.3f:%dx%d:%d:%d,%d+%dx%d:%d",
544             im->file_id, im->opts.dpi, im->opts.w, im->opts.h,
545             im->opts.scale_down, im->opts.rx, im->opts.ry,
546             im->opts.rw, im->opts.rh, im->opts.orientation);
547
548    image_id = (uintptr_t)eina_hash_find(image_ids, buf);
549
550    return image_id;
551 }
552
553 static int
554 _image_entry_size_get(Image_Data *e)
555 {
556    int size = sizeof(Image_Data);
557    /* XXX: get the overhead of the shm handler too */
558    if (e->shm)
559      size += cserve2_shm_size_get(e->shm);
560    return size / 1024;
561 }
562
563 static void
564 _file_id_free(File_Data *entry)
565 {
566    char buf[4096];
567
568    DBG("Removing entry file id: %d, file: \"%s:%s\"",
569        entry->base.id, entry->path, entry->key);
570    snprintf(buf, sizeof(buf), "%s:%s", entry->path, entry->key);
571    eina_hash_del_by_key(file_ids, buf);
572 }
573
574 static void
575 _image_id_free(Image_Data *entry)
576 {
577    char buf[4096];
578
579    DBG("Removing entry image id: %d", entry->base.id);
580
581    _img_opts_id_get(entry, buf, sizeof(buf));
582    eina_hash_del_by_key(image_ids, buf);
583 }
584
585 static void
586 _image_entry_free(Image_Data *entry)
587 {
588    File_Data *fentry = entry->file;
589
590    if (entry->base.request)
591      {
592         if (entry->base.request->processing)
593           entry->base.request->entry = NULL;
594         else if (!entry->base.request->waiters)
595           {
596              if (entry->doload)
597                load_requests = eina_list_remove(load_requests,
598                                                 entry->base.request);
599              else
600                spload_requests = eina_list_remove(spload_requests,
601                                                   entry->base.request);
602           }
603      }
604
605    if (entry->unused)
606      {
607         image_entries_lru = eina_list_remove(image_entries_lru, entry);
608         unused_mem_usage -= _image_entry_size_get(entry);
609      }
610
611    if (fentry)
612      {
613         fentry->images = eina_list_remove(fentry->images, entry);
614         if (!fentry->images && !fentry->base.references)
615           eina_hash_del_by_key(file_entries, &fentry->base.id);
616      }
617    if (entry->shm)
618      cserve2_shm_unref(entry->shm);
619    free(entry);
620 }
621
622 static void
623 _hash_image_entry_free(void *data)
624 {
625    Image_Data *entry = data;
626
627    _image_id_free(entry);
628    _image_entry_free(entry);
629 }
630
631 static void
632 _file_entry_free(File_Data *entry)
633 {
634    File_Watch *fw;
635
636    // Should we call free for each of the images too?
637    // If everything goes fine, it's not necessary.
638    if (entry->images)
639      {
640         ERR("Freeing file %d (\"%s:%s\") image data still referenced.",
641             entry->base.id, entry->path, entry->key);
642         eina_list_free(entry->images);
643      }
644
645    if (entry->base.request)
646      {
647         if (entry->base.request->processing)
648           entry->base.request->entry = NULL;
649         else if (!entry->base.request->waiters)
650           {
651              open_requests = eina_list_remove(open_requests,
652                                               entry->base.request);
653              free(entry->base.request);
654           }
655      }
656
657    if ((fw = entry->watcher))
658      {
659         fw->entries = eina_list_remove(fw->entries, entry);
660         if (!fw->entries)
661           eina_hash_del_by_key(file_watch, fw->path);
662      }
663
664    free(entry->key);
665    free(entry->path);
666    eina_stringshare_del(entry->loader_data);
667    free(entry);
668 }
669
670 static void
671 _hash_file_entry_free(void *data)
672 {
673    File_Data *entry = data;
674    // TODO: Add some checks to make sure that we are freeing an
675    // unused entry.
676
677    _file_id_free(entry);
678    _file_entry_free(entry);
679 }
680
681 static void
682 _file_watch_free(void *data)
683 {
684    File_Watch *fw = data;
685    cserve2_file_change_watch_del(fw->path);
686    eina_stringshare_del(fw->path);
687    eina_list_free(fw->entries);
688    free(fw);
689 }
690
691 static int
692 _font_entry_cmp(const Font_Entry *k1, int k1_length __UNUSED__, const Font_Entry *k2, int k2_length __UNUSED__)
693 {
694    if (k1->src->key == k2->src->key)
695      {
696         if (k1->size == k2->size)
697           {
698              if (k1->rend_flags == k2->rend_flags)
699                return k1->dpi - k2->dpi;
700              return k1->rend_flags - k2->rend_flags;
701           }
702         return k1->size - k2->size;
703      }
704    return strcmp(k1->src->key, k2->src->key);
705 }
706
707 static int
708 _font_entry_key_hash(const Font_Entry *key, int key_length __UNUSED__)
709 {
710    int hash;
711    hash = eina_hash_djb2(key->src->key, eina_stringshare_strlen(key->src->key) + 1);
712    hash ^= eina_hash_int32(&key->rend_flags, sizeof(int));
713    hash ^= eina_hash_int32(&key->size, sizeof(int));
714    hash ^= eina_hash_int32(&key->dpi, sizeof(int));
715
716    return hash;
717 }
718
719 static void
720 _font_entry_free(Font_Entry *fe)
721 {
722    fash_gl_free(fe->glyphs);
723    fe->src->references--;
724    if (fe->ft) cserve2_font_ft_free(fe->ft);
725    if (fe->src->references <= 0)
726      eina_hash_del_by_key(font_sources, fe->src->key);
727    free(fe);
728 }
729
730 static void
731 _glyph_free_cb(void *data)
732 {
733    Glyph_Entry *gl = data;
734    free(gl);
735 }
736
737 static void
738 _font_source_free(Font_Source *fs)
739 {
740    eina_stringshare_del(fs->key);
741    eina_stringshare_del(fs->name);
742    eina_stringshare_del(fs->file);
743    if (fs->ft) cserve2_font_source_ft_free(fs->ft);
744
745    free(fs);
746 }
747
748 static void
749 _font_shm_promote(Font_Cache *fc)
750 {
751    Eina_List *l;
752    l = eina_list_data_find_list(font_shm_lru, fc);
753    font_shm_lru = eina_list_demote_list(font_shm_lru, l);
754 }
755
756 static int
757 _font_shm_size_get(Font_Cache *fc)
758 {
759    int size;
760
761    size = sizeof(*fc) + cserve2_shm_size_get(fc->shm);
762
763    return size;
764 }
765
766 static void
767 _font_shm_free(Font_Cache *fc)
768 {
769    Font_Entry *fe = fc->fe;
770    fe->caches = eina_inlist_remove(fe->caches, EINA_INLIST_GET(fc));
771    if (fc == fe->last_cache)
772      fe->last_cache = NULL;
773
774    while (fc->glyphs)
775      {
776         Glyph_Entry *gl = EINA_INLIST_CONTAINER_GET(fc->glyphs, Glyph_Entry);
777         fc->glyphs = eina_inlist_remove(fc->glyphs, fc->glyphs);
778         fash_gl_del(fe->glyphs, gl->index);
779      }
780
781    cserve2_shm_unref(fc->shm);
782    free(fc);
783
784    if (!fe->caches)
785      eina_hash_del_by_key(font_entries, fe);
786 }
787
788 static void
789 _font_shm_lru_flush(void)
790 {
791    Eina_List *l, *l_next;
792
793    l = font_shm_lru;
794    l_next = eina_list_next(l);
795
796    while (l && font_mem_usage > max_font_usage)
797      {
798         int size;
799         Font_Cache *fc;
800
801         fc = eina_list_data_get(l);
802         if (fc->fe->unused && fc->inuse == 0)
803           {
804              font_shm_lru = eina_list_remove_list(font_shm_lru, l);
805              size = _font_shm_size_get(fc);
806              size += fc->nglyphs * sizeof(Glyph_Entry);
807              _font_shm_free(fc);
808              font_mem_usage -= size;
809           }
810
811         l = l_next;
812         l_next = eina_list_next(l);
813      }
814 }
815
816 void
817 cserve2_cache_init(void)
818 {
819    file_ids = eina_hash_string_superfast_new(NULL);
820    file_entries = eina_hash_int32_new(_hash_file_entry_free);
821    image_ids = eina_hash_string_superfast_new(NULL);
822    image_entries = eina_hash_string_superfast_new(_hash_image_entry_free);
823    file_watch = eina_hash_string_superfast_new(_file_watch_free);
824
825    font_sources = eina_hash_string_small_new(EINA_FREE_CB(_font_source_free));
826    font_entries = eina_hash_new(NULL,
827                                 EINA_KEY_CMP(_font_entry_cmp),
828                                 EINA_KEY_HASH(_font_entry_key_hash),
829                                 EINA_FREE_CB(_font_entry_free),
830                                 5);
831 }
832
833 void
834 cserve2_cache_shutdown(void)
835 {
836    Font_Cache *fc;
837
838    EINA_LIST_FREE(font_shm_lru, fc)
839      _font_shm_free(fc);
840
841    eina_hash_free(image_entries);
842    eina_hash_free(image_ids);
843    eina_hash_free(file_entries);
844    eina_hash_free(file_ids);
845    eina_hash_free(file_watch);
846
847    eina_hash_free(font_entries);
848    eina_hash_free(font_sources);
849 }
850
851 static void
852 _request_answer_del(Eina_List **requests, Request *req, Client *client, Error_Type err)
853 {
854    Eina_List *l, *l_next;
855    Waiter *it;
856
857    DBG("Removing answer requests from entry: %d, client: %d",
858        req->entry->id, client->id);
859
860    EINA_LIST_FOREACH_SAFE(req->waiters, l, l_next, it)
861      {
862         if (it->ref->client->id == client->id)
863           {
864              cserve2_client_error_send(client, it->rid, err);
865              req->waiters = eina_list_remove_list(req->waiters, l);
866              free(it);
867           }
868      }
869
870    // FIXME: Should this be really here? I guess that it should be in the
871    // entry_free_cb function, or entry_reference_del, when there are no more
872    // references
873    if (!req->entry && !req->waiters)
874      {
875         *requests = eina_list_remove(*requests, req);
876         free(req);
877      }
878 }
879
880 static void
881 _request_answer_all_del(Eina_List **requests, Request *req, Error_Type err)
882 {
883    Waiter *it;
884
885    DBG("Removing all answer requests from entry: %d", req->entry->id);
886
887    EINA_LIST_FREE(req->waiters, it)
888      {
889         cserve2_client_error_send(it->ref->client, it->rid, err);
890         free(it);
891      }
892
893    *requests = eina_list_remove(*requests, req);
894    free(req);
895 }
896
897 static void
898 _request_answer_add(Request *req, Reference *ref, unsigned int rid, Message_Type type)
899 {
900    Waiter *w = malloc(sizeof(*w));
901
902    w->ref = ref;
903    w->rid = rid;
904    w->type = type;
905
906    DBG("Add answer request for entry id: %d, client: %d, rid: %d",
907        req->entry->id, ref->client->id, rid);
908    req->waiters = eina_list_append(req->waiters, w);
909 }
910
911 static void
912 _request_add(Eina_List **requests, Entry *entry, Reference *ref, unsigned int rid, Message_Type type)
913 {
914    Request *req;
915
916    // add the request if it doesn't exist yet
917    if (!entry->request)
918      {
919         req = malloc(sizeof(*req));
920         req->entry = entry;
921         req->waiters = NULL;
922         req->processing = EINA_FALSE;
923         entry->request = req;
924         if (type == CSERVE2_OPEN)
925           req->funcs = &_open_funcs;
926         else
927           req->funcs = &_load_funcs;
928         *requests = eina_list_append(*requests, req);
929         DBG("Add request for entry id: %d, client: %d, rid: %d",
930             req->entry->id, ref->client->id, rid);
931      }
932    else
933      req = entry->request;
934
935    if (type != CSERVE2_SETOPTS)
936      _request_answer_add(req, ref, rid, type);
937    else
938      DBG("Adding entry for speculative preload: id=%d", req->entry->id);
939 }
940
941 static Reference *
942 _entry_reference_add(Entry *entry, Client *client, unsigned int client_entry_id)
943 {
944    Reference *ref;
945
946    // increase reference for this file
947    ref = malloc(sizeof(*ref));
948    ref->client = client;
949    ref->entry = entry;
950    ref->client_entry_id = client_entry_id;
951    ref->count = 1;
952    entry->references = eina_list_append(entry->references, ref);
953
954    return ref;
955 }
956
957 static int
958 _cserve2_cache_open_requests_process(int nloaders)
959 {
960    Request *req;
961    char *slave_cmd_data;
962    int slave_cmd_size;
963
964    while ((nloaders > 0) && (open_requests))
965      {
966         // remove the first element from the list and process this element
967         req = eina_list_data_get(open_requests);
968         open_requests = eina_list_remove_list(open_requests, open_requests);
969
970         DBG("Processing OPEN request for file entry: %d", req->entry->id);
971
972         slave_cmd_data = req->funcs->msg_create(req->entry, &slave_cmd_size);
973
974         cserve2_slave_cmd_dispatch(req, IMAGE_OPEN, slave_cmd_data,
975                                    slave_cmd_size);
976
977         free(slave_cmd_data);
978
979         req->processing = EINA_TRUE;
980         nloaders--;
981      }
982
983    return nloaders;
984 }
985
986 static int
987 _cserve2_cache_load_requests_list_process(Eina_List **queue, int nloaders)
988 {
989    Eina_List *skipped = NULL;
990    Request *req;
991
992    while ((nloaders > 0) && (*queue))
993      {
994         Image_Data *ientry;
995         char *buf;
996         int size;
997
998         // remove the first element from the list and process this element
999         req = eina_list_data_get(*queue);
1000         *queue = eina_list_remove_list(*queue, *queue);
1001
1002         ientry = (Image_Data *)req->entry;
1003         if (!ientry->file)
1004           {
1005              ERR("File entry doesn't exist for entry id %d", req->entry->id);
1006              _request_failed(req->entry, CSERVE2_INVALID_CACHE);
1007              continue;
1008           }
1009
1010         if (ientry->file->base.request)
1011           {
1012              /* OPEN still pending, skip this request */
1013              skipped = eina_list_append(skipped, req);
1014              continue;
1015           }
1016
1017         DBG("Processing LOAD request for image entry: %d", req->entry->id);
1018
1019         buf = req->funcs->msg_create(req->entry, &size);
1020
1021         cserve2_slave_cmd_dispatch(req, IMAGE_LOAD, buf, size);
1022
1023         free(buf);
1024
1025         req->processing = EINA_TRUE;
1026
1027         nloaders--;
1028      }
1029
1030    EINA_LIST_FREE(skipped, req)
1031       *queue = eina_list_append(*queue, req);
1032
1033    return nloaders;
1034 }
1035
1036 static void
1037 _cserve2_cache_load_requests_process(int nloaders)
1038 {
1039    nloaders = _cserve2_cache_load_requests_list_process(&load_requests,
1040                                                         nloaders);
1041    _cserve2_cache_load_requests_list_process(&spload_requests, nloaders - 1);
1042 }
1043
1044
1045 void
1046 cserve2_cache_requests_process(void)
1047 {
1048    int avail_loaders;
1049
1050    avail_loaders = cserve2_slave_available_get();
1051    avail_loaders = _cserve2_cache_open_requests_process(avail_loaders);
1052    _cserve2_cache_load_requests_process(avail_loaders);
1053 }
1054
1055 static void
1056 _entry_unused_push(Image_Data *e)
1057 {
1058    int size = _image_entry_size_get(e);
1059
1060    if ((size > max_unused_mem_usage) || !(e->doload))
1061      {
1062         eina_hash_del_by_key(image_entries, &e->base.id);
1063         return;
1064      }
1065    while (size > (max_unused_mem_usage - unused_mem_usage))
1066      {
1067         Entry *ie = eina_list_data_get(eina_list_last(image_entries_lru));
1068         eina_hash_del_by_key(image_entries, &ie->id);
1069      }
1070    image_entries_lru = eina_list_append(image_entries_lru, e);
1071    e->unused = EINA_TRUE;
1072    unused_mem_usage += size;
1073 }
1074
1075 static void
1076 _entry_reference_del(Entry *entry, Reference *ref)
1077 {
1078    entry->references = eina_list_remove(entry->references, ref);
1079
1080    if (entry->references)
1081      goto free_ref;
1082
1083    if (entry->type == CSERVE2_IMAGE_FILE)
1084      {
1085         File_Data *fentry = (File_Data *)entry;
1086
1087         if (fentry->invalid)
1088           _file_entry_free(fentry);
1089         else if (!fentry->images)
1090           eina_hash_del_by_key(file_entries, &entry->id);
1091         /* don't free file entries that have images attached to it, they will
1092          * be freed when the last unused image is freed */
1093      }
1094    else if (entry->type == CSERVE2_IMAGE_DATA)
1095      {
1096         Image_Data *ientry = (Image_Data *)entry;
1097
1098         if (!ientry->file)
1099           eina_hash_del_by_key(image_entries, &entry->id);
1100         else if (ientry->file->invalid)
1101           _image_entry_free(ientry);
1102         else
1103           _entry_unused_push(ientry);
1104      }
1105    else if (entry->type == CSERVE2_FONT_ENTRY)
1106      {
1107         Font_Entry *fe = (Font_Entry *)entry;
1108         fe->unused = EINA_TRUE;
1109         if (!fe->caches)
1110           eina_hash_del_by_key(font_entries, fe);
1111      }
1112    else
1113      ERR("Wrong type of entry.");
1114
1115 free_ref:
1116    free(ref);
1117 }
1118
1119 static void
1120 _entry_free_cb(void *data)
1121 {
1122    Reference *ref = data;
1123    Entry *entry;
1124
1125    DBG("Removing client reference for entry id: %d, client: %d",
1126        ref->entry->id, ref->client->id);
1127
1128    entry = ref->entry;
1129
1130    if (entry->request && !entry->request->processing)
1131      {
1132         if (entry->type == CSERVE2_IMAGE_FILE)
1133           _request_answer_del(&open_requests, entry->request, ref->client,
1134                               CSERVE2_REQUEST_CANCEL);
1135         else if (entry->type == CSERVE2_IMAGE_DATA)
1136           {
1137              if (((Image_Data *)entry)->doload)
1138                _request_answer_del(&load_requests, entry->request,
1139                                    ref->client, CSERVE2_REQUEST_CANCEL);
1140              else
1141                _request_answer_del(&spload_requests, entry->request,
1142                                    ref->client, CSERVE2_REQUEST_CANCEL);
1143           }
1144      }
1145
1146    _entry_reference_del(entry, ref);
1147 }
1148
1149 static void
1150 _font_entry_reference_del(Client *client, Font_Entry *fe)
1151 {
1152    Eina_List *l;
1153    Reference *ref;
1154
1155    EINA_LIST_FOREACH(client->fonts.referencing, l, ref)
1156      {
1157         if (ref->entry == (Entry *)fe)
1158           {
1159              ref->count--;
1160              if (ref->count > 0)
1161                break;
1162
1163              client->fonts.referencing = eina_list_remove_list(
1164                  client->fonts.referencing, l);
1165              _entry_reference_del(&fe->base, ref);
1166              return;
1167           }
1168      }
1169 }
1170
1171 void
1172 cserve2_cache_client_new(Client *client)
1173 {
1174    client->files.referencing = eina_hash_int32_new(_entry_free_cb);
1175    client->images.referencing = eina_hash_int32_new(_entry_free_cb);
1176    client->fonts.referencing = NULL;
1177 }
1178
1179 void
1180 cserve2_cache_client_del(Client *client)
1181 {
1182    Reference *ref;
1183
1184    // will call _entry_free_cb() for every entry
1185    eina_hash_free(client->images.referencing);
1186    // will call _entry_free_cb() for every entry
1187    eina_hash_free(client->files.referencing);
1188
1189    EINA_LIST_FREE(client->fonts.referencing, ref)
1190      {
1191         _entry_reference_del(ref->entry, ref);
1192      }
1193 }
1194
1195 static Image_Data *
1196 _image_msg_new(Client *client, Msg_Setopts *msg)
1197 {
1198    Reference *ref;
1199    Image_Data *im_entry;
1200
1201    ref = eina_hash_find(client->files.referencing, &msg->file_id);
1202    if (!ref)
1203      {
1204         ERR("Couldn't find file id: %d, for image id: %d",
1205             msg->file_id, msg->image_id);
1206         cserve2_client_error_send(client, msg->base.rid,
1207                                   CSERVE2_INVALID_CACHE);
1208         return NULL;
1209      }
1210    if (((File_Data *)ref->entry)->invalid)
1211      {
1212         cserve2_client_error_send(client, msg->base.rid,
1213                                   CSERVE2_FILE_CHANGED);
1214         return NULL;
1215      }
1216
1217    im_entry = calloc(1, sizeof(*im_entry));
1218    im_entry->base.type = CSERVE2_IMAGE_DATA;
1219    im_entry->file_id = ref->entry->id;
1220    im_entry->file = (File_Data *)ref->entry;
1221    im_entry->opts.dpi = msg->opts.dpi;
1222    im_entry->opts.w = msg->opts.w;
1223    im_entry->opts.h = msg->opts.h;
1224    im_entry->opts.scale_down = msg->opts.scale_down;
1225    im_entry->opts.rx = msg->opts.rx;
1226    im_entry->opts.ry = msg->opts.ry;
1227    im_entry->opts.rw = msg->opts.rw;
1228    im_entry->opts.rh = msg->opts.rh;
1229    im_entry->opts.orientation = msg->opts.orientation;
1230
1231    return im_entry;
1232 }
1233
1234 static void
1235 _file_changed_cb(const char *path __UNUSED__, Eina_Bool deleted __UNUSED__, void *data)
1236 {
1237    File_Watch *fw = data;
1238    File_Data *e;
1239    Eina_List *l;
1240
1241    EINA_LIST_FOREACH(fw->entries, l, e)
1242      {
1243         Eina_List *ll;
1244         Image_Data *ie;
1245
1246         e->invalid = EINA_TRUE;
1247         e->watcher = NULL;
1248
1249         EINA_LIST_FOREACH(e->images, ll, ie)
1250           {
1251              _image_id_free(ie);
1252              eina_hash_set(image_entries, &ie->base.id, NULL);
1253              if (ie->base.request && !ie->base.request->processing)
1254                {
1255                   if (ie->doload)
1256                     _request_answer_all_del(&load_requests, ie->base.request,
1257                                             CSERVE2_FILE_CHANGED);
1258                   else
1259                     _request_answer_all_del(&spload_requests, ie->base.request,
1260                                             CSERVE2_FILE_CHANGED);
1261                }
1262              ie->base.request = NULL;
1263              if (ie->unused)
1264                _image_entry_free(ie);
1265           }
1266
1267         _file_id_free(e);
1268         eina_hash_set(file_entries, &e->base.id, NULL);
1269         if (e->base.request && !e->base.request->processing)
1270           _request_answer_all_del(&open_requests, e->base.request,
1271                                   CSERVE2_FILE_CHANGED);
1272         e->base.request = NULL;
1273         if (!e->images && !e->base.references)
1274           _file_entry_free(e);
1275      }
1276
1277    eina_hash_del_by_key(file_watch, fw->path);
1278 }
1279
1280 static Font_Source *
1281 _cserve2_font_source_find(const char *name)
1282 {
1283    Font_Source *fs;
1284
1285    fs = eina_hash_find(font_sources, name);
1286
1287    return fs;
1288 }
1289
1290 static Font_Entry *
1291 _cserve2_font_entry_find(const char *name, unsigned int namelen, unsigned int size, unsigned int rend_flags, unsigned int dpi)
1292 {
1293    Font_Entry tmp_fe;
1294    Font_Source tmp_fs;
1295    Font_Entry *fe;
1296
1297    tmp_fs.key = eina_stringshare_add_length(name, namelen);
1298    tmp_fe.src = &tmp_fs;
1299    tmp_fe.size = size;
1300    tmp_fe.rend_flags = rend_flags;
1301    tmp_fe.dpi = dpi;
1302
1303    fe = eina_hash_find(font_entries, &tmp_fe);
1304    eina_stringshare_del(tmp_fs.key);
1305
1306    return fe;
1307 }
1308
1309 static void *
1310 _font_load_request_build(void *data, int *size)
1311 {
1312    Font_Entry *fe = data;
1313    Slave_Msg_Font_Load *msg = calloc(1, sizeof(*msg));
1314
1315    msg->ftdata1 = fe->src->ft;
1316    msg->ftdata2 = fe->ft;
1317    msg->rend_flags = fe->rend_flags;
1318    msg->size = fe->size;
1319    msg->dpi = fe->dpi;
1320    msg->name = fe->src->name;
1321    msg->file = fe->src->file;
1322
1323    *size = 0;
1324
1325    _entry_load_start(&fe->base);
1326
1327    return msg;
1328 }
1329
1330 static void
1331 _font_load_request_free(void *msg, void *data __UNUSED__)
1332 {
1333    free(msg);
1334 }
1335
1336 static void
1337 _font_load_request_response(Client *client __UNUSED__, void *data, void *resp, unsigned int rid __UNUSED__)
1338 {
1339    Slave_Msg_Font_Loaded *msg = resp;
1340    Font_Entry *fe = data;
1341
1342    DBG("request %d answered.", rid);
1343
1344    if (!fe->src->ft)
1345      fe->src->ft = msg->ftdata1;
1346
1347    if (!fe->ft)
1348      {
1349         fe->ft = msg->ftdata2;
1350         _entry_load_finish(&fe->base);
1351      }
1352
1353    if (fe->request) fe->request = NULL;
1354
1355    _font_loaded_send(client, rid);
1356 }
1357
1358 static void
1359 _font_load_request_failed(Client *client __UNUSED__, void *data __UNUSED__, Error_Type error __UNUSED__, unsigned int rid __UNUSED__)
1360 {
1361    Font_Entry *fe = data;
1362    DBG("request %d error answered.", rid);
1363
1364    cserve2_client_error_send(client, rid, error);
1365
1366    if (fe->request) fe->request = NULL;
1367
1368    _font_entry_reference_del(client, fe);
1369 }
1370
1371 static Font_Request_Funcs _font_load_funcs = {
1372    .msg_create = (Font_Request_Msg_Create)_font_load_request_build,
1373    .msg_free = (Font_Request_Msg_Free)_font_load_request_free,
1374    .response = (Font_Request_Response)_font_load_request_response,
1375    .error = (Font_Request_Error)_font_load_request_failed
1376 };
1377
1378 static Eina_Bool
1379 _glyphs_request_check(Glyphs_Request *req)
1380 {
1381    unsigned int i;
1382    Font_Entry *fe = req->fe;
1383
1384    req->answer = malloc(sizeof(*req->answer) * req->nglyphs);
1385    req->nanswer = 0;
1386
1387    for (i = req->current; i < req->nglyphs; i++)
1388      {
1389         Glyph_Entry *ge;
1390         ge = fash_gl_find(fe->glyphs, req->glyphs[i]);
1391         if (ge)
1392           {
1393              req->answer[req->nanswer++] = ge;
1394 #ifdef DEBUG_LOAD_TIME
1395              // calculate average time saved when loading glyphs
1396              fe->gl_saved_time +=
1397                 (fe->gl_load_time / fe->nglyphs);
1398 #endif
1399              ge->fc->inuse++;
1400           }
1401         else
1402           break;
1403      }
1404
1405    req->current = i;
1406
1407    // No glyphs need to be rendered.
1408    return (req->nanswer == req->nglyphs);
1409 }
1410
1411 /* organize answer (cache1{gl1, gl2,}, cache2{gl3,gl4,gl5}, cache3{gl6})
1412  */
1413 static Eina_List *
1414 _glyphs_group_create(Glyphs_Request *req)
1415 {
1416    Eina_List *groups = NULL;
1417    unsigned int i;
1418
1419    for (i = 0; i < req->nanswer; i++)
1420      {
1421         Eina_List *l;
1422         Glyphs_Group *iter, *gg = NULL;
1423         Font_Cache *fc = req->answer[i]->fc;
1424
1425         EINA_LIST_FOREACH(groups, l, iter)
1426           {
1427              if (iter->fc == fc)
1428                {
1429                   gg = iter;
1430                   break;
1431                }
1432           }
1433
1434         if (!gg)
1435           {
1436              gg = calloc(1, sizeof(*gg));
1437              gg->fc = fc;
1438              groups = eina_list_append(groups, gg);
1439           }
1440         gg->glyphs = eina_list_append(gg->glyphs, req->answer[i]);
1441      }
1442
1443    return groups;
1444 }
1445
1446 static void
1447 _glyphs_loaded_send(Glyphs_Request *req, unsigned int rid)
1448 {
1449    Msg_Font_Glyphs_Loaded msg;
1450    unsigned int size;
1451    Eina_List *ll, *answers = NULL;
1452    const char *shmname;
1453    unsigned int shmsize;
1454    unsigned int intsize;
1455    char *resp, *buf;
1456    Glyphs_Group *iter;
1457
1458    memset(&msg, 0, sizeof(msg));
1459    msg.base.rid = rid;
1460    msg.base.type = CSERVE2_FONT_GLYPHS_LOADED;
1461
1462    answers = _glyphs_group_create(req);
1463    msg.ncaches = eina_list_count(answers);
1464    size = sizeof(msg);
1465
1466    // calculate size of message
1467    // ncaches * sizeof(cache) + nglyphs1 * sizeof(glyph) +
1468    //   nglyphs2 * sizeof(glyph)...
1469
1470    intsize = sizeof(unsigned int);
1471
1472    EINA_LIST_FOREACH(answers, ll, iter)
1473      {
1474         shmname = cserve2_shm_name_get(iter->fc->shm);
1475         shmsize = eina_stringshare_strlen(shmname) + 1;
1476         // shm namelen + name
1477         size += intsize + shmsize;
1478
1479         // nglyphs
1480         size += intsize;
1481         // nglyphs * (index + offset + size + rows + width + pitch +
1482         //            num_grays + pixel_mode)
1483         size += eina_list_count(iter->glyphs) * 8 * intsize;
1484      }
1485
1486    resp = malloc(size);
1487    memcpy(resp, &msg, sizeof(msg));
1488    buf = resp + sizeof(msg);
1489
1490    EINA_LIST_FREE(answers, iter)
1491      {
1492         Glyph_Entry *gl;
1493         unsigned int nglyphs;
1494
1495         shmname = cserve2_shm_name_get(iter->fc->shm);
1496         shmsize = eina_stringshare_strlen(shmname) + 1;
1497         memcpy(buf, &shmsize, intsize);
1498         buf += intsize;
1499         memcpy(buf, shmname, shmsize);
1500         buf += shmsize;
1501
1502         nglyphs = eina_list_count(iter->glyphs);
1503         memcpy(buf, &nglyphs, intsize);
1504         buf += intsize;
1505
1506         iter->fc->inuse -= eina_list_count(iter->glyphs);
1507
1508         EINA_LIST_FREE(iter->glyphs, gl)
1509           {
1510              memcpy(buf, &gl->index, intsize);
1511              buf += intsize;
1512              memcpy(buf, &gl->offset, intsize);
1513              buf += intsize;
1514              memcpy(buf, &gl->size, intsize);
1515              buf += intsize;
1516              memcpy(buf, &gl->rows, intsize);
1517              buf += intsize;
1518              memcpy(buf, &gl->width, intsize);
1519              buf += intsize;
1520              memcpy(buf, &gl->pitch, intsize);
1521              buf += intsize;
1522              memcpy(buf, &gl->num_grays, intsize);
1523              buf += intsize;
1524              memcpy(buf, &gl->pixel_mode, intsize);
1525              buf += intsize;
1526           }
1527
1528         /* We are removing SHMs from the beginning of the list, so this
1529          * gives a higher priority to them */
1530         _font_shm_promote(iter->fc);
1531         eina_list_free(iter->glyphs);
1532         free(iter);
1533      }
1534
1535    cserve2_client_send(req->client, &size, sizeof(size));
1536    cserve2_client_send(req->client, resp, size);
1537
1538    free(resp);
1539 }
1540
1541 /*
1542  * taken from evas_path.c. It would be good to clean up those utils to
1543  * have cserve link against them easily without dragging unneeded dependencies
1544  */
1545 #ifdef _WIN32
1546 # define EVAS_PATH_SEPARATOR "\\"
1547 #else
1548 # define EVAS_PATH_SEPARATOR "/"
1549 #endif
1550
1551 static char *
1552 _file_path_join(const char *path, const char *end)
1553 {
1554    char *res = NULL;
1555    size_t len;
1556
1557    if ((!path) && (!end)) return NULL;
1558    if (!path) return strdup(end);
1559    if (!end) return strdup(path);
1560    len = strlen(path);
1561    len += strlen(end);
1562    len += strlen(EVAS_PATH_SEPARATOR);
1563    res = malloc(len + 1);
1564    if (!res) return NULL;
1565    strcpy(res, path);
1566    strcat(res, EVAS_PATH_SEPARATOR);
1567    strcat(res, end);
1568    return res;
1569 }
1570
1571 static Glyphs_Request *
1572 _glyphs_request_create(Client *client, const char *source, unsigned int sourcelen, const char *name, unsigned int namelen, unsigned int hint, unsigned int rend_flags, unsigned int size, unsigned int dpi, unsigned int *glyphs, unsigned int nglyphs)
1573 {
1574    char *fullname;
1575    Glyphs_Request *req = calloc(1, sizeof(*req));
1576
1577    if (sourcelen == 0)
1578      source = NULL;
1579    if (namelen == 0)
1580      name = NULL;
1581
1582    fullname = _file_path_join(source, name);
1583    req->fe = _cserve2_font_entry_find(fullname, strlen(fullname) + 1, size,
1584                                       rend_flags, dpi);
1585    free(fullname);
1586    if (!req->fe)
1587      {
1588         ERR("No font entry found: source %s, name %s, rendflags: %d, hint: %d,"
1589             " size: %d, dpi: %d", source, name, rend_flags, hint, size, dpi);
1590         free(req);
1591         return NULL;
1592      }
1593
1594    req->client = client;
1595
1596    req->nglyphs = nglyphs;
1597    req->current = 0;
1598    req->glyphs = glyphs;
1599    req->hint = hint;
1600
1601    return req;
1602 }
1603
1604 static void
1605 _glyphs_request_free(Glyphs_Request *req)
1606 {
1607    free(req->glyphs);
1608    free(req->render);
1609    free(req->answer);
1610    free(req);
1611 }
1612
1613 /* add glyphs that are already in cache to the "answers" array, and the ones
1614  * that are not cached to the "render" array.
1615  */
1616 static void
1617 _glyphs_load_request_prepare(Glyphs_Request *req)
1618 {
1619    unsigned int i, max;
1620    req->nrender = 0;
1621    Font_Entry *fe = req->fe;
1622
1623    if (!fe)
1624      {
1625         ERR("No font entry for this request.");
1626         return;
1627      }
1628
1629    // Won't render more than this number of glyphs
1630    max = req->nglyphs - req->nanswer;
1631    req->render = malloc(sizeof(*req->render) * max);
1632
1633    for (i = req->current; i < req->nglyphs; i++)
1634      {
1635         Glyph_Entry *ge;
1636         ge = fash_gl_find(fe->glyphs, req->glyphs[i]);
1637         if (ge)
1638           {
1639              req->answer[req->nanswer++] = ge;
1640
1641 #ifdef DEBUG_LOAD_TIME
1642              // calculate average time saved when loading glyphs
1643              fe->gl_saved_time +=
1644                 (fe->gl_load_time / fe->nglyphs);
1645 #endif
1646              ge->fc->inuse++;
1647           }
1648         else
1649           req->render[req->nrender++] = req->glyphs[i];
1650      }
1651 }
1652
1653 static void *
1654 _glyphs_load_request_build(void *data, int *size __UNUSED__)
1655 {
1656    Glyphs_Request *req = data;
1657    Slave_Msg_Font_Glyphs_Load *msg = NULL;
1658    Font_Entry *fe = req->fe;
1659    Font_Cache *fc;
1660
1661    _glyphs_load_request_prepare(req);
1662
1663    msg = calloc(1, sizeof(*msg));
1664
1665    msg->font.ftdata1 = fe->src->ft;
1666    msg->font.ftdata2 = fe->ft;
1667    msg->font.hint = req->hint;
1668    msg->font.rend_flags = fe->rend_flags;
1669    msg->glyphs.nglyphs = req->nrender;
1670    msg->glyphs.glyphs = req->render;
1671
1672    // Trying to reuse last filled cache.
1673    fc = fe->last_cache;
1674    if (fc)
1675      {
1676         msg->cache.shm = fc->shm;
1677         msg->cache.usage = fc->usage;
1678         msg->cache.nglyphs = fc->nglyphs;
1679      }
1680
1681 #ifdef DEBUG_LOAD_TIME
1682    gettimeofday(&fe->load_start, NULL);
1683 #endif
1684
1685    return msg;
1686 }
1687
1688 static void
1689 _glyphs_load_request_free(void *msg, void *data)
1690 {
1691    _glyphs_request_free(data);
1692    free(msg);
1693 }
1694
1695 static void
1696 _glyphs_load_request_response(Client *client __UNUSED__, void *data, void *resp, unsigned int rid)
1697 {
1698    Glyphs_Request *req = data;
1699    Slave_Msg_Font_Glyphs_Loaded *msg = resp;
1700    Font_Entry *fe = req->fe;
1701    Font_Cache *fc = NULL;
1702    unsigned int i = 0;
1703
1704    if (fe->last_cache && fe->last_cache->shm == msg->caches[0]->shm)
1705      fc = fe->last_cache;
1706
1707    while (i < msg->ncaches)
1708      {
1709         unsigned int j;
1710         Slave_Msg_Font_Cache *c = msg->caches[i++];
1711
1712         if (!fc)
1713           {
1714              fc = malloc(sizeof(*fc));
1715              fe->caches = eina_inlist_append(fe->caches, EINA_INLIST_GET(fc));
1716              fe->last_cache = fc;
1717              fc->fe = fe;
1718              fc->shm = c->shm;
1719              fc->glyphs = NULL;
1720              fc->nglyphs = 0;
1721              fc->inuse = 0;
1722              font_shm_lru = eina_list_append(font_shm_lru, fc);
1723              font_mem_usage += _font_shm_size_get(fc);
1724           }
1725         fc->usage = c->usage;
1726         for (j = 0; j < c->nglyphs; j++)
1727           {
1728              Glyph_Entry *gl = malloc(sizeof(*gl));
1729              gl->fe = fe;
1730              gl->fc = fc;
1731              gl->index = c->glyphs[j].index;
1732              gl->offset = c->glyphs[j].offset;
1733              gl->size = c->glyphs[j].size;
1734              gl->rows = c->glyphs[j].rows;
1735              gl->width = c->glyphs[j].width;
1736              gl->pitch = c->glyphs[j].pitch;
1737              gl->num_grays = c->glyphs[j].num_grays;
1738              gl->pixel_mode = c->glyphs[j].pixel_mode;
1739              font_mem_usage += sizeof(*gl);
1740              fc->glyphs = eina_inlist_append(fc->glyphs, EINA_INLIST_GET(gl));
1741              fc->nglyphs++;
1742              fe->nglyphs++;
1743              fash_gl_add(fe->glyphs, gl->index, gl);
1744              req->answer[req->nanswer++] = gl;
1745              gl->fc->inuse++;
1746           }
1747
1748         free(c); // FIXME: We are freeing this here because we only do a
1749                  // simple free on the response message. Later we need to
1750                  // setup a free callback for the slave response.
1751         fc = NULL;
1752      }
1753
1754 #ifdef DEBUG_LOAD_TIME
1755    int load_time;
1756    gettimeofday(&fe->load_finish, NULL);
1757    load_time = _timeval_sub(&fe->load_finish, &fe->load_start);
1758    fe->gl_load_time += load_time;
1759 #endif
1760
1761    _glyphs_loaded_send(req, rid);
1762    _font_shm_lru_flush();
1763 }
1764
1765 static void
1766 _glyphs_load_request_failed(Client *client __UNUSED__, void *data __UNUSED__, Error_Type error __UNUSED__, unsigned int rid __UNUSED__)
1767 {
1768 }
1769
1770 static Font_Request_Funcs _glyphs_load_funcs = {
1771    .msg_create = (Font_Request_Msg_Create)_glyphs_load_request_build,
1772    .msg_free = (Font_Request_Msg_Free)_glyphs_load_request_free,
1773    .response = (Font_Request_Response)_glyphs_load_request_response,
1774    .error = (Font_Request_Error)_glyphs_load_request_failed
1775 };
1776
1777 static Eina_Bool
1778 _font_entry_stats_cb(const Eina_Hash *hash __UNUSED__, const void *key __UNUSED__, void *data, void *fdata)
1779 {
1780    Font_Entry *fe = data;
1781    Msg_Stats *msg = fdata;
1782    Font_Cache *fc;
1783    int nrefs = eina_list_count(fe->base.references);
1784
1785    msg->fonts.fonts_loaded++;
1786    if (fe->unused) msg->fonts.fonts_unused++;
1787
1788    // accounting size
1789    EINA_INLIST_FOREACH(fe->caches, fc)
1790      {
1791         unsigned int fc_usage, shmsize;
1792         /* This is not real requested usage, but an approximation. We don't
1793          * know how many times each glyph would be used by each client, but
1794          * assume that a similar set of glyphs from a given font would be used
1795          * by each client, thus counting them one time per client referencing
1796          * them.
1797          */
1798         fc_usage = fc->usage * nrefs;
1799         shmsize = cserve2_shm_size_get(fc->shm);
1800
1801         msg->fonts.requested_size += fc_usage;
1802         msg->fonts.real_size += shmsize;
1803         if (fe->unused) msg->fonts.unused_size += shmsize;
1804      }
1805
1806 #ifdef DEBUG_LOAD_TIME
1807    // accounting fonts load time
1808    msg->fonts.fonts_load_time += fe->base.load_time;
1809    if (fe->caches)
1810      {
1811         msg->fonts.fonts_used_load_time += fe->base.load_time;
1812         msg->fonts.fonts_used_saved_time += fe->base.saved_time;
1813      }
1814
1815    // accounting glyphs load time
1816    msg->fonts.glyphs_load_time += fe->gl_load_time;
1817    msg->fonts.glyphs_saved_time += fe->gl_saved_time;
1818 #endif
1819
1820    return EINA_TRUE;
1821 }
1822
1823 static Eina_Bool
1824 _image_file_entry_stats_cb(const Eina_Hash *hash __UNUSED__, const void *key __UNUSED__, void *data, void *fdata)
1825 {
1826    Msg_Stats *msg = fdata;
1827    File_Data *fd = data;
1828
1829    // accounting numbers
1830    msg->images.files_loaded++;
1831
1832    // accounting size
1833    msg->images.files_size += sizeof(File_Data) +
1834       eina_list_count(fd->images) * sizeof(Eina_List *) +
1835       eina_list_count(fd->base.references) *
1836          (sizeof(Request) + sizeof(Eina_List *));
1837
1838 #ifdef DEBUG_LOAD_TIME
1839    // accounting file entries load time
1840    msg->images.files_load_time += fd->base.load_time;
1841    msg->images.files_saved_time += fd->base.saved_time;
1842 #endif
1843
1844    return EINA_TRUE;
1845 }
1846
1847 static Eina_Bool
1848 _image_data_entry_stats_cb(const Eina_Hash *hash __UNUSED__, const void *key __UNUSED__, void *data, void *fdata)
1849 {
1850    Msg_Stats *msg = fdata;
1851    Image_Data *id = data;
1852    unsigned int image_size;
1853
1854    // accounting numbers
1855    msg->images.images_loaded++;
1856    if (id->unused) msg->images.images_unused++;
1857
1858    // accounting size
1859    msg->images.images_size += _image_entry_size_get(id) * 1024;
1860    if (id->unused) msg->images.unused_size += _image_entry_size_get(id) * 1024;
1861
1862    image_size = id->file->w * id->file->h * 4;
1863    msg->images.requested_size +=
1864       (image_size * eina_list_count(id->base.references));
1865
1866 #ifdef DEBUG_LOAD_TIME
1867    // accounting image entries load time
1868    msg->images.images_load_time += id->base.load_time;
1869    msg->images.images_saved_time += id->base.saved_time;
1870 #endif
1871
1872    return EINA_TRUE;
1873 }
1874
1875 static void
1876 _cserve2_cache_image_stats_get(Msg_Stats *msg)
1877 {
1878    eina_hash_foreach(file_entries, _image_file_entry_stats_cb, msg);
1879    eina_hash_foreach(image_entries, _image_data_entry_stats_cb, msg);
1880 }
1881
1882 static void
1883 _cserve2_cache_font_stats_get(Msg_Stats *msg)
1884 {
1885    eina_hash_foreach(font_entries, _font_entry_stats_cb, msg);
1886 }
1887
1888 struct _debug_info
1889 {
1890    unsigned int size;
1891    unsigned int nfonts;
1892 };
1893
1894 static Eina_Bool
1895 _font_entry_debug_size_cb(const Eina_Hash *hash __UNUSED__, const void *key __UNUSED__, void *data, void *fdata)
1896 {
1897    struct _debug_info *di = fdata;
1898    unsigned int size = di->size;
1899    Font_Entry *fe = data;
1900    Font_Cache *fc;
1901    unsigned int intsize = sizeof(unsigned int);
1902
1903    // filelen
1904    size += intsize;
1905
1906    // file
1907    if (fe->src->file)
1908      size += strlen(fe->src->file) + 1;
1909
1910    // namelen
1911    size += intsize;
1912
1913    // name
1914    if (fe->src->name)
1915      size += strlen(fe->src->name) + 1;
1916
1917    // rend_flags, size, dpi
1918    size += 3 * intsize;
1919
1920    // unused
1921    size += intsize;
1922
1923    // ncaches
1924    size += intsize;
1925
1926    EINA_INLIST_FOREACH(fe->caches, fc)
1927      {
1928         Glyph_Entry *gl;
1929
1930         // shmnamelen + shmname
1931         size += intsize;
1932         size += strlen(cserve2_shm_name_get(fc->shm)) + 1;
1933
1934         // size + usage
1935         size += 2 * intsize;
1936
1937         // nglyphs
1938         size += intsize;
1939
1940         EINA_INLIST_FOREACH(fc->glyphs, gl)
1941           {
1942              // index, offset, size
1943              size += 3 * intsize;
1944
1945              // rows, width, pitch
1946              size += 3 * intsize;
1947
1948              // num_grays, pixel_mode
1949              size += 2 * intsize;
1950           }
1951      }
1952
1953    di->size = size;
1954    di->nfonts++;
1955
1956    return EINA_TRUE;
1957 }
1958
1959 static Eina_Bool
1960 _font_entry_debug_cb(const Eina_Hash *hash __UNUSED__, const void *key __UNUSED__, void *data, void *fdata)
1961 {
1962    char **pos = fdata;
1963    char *buf = *pos;
1964    Font_Entry *fe = data;
1965    Font_Cache *fc;
1966    unsigned int len;
1967    unsigned int unused;
1968    unsigned int ncaches;
1969    unsigned int intsize = sizeof(unsigned int);
1970
1971    // filelen + file
1972    len = 0;
1973    if (fe->src->file)
1974      len = strlen(fe->src->file) + 1;
1975    memcpy(buf, &len, intsize);
1976    buf += intsize;
1977    memcpy(buf, fe->src->file, len);
1978    buf += len;
1979
1980    // namelen + name
1981    len = 0;
1982    if (fe->src->name)
1983      len = strlen(fe->src->name) + 1;
1984    memcpy(buf, &len, intsize);
1985    buf += intsize;
1986    memcpy(buf, fe->src->name, len);
1987    buf += len;
1988
1989    // rend_flags, size, dpi
1990    memcpy(buf, &fe->rend_flags, intsize);
1991    buf += intsize;
1992    memcpy(buf, &fe->size, intsize);
1993    buf += intsize;
1994    memcpy(buf, &fe->dpi, intsize);
1995    buf += intsize;
1996
1997    // unused
1998    unused = fe->unused;
1999    memcpy(buf, &unused, intsize);
2000    buf += intsize;
2001
2002    // ncaches
2003    ncaches = eina_inlist_count(fe->caches);
2004    memcpy(buf, &ncaches, intsize);
2005    buf += intsize;
2006
2007    EINA_INLIST_FOREACH(fe->caches, fc)
2008      {
2009         Glyph_Entry *gl;
2010         const char *shmname;
2011         unsigned int shmsize;
2012
2013         // shmnamelen + shmname
2014         shmname = cserve2_shm_name_get(fc->shm);
2015         len = strlen(shmname) + 1;
2016         memcpy(buf, &len, intsize);
2017         buf += intsize;
2018         memcpy(buf, shmname, len);
2019         buf += len;
2020
2021         // size, usage, nglyphs
2022         shmsize = cserve2_shm_size_get(fc->shm);
2023         memcpy(buf, &shmsize, intsize);
2024         buf += intsize;
2025         memcpy(buf, &fc->usage, intsize);
2026         buf += intsize;
2027         memcpy(buf, &fc->nglyphs, intsize);
2028         buf += intsize;
2029
2030         EINA_INLIST_FOREACH(fc->glyphs, gl)
2031           {
2032              // index, offset, size
2033              memcpy(buf, &gl->index, intsize);
2034              buf += intsize;
2035              memcpy(buf, &gl->offset, intsize);
2036              buf += intsize;
2037              memcpy(buf, &gl->size, intsize);
2038              buf += intsize;
2039
2040              // rows, width, pitch
2041              memcpy(buf, &gl->rows, intsize);
2042              buf += intsize;
2043              memcpy(buf, &gl->width, intsize);
2044              buf += intsize;
2045              memcpy(buf, &gl->pitch, intsize);
2046              buf += intsize;
2047
2048              // num_grays, pixel_mode
2049              memcpy(buf, &gl->num_grays, intsize);
2050              buf += intsize;
2051              memcpy(buf, &gl->pixel_mode, intsize);
2052              buf += intsize;
2053           }
2054      }
2055
2056    *pos = buf;
2057    return EINA_TRUE;
2058 }
2059
2060 static void *
2061 _cserve2_cache_font_debug(unsigned int rid, unsigned int *size)
2062 {
2063    Msg_Font_Debug msg;
2064    char *buf, *pos;
2065    struct _debug_info di;
2066    di.size = sizeof(msg);
2067    di.nfonts = 0;
2068
2069    memset(&msg, 0, sizeof(msg));
2070
2071    msg.base.type = CSERVE2_FONT_DEBUG;
2072    msg.base.rid = rid;
2073
2074    // First calculate how much size is needed for this message:
2075
2076    // nfonts
2077    di.size += sizeof(unsigned int);
2078
2079    // size needed for each font entry
2080    eina_hash_foreach(font_entries, _font_entry_debug_size_cb, &di);
2081
2082    // Now really create the message
2083    buf = malloc(di.size);
2084    pos = buf;
2085
2086    // msg base
2087    memcpy(buf, &msg, sizeof(msg));
2088    pos += sizeof(msg);
2089
2090    // nfonts
2091    memcpy(pos, &di.nfonts, sizeof(unsigned int));
2092    pos += sizeof(unsigned int);
2093
2094    eina_hash_foreach(font_entries, _font_entry_debug_cb, &pos);
2095
2096    *size = di.size;
2097    return buf;
2098 }
2099
2100 int
2101 cserve2_cache_file_open(Client *client, unsigned int client_file_id, const char *path, const char *key, unsigned int rid)
2102 {
2103    unsigned int file_id;
2104    File_Data *entry;
2105    Reference *ref;
2106    File_Watch *fw;
2107    char buf[4906];
2108
2109    // look for this file on client references
2110    ref = eina_hash_find(client->files.referencing, &client_file_id);
2111    if (ref)
2112      {
2113         entry = (File_Data *)ref->entry;
2114         _entry_load_reused(ref->entry);
2115
2116         if (entry->invalid)
2117           {
2118              cserve2_client_error_send(client, rid, CSERVE2_FILE_CHANGED);
2119              return -1;
2120           }
2121
2122         DBG("found client file id: %d", client_file_id);
2123         ref->count++;
2124
2125         // File already being loaded, just add the request to be replied
2126         if (entry->base.request)
2127           _request_answer_add(entry->base.request, ref, rid, CSERVE2_OPEN);
2128         else
2129           _image_opened_send(client, entry, rid);
2130         return 0;
2131      }
2132
2133    // search whether the file is already opened by another client
2134    snprintf(buf, sizeof(buf), "%s:%s", path, key);
2135    file_id = (unsigned int)eina_hash_find(file_ids, buf);
2136    if (file_id)
2137      {
2138         DBG("found file_id %u for client file id %d",
2139                 file_id, client_file_id);
2140         entry = eina_hash_find(file_entries, &file_id);
2141         if (!entry)
2142           {
2143              ERR("file \"%s\" is in file_ids hash but not in entries hash.",
2144                  buf);
2145              cserve2_client_error_send(client, rid, CSERVE2_INVALID_CACHE);
2146              return -1;
2147           }
2148         ref = _entry_reference_add((Entry *)entry, client, client_file_id);
2149         _entry_load_reused(ref->entry);
2150         eina_hash_add(client->files.referencing, &client_file_id, ref);
2151         if (entry->base.request)
2152           _request_answer_add(entry->base.request, ref, rid, CSERVE2_OPEN);
2153         else // File already loaded, otherwise there would be a request
2154           _image_opened_send(client, entry, rid);
2155         return 0;
2156      }
2157
2158    file_id = _file_id++;
2159    while ((file_id == 0) || (eina_hash_find(file_entries, &file_id)))
2160      file_id = _file_id++;
2161
2162    DBG("Creating new entry with file_id: %u for file \"%s:%s\"",
2163        file_id, path, key);
2164    entry = calloc(1, sizeof(*entry));
2165    entry->base.type = CSERVE2_IMAGE_FILE;
2166    entry->path = strdup(path);
2167    entry->key = strdup(key);
2168    entry->base.id = file_id;
2169    eina_hash_add(file_entries, &file_id, entry);
2170    eina_hash_add(file_ids, buf, (void *)file_id);
2171    ref = _entry_reference_add((Entry *)entry, client, client_file_id);
2172    eina_hash_add(client->files.referencing, &client_file_id, ref);
2173
2174    fw = eina_hash_find(file_watch, entry->path);
2175    if (!fw)
2176      {
2177         fw = calloc(1, sizeof(File_Watch));
2178         fw->path = eina_stringshare_add(entry->path);
2179         cserve2_file_change_watch_add(fw->path, _file_changed_cb, fw);
2180         eina_hash_direct_add(file_watch, fw->path, fw);
2181      }
2182    fw->entries = eina_list_append(fw->entries, entry);
2183    entry->watcher = fw;
2184
2185    _request_add(&open_requests, (Entry *)entry, ref, rid, CSERVE2_OPEN);
2186
2187    // _open_image_default_set(entry);
2188
2189    return 0;
2190 }
2191
2192 void
2193 cserve2_cache_file_close(Client *client, unsigned int client_file_id)
2194 {
2195    Reference *ref = eina_hash_find(client->files.referencing,
2196                                         &client_file_id);
2197    if (!ref)
2198      {
2199         ERR("Couldn't find file %d in client hash.", client_file_id);
2200         return;
2201      }
2202
2203    ref->count--;
2204    if (ref->count <= 0)
2205      // will call _entry_free_cb() for this entry
2206      eina_hash_del_by_key(client->files.referencing, &client_file_id);
2207 }
2208
2209 int
2210 cserve2_cache_image_opts_set(Client *client, Msg_Setopts *msg)
2211 {
2212    Image_Data *entry;
2213    File_Data *fentry = NULL;
2214    Reference *ref, *oldref;
2215    unsigned int image_id;
2216    char buf[4096];
2217
2218    oldref = eina_hash_find(client->images.referencing, &msg->image_id);
2219
2220    // search whether the image is already loaded by another client
2221    entry = _image_msg_new(client, msg);
2222    if (!entry)
2223      return -1;
2224    image_id = _img_opts_id_get(entry, buf, sizeof(buf));
2225    if (image_id)
2226      {  // if so, just update the references
2227         free(entry);
2228         DBG("found image_id %d for client image id %d",
2229             image_id, msg->image_id);
2230         entry = eina_hash_find(image_entries, &image_id);
2231         if (!entry)
2232           {
2233              ERR("image id %d is in file_ids hash, but not in entries hash"
2234                  "with entry id %d.", msg->image_id, image_id);
2235              cserve2_client_error_send(client, msg->base.rid,
2236                                        CSERVE2_INVALID_CACHE);
2237              return -1;
2238           }
2239
2240         if (entry->unused)
2241           {
2242              DBG("Re-using old image entry (id: %d) from the LRU list.",
2243                  entry->base.id);
2244              entry->unused = EINA_FALSE;
2245              image_entries_lru = eina_list_remove(image_entries_lru, entry);
2246              unused_mem_usage -= _image_entry_size_get(entry);
2247           }
2248         _entry_load_reused(&entry->base);
2249
2250         if (oldref && (oldref->entry->id == image_id))
2251           return 0;
2252
2253         ref = _entry_reference_add((Entry *)entry, client, msg->image_id);
2254
2255         if (oldref)
2256           eina_hash_del_by_key(client->images.referencing, &msg->image_id);
2257
2258         eina_hash_add(client->images.referencing, &msg->image_id, ref);
2259
2260         return 0;
2261      }
2262
2263    image_id = _image_id++;
2264    while ((image_id == 0) || (eina_hash_find(image_entries, &image_id)))
2265      image_id = _image_id++;
2266
2267    entry->base.id = image_id;
2268    eina_hash_add(image_entries, &image_id, entry);
2269    eina_hash_add(image_ids, buf, (void *)image_id);
2270    ref = _entry_reference_add((Entry *)entry, client, msg->image_id);
2271
2272    if (oldref)
2273      eina_hash_del_by_key(client->images.referencing, &msg->image_id);
2274    eina_hash_add(client->images.referencing, &msg->image_id, ref);
2275
2276    fentry = entry->file;
2277    fentry->images = eina_list_append(fentry->images, entry);
2278
2279    _request_add(&spload_requests, (Entry *)entry, ref, msg->base.rid,
2280                 CSERVE2_SETOPTS);
2281    return 0;
2282 }
2283
2284 void
2285 cserve2_cache_image_load(Client *client, unsigned int client_image_id, unsigned int rid)
2286 {
2287    Image_Data *entry;
2288    Reference *ref;
2289
2290    ref = eina_hash_find(client->images.referencing, &client_image_id);
2291    if (!ref)
2292      {
2293         ERR("Can't load: client %d has no image id %d",
2294             client->id, client_image_id);
2295         return;
2296      }
2297
2298    entry = (Image_Data *)ref->entry;
2299
2300    if (entry->file->invalid)
2301      {
2302         cserve2_client_error_send(client, rid, CSERVE2_FILE_CHANGED);
2303         return;
2304      }
2305
2306    DBG("Loading image id: %d", ref->entry->id);
2307
2308    // File already being loaded, just add the request to be replied
2309    if (entry->base.request)
2310      {
2311         _request_answer_add(entry->base.request, ref, rid, CSERVE2_LOAD);
2312         if ((!entry->base.request->processing) && (!entry->doload))
2313           {
2314              DBG("Removing entry %d from speculative preload and adding "
2315                  "to normal load queue.", entry->base.id);
2316              spload_requests = eina_list_remove(spload_requests,
2317                                                 entry->base.request);
2318              load_requests = eina_list_append(load_requests,
2319                                               entry->base.request);
2320           }
2321      }
2322    else if (entry->shm)
2323      _image_loaded_send(client, entry, rid);
2324    else
2325      _request_add(&load_requests, (Entry *)entry, ref, rid, CSERVE2_LOAD);
2326
2327    entry->doload = EINA_TRUE;
2328 }
2329
2330 void
2331 cserve2_cache_image_preload(Client *client, unsigned int client_image_id, unsigned int rid)
2332 {
2333    Image_Data *entry;
2334    Reference *ref;
2335
2336    ref = eina_hash_find(client->images.referencing, &client_image_id);
2337    if (!ref)
2338      {
2339         ERR("Can't load: client %d has no image id %d",
2340             client->id, client_image_id);
2341         return;
2342      }
2343
2344    entry = (Image_Data *)ref->entry;
2345
2346    if (entry->file->invalid)
2347      {
2348         cserve2_client_error_send(client, rid, CSERVE2_FILE_CHANGED);
2349         return;
2350      }
2351
2352    DBG("Loading image id: %d", ref->entry->id);
2353
2354    // File already being loaded, just add the request to be replied
2355    if (entry->base.request)
2356      {
2357         _request_answer_add(entry->base.request, ref, rid, CSERVE2_PRELOAD);
2358         if ((!entry->base.request->processing) && (!entry->doload))
2359           {
2360              DBG("Removing entry %d from speculative preload and adding "
2361                  "to normal (pre)load queue.", entry->base.id);
2362              spload_requests = eina_list_remove(spload_requests,
2363                                                 entry->base.request);
2364              load_requests = eina_list_append(load_requests,
2365                                               entry->base.request);
2366           }
2367      }
2368    else if (entry->shm)
2369      _image_preloaded_send(client, rid);
2370    else
2371      _request_add(&load_requests, (Entry *)entry, ref, rid, CSERVE2_PRELOAD);
2372
2373    entry->doload = EINA_TRUE;
2374 }
2375
2376 void
2377 cserve2_cache_image_unload(Client *client, unsigned int client_image_id)
2378 {
2379    Reference *ref = eina_hash_find(client->images.referencing,
2380                                    &client_image_id);
2381    if (!ref)
2382      {
2383         ERR("Couldn't find file %d in client hash.", client_image_id);
2384         return;
2385      }
2386
2387    ref->count--;
2388    if (ref->count <= 0)
2389      // will call _entry_free_cb() for this entry
2390      eina_hash_del_by_key(client->images.referencing, &client_image_id);
2391 }
2392
2393 int
2394 cserve2_cache_font_load(Client *client, const char *source, unsigned int sourcelen, const char *name, unsigned int namelen, unsigned int rend_flags, unsigned int size, unsigned int dpi, unsigned int rid)
2395 {
2396    Reference *ref;
2397    Font_Source *fs;
2398    Font_Entry *fe;
2399    char *fullname;
2400
2401    if (sourcelen == 0)
2402      source = NULL;
2403    if (namelen == 0)
2404      name = NULL;
2405
2406    fullname = _file_path_join(source, name);
2407    fe = _cserve2_font_entry_find(fullname, strlen(fullname) + 1, size,
2408                                  rend_flags, dpi);
2409    if (fe)
2410      {
2411         DBG("found font entry %s, rendflags: %d, size: %d, dpi: %d",
2412             name, rend_flags, size, dpi);
2413
2414         ref = _entry_reference_add((Entry *)fe, client, 0);
2415         client->fonts.referencing = eina_list_append(
2416            client->fonts.referencing, ref);
2417
2418         _entry_load_reused(&fe->base);
2419         fe->unused = EINA_FALSE;
2420
2421         if (fe->request)
2422           cserve2_request_waiter_add(fe->request, rid, client);
2423         else
2424           _font_loaded_send(client, rid);
2425         free(fullname);
2426         return 0;
2427      }
2428
2429    fe = calloc(1, sizeof(*fe));
2430    fe->rend_flags = rend_flags;
2431    fe->size = size;
2432    fe->dpi = dpi;
2433    fe->base.type = CSERVE2_FONT_ENTRY;
2434    fe->glyphs = fash_gl_new(_glyph_free_cb);
2435    ref = _entry_reference_add((Entry *)fe, client, 0);
2436    client->fonts.referencing = eina_list_append(
2437       client->fonts.referencing, ref);
2438    fe->unused = EINA_FALSE;
2439
2440    fs = _cserve2_font_source_find(fullname);
2441    if (!fs)
2442      {
2443         fs = calloc(1, sizeof(*fs));
2444         if (source)
2445           {
2446              fs->key = eina_stringshare_add(fullname);
2447              fs->name = eina_stringshare_add_length(name, namelen);
2448              fs->file = eina_stringshare_add_length(source, sourcelen);
2449           }
2450         else
2451           {
2452              fs->file = eina_stringshare_add_length(name, namelen);
2453              fs->key = eina_stringshare_ref(fs->file);
2454           }
2455         eina_hash_direct_add(font_sources, fs->key, fs);
2456      }
2457
2458    fe->src = fs;
2459    fs->references++;
2460    DBG("adding FONT_LOAD '%s' request.", fs->name);
2461    fe->request = cserve2_request_add(CSERVE2_REQ_FONT_LOAD, rid,
2462                                      client, &_font_load_funcs, fe);
2463
2464    eina_hash_direct_add(font_entries, fe, fe);
2465
2466    free(fullname);
2467
2468    return 0;
2469 }
2470
2471 int
2472 cserve2_cache_font_unload(Client *client, const char *source, unsigned int sourcelen, const char *name, unsigned int namelen, unsigned int rend_flags, unsigned int size, unsigned int dpi, unsigned int rid __UNUSED__)
2473 {
2474    Font_Entry *fe;
2475    char *fullname;
2476
2477    if (sourcelen == 0)
2478      source = NULL;
2479    if (namelen == 0)
2480      name = NULL;
2481
2482    fullname = _file_path_join(source, name);
2483    fe = _cserve2_font_entry_find(fullname, strlen(fullname) + 1, size,
2484                                  rend_flags, dpi);
2485    free(fullname);
2486
2487    if (!fe)
2488      {
2489         ERR("Unreferencing font not found: '%s:%s'.", source, name);
2490         return -1;
2491      }
2492
2493    _font_entry_reference_del(client, fe);
2494
2495    return 0;
2496 }
2497
2498 int
2499 cserve2_cache_font_glyphs_load(Client *client, const char *source, unsigned int sourcelen, const char *name, unsigned int namelen, unsigned int hint, unsigned int rend_flags, unsigned int size, unsigned int dpi, unsigned int *glyphs, unsigned int nglyphs, unsigned int rid)
2500 {
2501    Glyphs_Request *req;
2502
2503    req = _glyphs_request_create(client, source, sourcelen, name, namelen,
2504                                 hint, rend_flags, size, dpi, glyphs, nglyphs);
2505    if (!req)
2506      {
2507         free(glyphs);
2508         return -1;
2509      }
2510
2511    if (_glyphs_request_check(req))
2512      {
2513         INF("Glyphs already loaded. Sending answer.");
2514         _glyphs_loaded_send(req, rid);
2515         _glyphs_request_free(req);
2516      }
2517    else
2518      {
2519         cserve2_request_add(CSERVE2_REQ_FONT_GLYPHS_LOAD, rid,
2520                             client, &_glyphs_load_funcs, req);
2521      }
2522    return 0;
2523 }
2524
2525 int
2526 cserve2_cache_font_glyphs_used(Client *client, const char *source, unsigned int sourcelen, const char *name, unsigned int namelen, unsigned int hint, unsigned int rend_flags, unsigned int size, unsigned int dpi, unsigned int *glyphs, unsigned int nglyphs, unsigned int rid __UNUSED__)
2527 {
2528    Glyphs_Group *gg;
2529    Eina_List *groups;
2530    Glyphs_Request *req;
2531
2532    DBG("Received report of used glyphs from client %d", client->id);
2533    req = _glyphs_request_create(client, source, sourcelen, name, namelen,
2534                                 hint, rend_flags, size, dpi, glyphs, nglyphs);
2535    if (!req)
2536      {
2537         free(glyphs);
2538         return 0;
2539      }
2540
2541    _glyphs_request_check(req);
2542    groups = _glyphs_group_create(req);
2543
2544    // Promote SHMs which are still cached and in use
2545    // TODO: We can use later the information from request_prepare to preload
2546    // glyphs which are not cached anymore, but are in use on the client.
2547    EINA_LIST_FREE(groups, gg)
2548      {
2549         _font_shm_promote(gg->fc);
2550         eina_list_free(gg->glyphs);
2551         free(gg);
2552      }
2553
2554    _glyphs_request_free(req);
2555    return 0;
2556 }
2557
2558 void
2559 cserve2_cache_requests_response(Slave_Command type, void *msg, void *data)
2560 {
2561    Request *req = data;
2562
2563    if (!req->entry)
2564      {
2565         Waiter *w;
2566         DBG("Request finished but it has no entry anymore.");
2567         EINA_LIST_FREE(req->waiters, w)
2568           {
2569              cserve2_client_error_send(w->ref->client, w->rid,
2570                                        CSERVE2_REQUEST_CANCEL);
2571
2572              w->ref->count--;
2573              free(w);
2574           }
2575      }
2576    else if (type == ERROR)
2577      {
2578         Error_Type *error = msg;
2579         req->funcs->error(req->entry, *error);
2580      }
2581    else
2582      req->funcs->response(req->entry, msg);
2583
2584    if (req->entry)
2585      req->entry->request = NULL;
2586    free(req);
2587 }
2588
2589 void
2590 cserve2_cache_stats_get(Client *client, unsigned int rid)
2591 {
2592    Msg_Stats msg;
2593    int size;
2594
2595    memset(&msg, 0, sizeof(msg));
2596
2597    msg.base.type = CSERVE2_STATS;
2598    msg.base.rid = rid;
2599
2600    _cserve2_cache_image_stats_get(&msg);
2601    _cserve2_cache_font_stats_get(&msg);
2602
2603    size = sizeof(msg);
2604    cserve2_client_send(client, &size, sizeof(size));
2605    cserve2_client_send(client, &msg, size);
2606 }
2607
2608 void
2609 cserve2_cache_font_debug(Client *client, unsigned int rid)
2610 {
2611    void *msg;
2612    unsigned int size;
2613
2614    msg = _cserve2_cache_font_debug(rid, &size);
2615
2616    cserve2_client_send(client, &size, sizeof(size));
2617    cserve2_client_send(client, msg, size);
2618
2619    free(msg);
2620 }