Add myself to the DOAP for GLib
[glib.git] / gio / xdgmime / xdgmimecache.c
blob1bcaf48e4e596514d76a4533eee40cfc48f7afee
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* xdgmimealias.c: Private file. mmappable caches for mime data
4 * More info can be found at http://www.freedesktop.org/standards/
6 * Copyright (C) 2005 Matthias Clasen <mclasen@redhat.com>
8 * Licensed under the Academic Free License version 2.0
9 * Or under the following terms:
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
33 #include <fcntl.h>
34 #include <unistd.h>
35 #include <errno.h>
36 #include <fnmatch.h>
37 #include <assert.h>
39 #include <netinet/in.h> /* for ntohl/ntohs */
41 #ifdef HAVE_MMAP
42 #include <sys/mman.h>
43 #else
44 #warning Building xdgmime without MMAP support. Binary "mime.info" cache files will not be used.
45 #endif
47 #include <sys/stat.h>
48 #include <sys/types.h>
50 #include "xdgmimecache.h"
51 #include "xdgmimeint.h"
53 #ifndef MAX
54 #define MAX(a,b) ((a) > (b) ? (a) : (b))
55 #endif
57 #ifndef FALSE
58 #define FALSE (0)
59 #endif
61 #ifndef TRUE
62 #define TRUE (!FALSE)
63 #endif
65 #ifndef _O_BINARY
66 #define _O_BINARY 0
67 #endif
69 #ifndef MAP_FAILED
70 #define MAP_FAILED ((void *) -1)
71 #endif
73 #define MAJOR_VERSION 1
74 #define MINOR_VERSION_MIN 1
75 #define MINOR_VERSION_MAX 2
77 struct _XdgMimeCache
79 int ref_count;
80 int minor;
82 size_t size;
83 char *buffer;
86 #define GET_UINT16(cache,offset) (ntohs(*(xdg_uint16_t*)((cache) + (offset))))
87 #define GET_UINT32(cache,offset) (ntohl(*(xdg_uint32_t*)((cache) + (offset))))
89 XdgMimeCache *
90 _xdg_mime_cache_ref (XdgMimeCache *cache)
92 cache->ref_count++;
93 return cache;
96 void
97 _xdg_mime_cache_unref (XdgMimeCache *cache)
99 cache->ref_count--;
101 if (cache->ref_count == 0)
103 #ifdef HAVE_MMAP
104 munmap (cache->buffer, cache->size);
105 #endif
106 free (cache);
110 XdgMimeCache *
111 _xdg_mime_cache_new_from_file (const char *file_name)
113 XdgMimeCache *cache = NULL;
115 #ifdef HAVE_MMAP
116 int fd = -1;
117 struct stat st;
118 char *buffer = NULL;
119 int minor;
121 /* Open the file and map it into memory */
123 fd = open (file_name, O_RDONLY|_O_BINARY, 0);
124 while (fd == -1 && errno == EINTR);
126 if (fd < 0)
127 return NULL;
129 if (fstat (fd, &st) < 0 || st.st_size < 4)
130 goto done;
132 buffer = (char *) mmap (NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
134 if (buffer == MAP_FAILED)
135 goto done;
137 minor = GET_UINT16 (buffer, 2);
138 /* Verify version */
139 if (GET_UINT16 (buffer, 0) != MAJOR_VERSION ||
140 (minor < MINOR_VERSION_MIN ||
141 minor > MINOR_VERSION_MAX))
143 munmap (buffer, st.st_size);
145 goto done;
148 cache = (XdgMimeCache *) malloc (sizeof (XdgMimeCache));
149 cache->minor = minor;
150 cache->ref_count = 1;
151 cache->buffer = buffer;
152 cache->size = st.st_size;
154 done:
155 if (fd != -1)
156 close (fd);
158 #else /* HAVE_MMAP */
159 cache = (XdgMimeCache *) malloc (sizeof (XdgMimeCache));
160 cache->minor = 0;
161 cache->ref_count = 1;
162 cache->buffer = NULL;
163 cache->size = 0;
164 #endif /* HAVE_MMAP */
166 return cache;
169 static int
170 cache_magic_matchlet_compare_to_data (XdgMimeCache *cache,
171 xdg_uint32_t offset,
172 const void *data,
173 size_t len)
175 xdg_uint32_t range_start = GET_UINT32 (cache->buffer, offset);
176 xdg_uint32_t range_length = GET_UINT32 (cache->buffer, offset + 4);
177 xdg_uint32_t data_length = GET_UINT32 (cache->buffer, offset + 12);
178 xdg_uint32_t data_offset = GET_UINT32 (cache->buffer, offset + 16);
179 xdg_uint32_t mask_offset = GET_UINT32 (cache->buffer, offset + 20);
181 int i, j;
183 for (i = range_start; i < range_start + range_length; i++)
185 int valid_matchlet = TRUE;
187 if (i + data_length > len)
188 return FALSE;
190 if (mask_offset)
192 for (j = 0; j < data_length; j++)
194 if ((((unsigned char *)cache->buffer)[data_offset + j] & ((unsigned char *)cache->buffer)[mask_offset + j]) !=
195 ((((unsigned char *) data)[j + i]) & ((unsigned char *)cache->buffer)[mask_offset + j]))
197 valid_matchlet = FALSE;
198 break;
202 else
204 for (j = 0; j < data_length; j++)
206 if (((unsigned char *)cache->buffer)[data_offset + j] != ((unsigned char *) data)[j + i])
208 valid_matchlet = FALSE;
209 break;
214 if (valid_matchlet)
215 return TRUE;
218 return FALSE;
221 static int
222 cache_magic_matchlet_compare (XdgMimeCache *cache,
223 xdg_uint32_t offset,
224 const void *data,
225 size_t len)
227 xdg_uint32_t n_children = GET_UINT32 (cache->buffer, offset + 24);
228 xdg_uint32_t child_offset = GET_UINT32 (cache->buffer, offset + 28);
230 int i;
232 if (cache_magic_matchlet_compare_to_data (cache, offset, data, len))
234 if (n_children == 0)
235 return TRUE;
237 for (i = 0; i < n_children; i++)
239 if (cache_magic_matchlet_compare (cache, child_offset + 32 * i,
240 data, len))
241 return TRUE;
245 return FALSE;
248 static const char *
249 cache_magic_compare_to_data (XdgMimeCache *cache,
250 xdg_uint32_t offset,
251 const void *data,
252 size_t len,
253 int *prio)
255 xdg_uint32_t priority = GET_UINT32 (cache->buffer, offset);
256 xdg_uint32_t mimetype_offset = GET_UINT32 (cache->buffer, offset + 4);
257 xdg_uint32_t n_matchlets = GET_UINT32 (cache->buffer, offset + 8);
258 xdg_uint32_t matchlet_offset = GET_UINT32 (cache->buffer, offset + 12);
260 int i;
262 for (i = 0; i < n_matchlets; i++)
264 if (cache_magic_matchlet_compare (cache, matchlet_offset + i * 32,
265 data, len))
267 *prio = priority;
269 return cache->buffer + mimetype_offset;
273 return NULL;
276 static const char *
277 cache_magic_lookup_data (XdgMimeCache *cache,
278 const void *data,
279 size_t len,
280 int *prio,
281 const char *mime_types[],
282 int n_mime_types)
284 xdg_uint32_t list_offset;
285 xdg_uint32_t n_entries;
286 xdg_uint32_t offset;
288 int j, n;
290 *prio = 0;
292 list_offset = GET_UINT32 (cache->buffer, 24);
293 n_entries = GET_UINT32 (cache->buffer, list_offset);
294 offset = GET_UINT32 (cache->buffer, list_offset + 8);
296 for (j = 0; j < n_entries; j++)
298 const char *match;
300 match = cache_magic_compare_to_data (cache, offset + 16 * j,
301 data, len, prio);
302 if (match)
303 return match;
304 else
306 xdg_uint32_t mimetype_offset;
307 const char *non_match;
309 mimetype_offset = GET_UINT32 (cache->buffer, offset + 16 * j + 4);
310 non_match = cache->buffer + mimetype_offset;
312 for (n = 0; n < n_mime_types; n++)
314 if (mime_types[n] &&
315 _xdg_mime_mime_type_equal (mime_types[n], non_match))
316 mime_types[n] = NULL;
321 return NULL;
324 static const char *
325 cache_alias_lookup (const char *alias)
327 const char *ptr;
328 int i, min, max, mid, cmp;
330 for (i = 0; _caches[i]; i++)
332 XdgMimeCache *cache = _caches[i];
333 xdg_uint32_t list_offset;
334 xdg_uint32_t n_entries;
335 xdg_uint32_t offset;
337 if (cache->buffer == NULL)
338 continue;
340 list_offset = GET_UINT32 (cache->buffer, 4);
341 n_entries = GET_UINT32 (cache->buffer, list_offset);
343 min = 0;
344 max = n_entries - 1;
345 while (max >= min)
347 mid = (min + max) / 2;
349 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * mid);
350 ptr = cache->buffer + offset;
351 cmp = strcmp (ptr, alias);
353 if (cmp < 0)
354 min = mid + 1;
355 else if (cmp > 0)
356 max = mid - 1;
357 else
359 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * mid + 4);
360 return cache->buffer + offset;
365 return NULL;
368 typedef struct {
369 const char *mime;
370 int weight;
371 } MimeWeight;
373 static int
374 cache_glob_lookup_literal (const char *file_name,
375 const char *mime_types[],
376 int n_mime_types,
377 int case_sensitive_check)
379 const char *ptr;
380 int i, min, max, mid, cmp;
382 for (i = 0; _caches[i]; i++)
384 XdgMimeCache *cache = _caches[i];
385 xdg_uint32_t list_offset;
386 xdg_uint32_t n_entries;
387 xdg_uint32_t offset;
389 if (cache->buffer == NULL)
390 continue;
392 list_offset = GET_UINT32 (cache->buffer, 12);
393 n_entries = GET_UINT32 (cache->buffer, list_offset);
395 min = 0;
396 max = n_entries - 1;
397 while (max >= min)
399 mid = (min + max) / 2;
401 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 12 * mid);
402 ptr = cache->buffer + offset;
403 cmp = strcmp (ptr, file_name);
405 if (cmp < 0)
406 min = mid + 1;
407 else if (cmp > 0)
408 max = mid - 1;
409 else
411 int weight = GET_UINT32 (cache->buffer, list_offset + 4 + 12 * mid + 8);
412 int case_sensitive = weight & 0x100;
413 weight = weight & 0xff;
415 if (case_sensitive_check || !case_sensitive)
417 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 12 * mid + 4);
418 mime_types[0] = (const char *)(cache->buffer + offset);
420 return 1;
422 return 0;
427 return 0;
430 static int
431 cache_glob_lookup_fnmatch (const char *file_name,
432 MimeWeight mime_types[],
433 int n_mime_types)
435 const char *mime_type;
436 const char *ptr;
438 int i, j, n;
440 n = 0;
441 for (i = 0; _caches[i]; i++)
443 XdgMimeCache *cache = _caches[i];
445 xdg_uint32_t list_offset;
446 xdg_uint32_t n_entries;
448 if (cache->buffer == NULL)
449 continue;
451 list_offset = GET_UINT32 (cache->buffer, 20);
452 n_entries = GET_UINT32 (cache->buffer, list_offset);
454 for (j = 0; j < n_entries && n < n_mime_types; j++)
456 xdg_uint32_t offset = GET_UINT32 (cache->buffer, list_offset + 4 + 12 * j);
457 xdg_uint32_t mimetype_offset = GET_UINT32 (cache->buffer, list_offset + 4 + 12 * j + 4);
458 int weight = GET_UINT32 (cache->buffer, list_offset + 4 + 12 * j + 8);
459 weight = weight & 0xff;
460 ptr = cache->buffer + offset;
461 mime_type = cache->buffer + mimetype_offset;
463 /* FIXME: Not UTF-8 safe */
464 if (fnmatch (ptr, file_name, 0) == 0)
466 mime_types[n].mime = mime_type;
467 mime_types[n].weight = weight;
468 n++;
472 if (n == n_mime_types)
473 break;
476 return n;
479 static int
480 cache_glob_node_lookup_suffix (XdgMimeCache *cache,
481 xdg_uint32_t n_entries,
482 xdg_uint32_t offset,
483 const char *file_name,
484 int len,
485 int case_sensitive_check,
486 MimeWeight mime_types[],
487 int n_mime_types)
489 xdg_unichar_t character;
490 xdg_unichar_t match_char;
491 xdg_uint32_t mimetype_offset;
492 xdg_uint32_t n_children;
493 xdg_uint32_t child_offset;
494 int weight;
495 int case_sensitive;
497 int min, max, mid, n, i;
499 character = file_name[len - 1];
501 assert (character != 0);
503 min = 0;
504 max = n_entries - 1;
505 while (max >= min)
507 mid = (min + max) / 2;
508 match_char = GET_UINT32 (cache->buffer, offset + 12 * mid);
509 if (match_char < character)
510 min = mid + 1;
511 else if (match_char > character)
512 max = mid - 1;
513 else
515 len--;
516 n = 0;
517 n_children = GET_UINT32 (cache->buffer, offset + 12 * mid + 4);
518 child_offset = GET_UINT32 (cache->buffer, offset + 12 * mid + 8);
520 if (len > 0)
522 n = cache_glob_node_lookup_suffix (cache,
523 n_children, child_offset,
524 file_name, len,
525 case_sensitive_check,
526 mime_types,
527 n_mime_types);
529 if (n == 0)
531 i = 0;
532 while (n < n_mime_types && i < n_children)
534 match_char = GET_UINT32 (cache->buffer, child_offset + 12 * i);
535 if (match_char != 0)
536 break;
538 mimetype_offset = GET_UINT32 (cache->buffer, child_offset + 12 * i + 4);
539 weight = GET_UINT32 (cache->buffer, child_offset + 12 * i + 8);
540 case_sensitive = weight & 0x100;
541 weight = weight & 0xff;
543 if (case_sensitive_check || !case_sensitive)
545 mime_types[n].mime = cache->buffer + mimetype_offset;
546 mime_types[n].weight = weight;
547 n++;
549 i++;
552 return n;
555 return 0;
558 static int
559 cache_glob_lookup_suffix (const char *file_name,
560 int len,
561 int ignore_case,
562 MimeWeight mime_types[],
563 int n_mime_types)
565 int i, n;
567 n = 0;
568 for (i = 0; _caches[i]; i++)
570 XdgMimeCache *cache = _caches[i];
572 xdg_uint32_t list_offset;
573 xdg_uint32_t n_entries;
574 xdg_uint32_t offset;
576 if (cache->buffer == NULL)
577 continue;
579 list_offset = GET_UINT32 (cache->buffer, 16);
580 n_entries = GET_UINT32 (cache->buffer, list_offset);
581 offset = GET_UINT32 (cache->buffer, list_offset + 4);
583 n += cache_glob_node_lookup_suffix (cache,
584 n_entries, offset,
585 file_name, len,
586 ignore_case,
587 mime_types + n,
588 n_mime_types - n);
589 if (n == n_mime_types)
590 break;
593 return n;
596 static int compare_mime_weight (const void *a, const void *b)
598 const MimeWeight *aa = (const MimeWeight *)a;
599 const MimeWeight *bb = (const MimeWeight *)b;
601 return bb->weight - aa->weight;
604 #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z')
605 static char *
606 ascii_tolower (const char *str)
608 char *p, *lower;
610 lower = strdup (str);
611 p = lower;
612 while (*p != 0)
614 char c = *p;
615 *p++ = ISUPPER (c) ? c - 'A' + 'a' : c;
617 return lower;
620 static int
621 filter_out_dupes (MimeWeight mimes[], int n_mimes)
623 int last;
624 int i, j;
626 last = n_mimes;
628 for (i = 0; i < last; i++)
630 j = i + 1;
631 while (j < last)
633 if (strcmp (mimes[i].mime, mimes[j].mime) == 0)
635 mimes[i].weight = MAX (mimes[i].weight, mimes[j].weight);
636 last--;
637 mimes[j].mime = mimes[last].mime;
638 mimes[j].weight = mimes[last].weight;
640 else
641 j++;
645 return last;
648 static int
649 cache_glob_lookup_file_name (const char *file_name,
650 const char *mime_types[],
651 int n_mime_types)
653 int n;
654 MimeWeight mimes[10];
655 int n_mimes = 10;
656 int i;
657 int len;
658 char *lower_case;
660 assert (file_name != NULL && n_mime_types > 0);
662 /* First, check the literals */
664 lower_case = ascii_tolower (file_name);
666 n = cache_glob_lookup_literal (lower_case, mime_types, n_mime_types, FALSE);
667 if (n > 0)
669 free (lower_case);
670 return n;
673 n = cache_glob_lookup_literal (file_name, mime_types, n_mime_types, TRUE);
674 if (n > 0)
676 free (lower_case);
677 return n;
680 len = strlen (file_name);
681 n = cache_glob_lookup_suffix (lower_case, len, FALSE, mimes, n_mimes);
682 if (n < 2)
683 n += cache_glob_lookup_suffix (file_name, len, TRUE, mimes + n, n_mimes - n);
685 free (lower_case);
687 /* Last, try fnmatch */
688 if (n < 2)
689 n += cache_glob_lookup_fnmatch (file_name, mimes + n, n_mimes - n);
691 n = filter_out_dupes (mimes, n);
693 qsort (mimes, n, sizeof (MimeWeight), compare_mime_weight);
695 if (n_mime_types < n)
696 n = n_mime_types;
698 for (i = 0; i < n; i++)
699 mime_types[i] = mimes[i].mime;
701 return n;
705 _xdg_mime_cache_get_max_buffer_extents (void)
707 xdg_uint32_t offset;
708 xdg_uint32_t max_extent;
709 int i;
711 max_extent = 0;
712 for (i = 0; _caches[i]; i++)
714 XdgMimeCache *cache = _caches[i];
716 if (cache->buffer == NULL)
717 continue;
719 offset = GET_UINT32 (cache->buffer, 24);
720 max_extent = MAX (max_extent, GET_UINT32 (cache->buffer, offset + 4));
723 return max_extent;
726 static const char *
727 cache_get_mime_type_for_data (const void *data,
728 size_t len,
729 int *result_prio,
730 const char *mime_types[],
731 int n_mime_types)
733 const char *mime_type;
734 int i, n, priority;
736 priority = 0;
737 mime_type = NULL;
738 for (i = 0; _caches[i]; i++)
740 XdgMimeCache *cache = _caches[i];
742 int prio;
743 const char *match;
745 if (cache->buffer == NULL)
746 continue;
748 match = cache_magic_lookup_data (cache, data, len, &prio,
749 mime_types, n_mime_types);
750 if (prio > priority)
752 priority = prio;
753 mime_type = match;
757 if (result_prio)
758 *result_prio = priority;
760 if (priority > 0)
761 return mime_type;
763 for (n = 0; n < n_mime_types; n++)
766 if (mime_types[n])
767 return mime_types[n];
770 return XDG_MIME_TYPE_UNKNOWN;
773 const char *
774 _xdg_mime_cache_get_mime_type_for_data (const void *data,
775 size_t len,
776 int *result_prio)
778 return cache_get_mime_type_for_data (data, len, result_prio, NULL, 0);
781 #ifdef NOT_USED_IN_GIO
783 const char *
784 _xdg_mime_cache_get_mime_type_for_file (const char *file_name,
785 struct stat *statbuf)
787 const char *mime_type;
788 const char *mime_types[10];
789 FILE *file;
790 unsigned char *data;
791 int max_extent;
792 int bytes_read;
793 struct stat buf;
794 const char *base_name;
795 int n;
797 if (file_name == NULL)
798 return NULL;
800 if (! _xdg_utf8_validate (file_name))
801 return NULL;
803 base_name = _xdg_get_base_name (file_name);
804 n = cache_glob_lookup_file_name (base_name, mime_types, 10);
806 if (n == 1)
807 return mime_types[0];
809 if (!statbuf)
811 if (stat (file_name, &buf) != 0)
812 return XDG_MIME_TYPE_UNKNOWN;
814 statbuf = &buf;
817 if (!S_ISREG (statbuf->st_mode))
818 return XDG_MIME_TYPE_UNKNOWN;
820 /* FIXME: Need to make sure that max_extent isn't totally broken. This could
821 * be large and need getting from a stream instead of just reading it all
822 * in. */
823 max_extent = _xdg_mime_cache_get_max_buffer_extents ();
824 data = malloc (max_extent);
825 if (data == NULL)
826 return XDG_MIME_TYPE_UNKNOWN;
828 file = fopen (file_name, "r");
829 if (file == NULL)
831 free (data);
832 return XDG_MIME_TYPE_UNKNOWN;
835 bytes_read = fread (data, 1, max_extent, file);
836 if (ferror (file))
838 free (data);
839 fclose (file);
840 return XDG_MIME_TYPE_UNKNOWN;
843 mime_type = cache_get_mime_type_for_data (data, bytes_read, NULL,
844 mime_types, n);
846 free (data);
847 fclose (file);
849 return mime_type;
852 const char *
853 _xdg_mime_cache_get_mime_type_from_file_name (const char *file_name)
855 const char *mime_type;
857 if (cache_glob_lookup_file_name (file_name, &mime_type, 1))
858 return mime_type;
859 else
860 return XDG_MIME_TYPE_UNKNOWN;
863 #endif
866 _xdg_mime_cache_get_mime_types_from_file_name (const char *file_name,
867 const char *mime_types[],
868 int n_mime_types)
870 return cache_glob_lookup_file_name (file_name, mime_types, n_mime_types);
873 #if 1
874 static int
875 ends_with (const char *str,
876 const char *suffix)
878 int length;
879 int suffix_length;
881 length = strlen (str);
882 suffix_length = strlen (suffix);
883 if (length < suffix_length)
884 return 0;
886 if (strcmp (str + length - suffix_length, suffix) == 0)
887 return 1;
889 return 0;
892 static int
893 is_super_type (const char *mime)
895 return ends_with (mime, "/*");
897 #endif
900 _xdg_mime_cache_mime_type_subclass (const char *mime,
901 const char *base)
903 const char *umime, *ubase;
905 int i, j, min, max, med, cmp;
907 umime = _xdg_mime_cache_unalias_mime_type (mime);
908 ubase = _xdg_mime_cache_unalias_mime_type (base);
910 if (strcmp (umime, ubase) == 0)
911 return 1;
913 /* We really want to handle text/ * in GtkFileFilter, so we just
914 * turn on the supertype matching
916 #if 1
917 /* Handle supertypes */
918 if (is_super_type (ubase) &&
919 xdg_mime_media_type_equal (umime, ubase))
920 return 1;
921 #endif
923 /* Handle special cases text/plain and application/octet-stream */
924 if (strcmp (ubase, "text/plain") == 0 &&
925 strncmp (umime, "text/", 5) == 0)
926 return 1;
928 if (strcmp (ubase, "application/octet-stream") == 0 &&
929 strncmp (umime, "inode/", 6) != 0)
930 return 1;
932 for (i = 0; _caches[i]; i++)
934 XdgMimeCache *cache = _caches[i];
935 xdg_uint32_t list_offset;
936 xdg_uint32_t n_entries;
937 xdg_uint32_t offset, n_parents, parent_offset;
939 if (cache->buffer == NULL)
940 continue;
942 list_offset = GET_UINT32 (cache->buffer, 8);
943 n_entries = GET_UINT32 (cache->buffer, list_offset);
945 min = 0;
946 max = n_entries - 1;
947 while (max >= min)
949 med = (min + max)/2;
951 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * med);
952 cmp = strcmp (cache->buffer + offset, umime);
953 if (cmp < 0)
954 min = med + 1;
955 else if (cmp > 0)
956 max = med - 1;
957 else
959 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * med + 4);
960 n_parents = GET_UINT32 (cache->buffer, offset);
962 for (j = 0; j < n_parents; j++)
964 parent_offset = GET_UINT32 (cache->buffer, offset + 4 + 4 * j);
965 if (_xdg_mime_cache_mime_type_subclass (cache->buffer + parent_offset, ubase))
966 return 1;
969 break;
974 return 0;
977 const char *
978 _xdg_mime_cache_unalias_mime_type (const char *mime)
980 const char *lookup;
982 lookup = cache_alias_lookup (mime);
984 if (lookup)
985 return lookup;
987 return mime;
990 char **
991 _xdg_mime_cache_list_mime_parents (const char *mime)
993 int i, j, k, l, p;
994 char *all_parents[128]; /* we'll stop at 128 */
995 char **result;
997 mime = xdg_mime_unalias_mime_type (mime);
999 p = 0;
1000 for (i = 0; _caches[i]; i++)
1002 XdgMimeCache *cache = _caches[i];
1003 xdg_uint32_t list_offset;
1004 xdg_uint32_t n_entries;
1006 if (cache->buffer == NULL)
1007 continue;
1009 list_offset = GET_UINT32 (cache->buffer, 8);
1010 n_entries = GET_UINT32 (cache->buffer, list_offset);
1012 for (j = 0; j < n_entries; j++)
1014 xdg_uint32_t mimetype_offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * j);
1015 xdg_uint32_t parents_offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * j + 4);
1017 if (strcmp (cache->buffer + mimetype_offset, mime) == 0)
1019 xdg_uint32_t parent_mime_offset;
1020 xdg_uint32_t n_parents = GET_UINT32 (cache->buffer, parents_offset);
1022 for (k = 0; k < n_parents && p < 127; k++)
1024 parent_mime_offset = GET_UINT32 (cache->buffer, parents_offset + 4 + 4 * k);
1026 /* Don't add same parent multiple times.
1027 * This can happen for instance if the same type is listed in multiple directories
1029 for (l = 0; l < p; l++)
1031 if (strcmp (all_parents[l], cache->buffer + parent_mime_offset) == 0)
1032 break;
1035 if (l == p)
1036 all_parents[p++] = cache->buffer + parent_mime_offset;
1039 break;
1043 all_parents[p++] = NULL;
1045 result = (char **) malloc (p * sizeof (char *));
1046 memcpy (result, all_parents, p * sizeof (char *));
1048 return result;
1051 static const char *
1052 cache_lookup_icon (const char *mime, int header)
1054 const char *ptr;
1055 int i, min, max, mid, cmp;
1057 for (i = 0; _caches[i]; i++)
1059 XdgMimeCache *cache = _caches[i];
1060 xdg_uint32_t list_offset;
1061 xdg_uint32_t n_entries;
1062 xdg_uint32_t offset;
1064 if (cache->buffer == NULL)
1065 continue;
1067 list_offset = GET_UINT32 (cache->buffer, header);
1068 n_entries = GET_UINT32 (cache->buffer, list_offset);
1070 min = 0;
1071 max = n_entries - 1;
1072 while (max >= min)
1074 mid = (min + max) / 2;
1076 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * mid);
1077 ptr = cache->buffer + offset;
1078 cmp = strcmp (ptr, mime);
1080 if (cmp < 0)
1081 min = mid + 1;
1082 else if (cmp > 0)
1083 max = mid - 1;
1084 else
1086 offset = GET_UINT32 (cache->buffer, list_offset + 4 + 8 * mid + 4);
1087 return cache->buffer + offset;
1092 return NULL;
1095 const char *
1096 _xdg_mime_cache_get_generic_icon (const char *mime)
1098 return cache_lookup_icon (mime, 36);
1101 const char *
1102 _xdg_mime_cache_get_icon (const char *mime)
1104 return cache_lookup_icon (mime, 32);
1107 #ifdef NOT_USED_IN_GIO
1109 static void
1110 dump_glob_node (XdgMimeCache *cache,
1111 xdg_uint32_t offset,
1112 int depth)
1114 xdg_unichar_t character;
1115 xdg_uint32_t mime_offset;
1116 xdg_uint32_t n_children;
1117 xdg_uint32_t child_offset;
1118 int i;
1120 character = GET_UINT32 (cache->buffer, offset);
1121 mime_offset = GET_UINT32 (cache->buffer, offset + 4);
1122 n_children = GET_UINT32 (cache->buffer, offset + 8);
1123 child_offset = GET_UINT32 (cache->buffer, offset + 12);
1124 for (i = 0; i < depth; i++)
1125 printf (" ");
1126 printf ("%c", character);
1127 if (mime_offset)
1128 printf (" - %s", cache->buffer + mime_offset);
1129 printf ("\n");
1130 if (child_offset)
1132 for (i = 0; i < n_children; i++)
1133 dump_glob_node (cache, child_offset + 20 * i, depth + 1);
1137 void
1138 _xdg_mime_cache_glob_dump (void)
1140 int i, j;
1141 for (i = 0; _caches[i]; i++)
1143 XdgMimeCache *cache = _caches[i];
1144 xdg_uint32_t list_offset;
1145 xdg_uint32_t n_entries;
1146 xdg_uint32_t offset;
1148 if (cache->buffer == NULL)
1149 continue;
1151 list_offset = GET_UINT32 (cache->buffer, 16);
1152 n_entries = GET_UINT32 (cache->buffer, list_offset);
1153 offset = GET_UINT32 (cache->buffer, list_offset + 4);
1154 for (j = 0; j < n_entries; j++)
1155 dump_glob_node (cache, offset + 20 * j, 0);
1159 #endif