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/>.
39 #include <netinet/in.h> /* for ntohl/ntohs */
44 #warning Building xdgmime without MMAP support. Binary "mime.info" cache files will not be used.
48 #include <sys/types.h>
50 #include "xdgmimecache.h"
51 #include "xdgmimeint.h"
54 #define MAX(a,b) ((a) > (b) ? (a) : (b))
70 #define MAP_FAILED ((void *) -1)
73 #define MAJOR_VERSION 1
74 #define MINOR_VERSION_MIN 1
75 #define MINOR_VERSION_MAX 2
86 #define GET_UINT16(cache,offset) (ntohs(*(xdg_uint16_t*)((cache) + (offset))))
87 #define GET_UINT32(cache,offset) (ntohl(*(xdg_uint32_t*)((cache) + (offset))))
90 _xdg_mime_cache_ref (XdgMimeCache
*cache
)
97 _xdg_mime_cache_unref (XdgMimeCache
*cache
)
101 if (cache
->ref_count
== 0)
104 munmap (cache
->buffer
, cache
->size
);
111 _xdg_mime_cache_new_from_file (const char *file_name
)
113 XdgMimeCache
*cache
= NULL
;
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
);
129 if (fstat (fd
, &st
) < 0 || st
.st_size
< 4)
132 buffer
= (char *) mmap (NULL
, st
.st_size
, PROT_READ
, MAP_SHARED
, fd
, 0);
134 if (buffer
== MAP_FAILED
)
137 minor
= GET_UINT16 (buffer
, 2);
139 if (GET_UINT16 (buffer
, 0) != MAJOR_VERSION
||
140 (minor
< MINOR_VERSION_MIN
||
141 minor
> MINOR_VERSION_MAX
))
143 munmap (buffer
, st
.st_size
);
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
;
158 #else /* HAVE_MMAP */
159 cache
= (XdgMimeCache
*) malloc (sizeof (XdgMimeCache
));
161 cache
->ref_count
= 1;
162 cache
->buffer
= NULL
;
164 #endif /* HAVE_MMAP */
170 cache_magic_matchlet_compare_to_data (XdgMimeCache
*cache
,
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);
183 for (i
= range_start
; i
< range_start
+ range_length
; i
++)
185 int valid_matchlet
= TRUE
;
187 if (i
+ data_length
> len
)
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
;
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
;
222 cache_magic_matchlet_compare (XdgMimeCache
*cache
,
227 xdg_uint32_t n_children
= GET_UINT32 (cache
->buffer
, offset
+ 24);
228 xdg_uint32_t child_offset
= GET_UINT32 (cache
->buffer
, offset
+ 28);
232 if (cache_magic_matchlet_compare_to_data (cache
, offset
, data
, len
))
237 for (i
= 0; i
< n_children
; i
++)
239 if (cache_magic_matchlet_compare (cache
, child_offset
+ 32 * i
,
249 cache_magic_compare_to_data (XdgMimeCache
*cache
,
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);
262 for (i
= 0; i
< n_matchlets
; i
++)
264 if (cache_magic_matchlet_compare (cache
, matchlet_offset
+ i
* 32,
269 return cache
->buffer
+ mimetype_offset
;
277 cache_magic_lookup_data (XdgMimeCache
*cache
,
281 const char *mime_types
[],
284 xdg_uint32_t list_offset
;
285 xdg_uint32_t n_entries
;
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
++)
300 match
= cache_magic_compare_to_data (cache
, offset
+ 16 * j
,
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
++)
315 _xdg_mime_mime_type_equal (mime_types
[n
], non_match
))
316 mime_types
[n
] = NULL
;
325 cache_alias_lookup (const char *alias
)
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
;
337 if (cache
->buffer
== NULL
)
340 list_offset
= GET_UINT32 (cache
->buffer
, 4);
341 n_entries
= GET_UINT32 (cache
->buffer
, list_offset
);
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
);
359 offset
= GET_UINT32 (cache
->buffer
, list_offset
+ 4 + 8 * mid
+ 4);
360 return cache
->buffer
+ offset
;
374 cache_glob_lookup_literal (const char *file_name
,
375 const char *mime_types
[],
377 int case_sensitive_check
)
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
;
389 if (cache
->buffer
== NULL
)
392 list_offset
= GET_UINT32 (cache
->buffer
, 12);
393 n_entries
= GET_UINT32 (cache
->buffer
, list_offset
);
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
);
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
);
431 cache_glob_lookup_fnmatch (const char *file_name
,
432 MimeWeight mime_types
[],
435 const char *mime_type
;
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
)
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
;
472 if (n
== n_mime_types
)
480 cache_glob_node_lookup_suffix (XdgMimeCache
*cache
,
481 xdg_uint32_t n_entries
,
483 const char *file_name
,
485 int case_sensitive_check
,
486 MimeWeight 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
;
497 int min
, max
, mid
, n
, i
;
499 character
= file_name
[len
- 1];
501 assert (character
!= 0);
507 mid
= (min
+ max
) / 2;
508 match_char
= GET_UINT32 (cache
->buffer
, offset
+ 12 * mid
);
509 if (match_char
< character
)
511 else if (match_char
> character
)
517 n_children
= GET_UINT32 (cache
->buffer
, offset
+ 12 * mid
+ 4);
518 child_offset
= GET_UINT32 (cache
->buffer
, offset
+ 12 * mid
+ 8);
522 n
= cache_glob_node_lookup_suffix (cache
,
523 n_children
, child_offset
,
525 case_sensitive_check
,
532 while (n
< n_mime_types
&& i
< n_children
)
534 match_char
= GET_UINT32 (cache
->buffer
, child_offset
+ 12 * i
);
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
;
559 cache_glob_lookup_suffix (const char *file_name
,
562 MimeWeight mime_types
[],
568 for (i
= 0; _caches
[i
]; i
++)
570 XdgMimeCache
*cache
= _caches
[i
];
572 xdg_uint32_t list_offset
;
573 xdg_uint32_t n_entries
;
576 if (cache
->buffer
== NULL
)
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
,
589 if (n
== n_mime_types
)
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')
606 ascii_tolower (const char *str
)
610 lower
= strdup (str
);
615 *p
++ = ISUPPER (c
) ? c
- 'A' + 'a' : c
;
621 filter_out_dupes (MimeWeight mimes
[], int n_mimes
)
628 for (i
= 0; i
< last
; i
++)
633 if (strcmp (mimes
[i
].mime
, mimes
[j
].mime
) == 0)
635 mimes
[i
].weight
= MAX (mimes
[i
].weight
, mimes
[j
].weight
);
637 mimes
[j
].mime
= mimes
[last
].mime
;
638 mimes
[j
].weight
= mimes
[last
].weight
;
649 cache_glob_lookup_file_name (const char *file_name
,
650 const char *mime_types
[],
654 MimeWeight mimes
[10];
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
);
673 n
= cache_glob_lookup_literal (file_name
, mime_types
, n_mime_types
, TRUE
);
680 len
= strlen (file_name
);
681 n
= cache_glob_lookup_suffix (lower_case
, len
, FALSE
, mimes
, n_mimes
);
683 n
+= cache_glob_lookup_suffix (file_name
, len
, TRUE
, mimes
+ n
, n_mimes
- n
);
687 /* Last, try fnmatch */
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
)
698 for (i
= 0; i
< n
; i
++)
699 mime_types
[i
] = mimes
[i
].mime
;
705 _xdg_mime_cache_get_max_buffer_extents (void)
708 xdg_uint32_t max_extent
;
712 for (i
= 0; _caches
[i
]; i
++)
714 XdgMimeCache
*cache
= _caches
[i
];
716 if (cache
->buffer
== NULL
)
719 offset
= GET_UINT32 (cache
->buffer
, 24);
720 max_extent
= MAX (max_extent
, GET_UINT32 (cache
->buffer
, offset
+ 4));
727 cache_get_mime_type_for_data (const void *data
,
730 const char *mime_types
[],
733 const char *mime_type
;
738 for (i
= 0; _caches
[i
]; i
++)
740 XdgMimeCache
*cache
= _caches
[i
];
745 if (cache
->buffer
== NULL
)
748 match
= cache_magic_lookup_data (cache
, data
, len
, &prio
,
749 mime_types
, n_mime_types
);
758 *result_prio
= priority
;
763 for (n
= 0; n
< n_mime_types
; n
++)
767 return mime_types
[n
];
770 return XDG_MIME_TYPE_UNKNOWN
;
774 _xdg_mime_cache_get_mime_type_for_data (const void *data
,
778 return cache_get_mime_type_for_data (data
, len
, result_prio
, NULL
, 0);
781 #ifdef NOT_USED_IN_GIO
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];
794 const char *base_name
;
797 if (file_name
== NULL
)
800 if (! _xdg_utf8_validate (file_name
))
803 base_name
= _xdg_get_base_name (file_name
);
804 n
= cache_glob_lookup_file_name (base_name
, mime_types
, 10);
807 return mime_types
[0];
811 if (stat (file_name
, &buf
) != 0)
812 return XDG_MIME_TYPE_UNKNOWN
;
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
823 max_extent
= _xdg_mime_cache_get_max_buffer_extents ();
824 data
= malloc (max_extent
);
826 return XDG_MIME_TYPE_UNKNOWN
;
828 file
= fopen (file_name
, "r");
832 return XDG_MIME_TYPE_UNKNOWN
;
835 bytes_read
= fread (data
, 1, max_extent
, file
);
840 return XDG_MIME_TYPE_UNKNOWN
;
843 mime_type
= cache_get_mime_type_for_data (data
, bytes_read
, NULL
,
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))
860 return XDG_MIME_TYPE_UNKNOWN
;
866 _xdg_mime_cache_get_mime_types_from_file_name (const char *file_name
,
867 const char *mime_types
[],
870 return cache_glob_lookup_file_name (file_name
, mime_types
, n_mime_types
);
875 ends_with (const char *str
,
881 length
= strlen (str
);
882 suffix_length
= strlen (suffix
);
883 if (length
< suffix_length
)
886 if (strcmp (str
+ length
- suffix_length
, suffix
) == 0)
893 is_super_type (const char *mime
)
895 return ends_with (mime
, "/*");
900 _xdg_mime_cache_mime_type_subclass (const char *mime
,
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)
913 /* We really want to handle text/ * in GtkFileFilter, so we just
914 * turn on the supertype matching
917 /* Handle supertypes */
918 if (is_super_type (ubase
) &&
919 xdg_mime_media_type_equal (umime
, ubase
))
923 /* Handle special cases text/plain and application/octet-stream */
924 if (strcmp (ubase
, "text/plain") == 0 &&
925 strncmp (umime
, "text/", 5) == 0)
928 if (strcmp (ubase
, "application/octet-stream") == 0 &&
929 strncmp (umime
, "inode/", 6) != 0)
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
)
942 list_offset
= GET_UINT32 (cache
->buffer
, 8);
943 n_entries
= GET_UINT32 (cache
->buffer
, list_offset
);
951 offset
= GET_UINT32 (cache
->buffer
, list_offset
+ 4 + 8 * med
);
952 cmp
= strcmp (cache
->buffer
+ offset
, umime
);
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
))
978 _xdg_mime_cache_unalias_mime_type (const char *mime
)
982 lookup
= cache_alias_lookup (mime
);
991 _xdg_mime_cache_list_mime_parents (const char *mime
)
994 char *all_parents
[128]; /* we'll stop at 128 */
997 mime
= xdg_mime_unalias_mime_type (mime
);
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
)
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)
1036 all_parents
[p
++] = cache
->buffer
+ parent_mime_offset
;
1043 all_parents
[p
++] = NULL
;
1045 result
= (char **) malloc (p
* sizeof (char *));
1046 memcpy (result
, all_parents
, p
* sizeof (char *));
1052 cache_lookup_icon (const char *mime
, int header
)
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
)
1067 list_offset
= GET_UINT32 (cache
->buffer
, header
);
1068 n_entries
= GET_UINT32 (cache
->buffer
, list_offset
);
1071 max
= n_entries
- 1;
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
);
1086 offset
= GET_UINT32 (cache
->buffer
, list_offset
+ 4 + 8 * mid
+ 4);
1087 return cache
->buffer
+ offset
;
1096 _xdg_mime_cache_get_generic_icon (const char *mime
)
1098 return cache_lookup_icon (mime
, 36);
1102 _xdg_mime_cache_get_icon (const char *mime
)
1104 return cache_lookup_icon (mime
, 32);
1107 #ifdef NOT_USED_IN_GIO
1110 dump_glob_node (XdgMimeCache
*cache
,
1111 xdg_uint32_t offset
,
1114 xdg_unichar_t character
;
1115 xdg_uint32_t mime_offset
;
1116 xdg_uint32_t n_children
;
1117 xdg_uint32_t child_offset
;
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
++)
1126 printf ("%c", character
);
1128 printf (" - %s", cache
->buffer
+ mime_offset
);
1132 for (i
= 0; i
< n_children
; i
++)
1133 dump_glob_node (cache
, child_offset
+ 20 * i
, depth
+ 1);
1138 _xdg_mime_cache_glob_dump (void)
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
)
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);