Tizen 2.1 base
[platform/upstream/glib2.0.git] / gio / xdgmime / xdgmimemagic.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* xdgmimemagic.: Private file.  Datastructure for storing magic files.
3  *
4  * More info can be found at http://www.freedesktop.org/standards/
5  *
6  * Copyright (C) 2003  Red Hat, Inc.
7  * Copyright (C) 2003  Jonathan Blandford <jrb@alum.mit.edu>
8  *
9  * Licensed under the Academic Free License version 2.0
10  * Or under the following terms:
11  *
12  * This library is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public
14  * License as published by the Free Software Foundation; either
15  * version 2 of the License, or (at your option) any later version.
16  *
17  * This library is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with this library; if not, write to the
24  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25  * Boston, MA 02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #include <assert.h>
33 #include "xdgmimemagic.h"
34 #include "xdgmimeint.h"
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <ctype.h>
39 #include <errno.h>
40 #include <limits.h>
41
42 #ifndef FALSE
43 #define FALSE   (0)
44 #endif
45
46 #ifndef TRUE
47 #define TRUE    (!FALSE)
48 #endif
49
50 #if !defined getc_unlocked && !defined HAVE_GETC_UNLOCKED
51 # define getc_unlocked(fp) getc (fp)
52 #endif
53
54 typedef struct XdgMimeMagicMatch XdgMimeMagicMatch;
55 typedef struct XdgMimeMagicMatchlet XdgMimeMagicMatchlet;
56
57 typedef enum
58 {
59   XDG_MIME_MAGIC_SECTION,
60   XDG_MIME_MAGIC_MAGIC,
61   XDG_MIME_MAGIC_ERROR,
62   XDG_MIME_MAGIC_EOF
63 } XdgMimeMagicState;
64
65 struct XdgMimeMagicMatch
66 {
67   const char *mime_type;
68   int priority;
69   XdgMimeMagicMatchlet *matchlet;
70   XdgMimeMagicMatch *next;
71 };
72
73
74 struct XdgMimeMagicMatchlet
75 {
76   int indent;
77   int offset;
78   unsigned int value_length;
79   unsigned char *value;
80   unsigned char *mask;
81   unsigned int range_length;
82   unsigned int word_size;
83   XdgMimeMagicMatchlet *next;
84 };
85
86
87 struct XdgMimeMagic
88 {
89   XdgMimeMagicMatch *match_list;
90   int max_extent;
91 };
92
93 static XdgMimeMagicMatch *
94 _xdg_mime_magic_match_new (void)
95 {
96   return calloc (1, sizeof (XdgMimeMagicMatch));
97 }
98
99
100 static XdgMimeMagicMatchlet *
101 _xdg_mime_magic_matchlet_new (void)
102 {
103   XdgMimeMagicMatchlet *matchlet;
104
105   matchlet = malloc (sizeof (XdgMimeMagicMatchlet));
106
107   matchlet->indent = 0;
108   matchlet->offset = 0;
109   matchlet->value_length = 0;
110   matchlet->value = NULL;
111   matchlet->mask = NULL;
112   matchlet->range_length = 1;
113   matchlet->word_size = 1;
114   matchlet->next = NULL;
115
116   return matchlet;
117 }
118
119
120 static void
121 _xdg_mime_magic_matchlet_free (XdgMimeMagicMatchlet *mime_magic_matchlet)
122 {
123   if (mime_magic_matchlet)
124     {
125       if (mime_magic_matchlet->next)
126         _xdg_mime_magic_matchlet_free (mime_magic_matchlet->next);
127       if (mime_magic_matchlet->value)
128         free (mime_magic_matchlet->value);
129       if (mime_magic_matchlet->mask)
130         free (mime_magic_matchlet->mask);
131       free (mime_magic_matchlet);
132     }
133 }
134
135
136 /* Frees mime_magic_match and the remainder of its list
137  */
138 static void
139 _xdg_mime_magic_match_free (XdgMimeMagicMatch *mime_magic_match)
140 {
141   XdgMimeMagicMatch *ptr, *next;
142
143   ptr = mime_magic_match;
144   while (ptr)
145     {
146       next = ptr->next;
147
148       if (ptr->mime_type)
149         free ((void *) ptr->mime_type);
150       if (ptr->matchlet)
151         _xdg_mime_magic_matchlet_free (ptr->matchlet);
152       free (ptr);
153
154       ptr = next;
155     }
156 }
157
158 /* Reads in a hunk of data until a newline character or a '\000' is hit.  The
159  * returned string is null terminated, and doesn't include the newline.
160  */
161 static unsigned char *
162 _xdg_mime_magic_read_to_newline (FILE *magic_file,
163                                  int  *end_of_file)
164 {
165   unsigned char *retval;
166   int c;
167   int len, pos;
168
169   len = 128;
170   pos = 0;
171   retval = malloc (len);
172   *end_of_file = FALSE;
173
174   while (TRUE)
175     {
176       c = getc_unlocked (magic_file);
177       if (c == EOF)
178         {
179           *end_of_file = TRUE;
180           break;
181         }
182       if (c == '\n' || c == '\000')
183         break;
184       retval[pos++] = (unsigned char) c;
185       if (pos % 128 == 127)
186         {
187           len = len + 128;
188           retval = realloc (retval, len);
189         }
190     }
191
192   retval[pos] = '\000';
193   return retval;
194 }
195
196 /* Returns the number read from the file, or -1 if no number could be read.
197  */
198 static int
199 _xdg_mime_magic_read_a_number (FILE *magic_file,
200                                int  *end_of_file)
201 {
202   /* LONG_MAX is about 20 characters on my system */
203 #define MAX_NUMBER_SIZE 30
204   char number_string[MAX_NUMBER_SIZE + 1];
205   int pos = 0;
206   int c;
207   long retval = -1;
208
209   while (TRUE)
210     {
211       c = getc_unlocked (magic_file);
212
213       if (c == EOF)
214         {
215           *end_of_file = TRUE;
216           break;
217         }
218       if (! isdigit (c))
219         {
220           ungetc (c, magic_file);
221           break;
222         }
223       number_string[pos] = (char) c;
224       pos++;
225       if (pos == MAX_NUMBER_SIZE)
226         break;
227     }
228   if (pos > 0)
229     {
230       number_string[pos] = '\000';
231       errno = 0;
232       retval = strtol (number_string, NULL, 10);
233
234       if ((retval < INT_MIN) || (retval > INT_MAX) || (errno != 0))
235         return -1;
236     }
237
238   return retval;
239 }
240
241 /* Headers are of the format:
242  * [<priority>:<mime-type>]
243  */
244 static XdgMimeMagicState
245 _xdg_mime_magic_parse_header (FILE *magic_file, XdgMimeMagicMatch *match)
246 {
247   int c;
248   char *buffer;
249   char *end_ptr;
250   int end_of_file = 0;
251
252   assert (magic_file != NULL);
253   assert (match != NULL);
254
255   c = getc_unlocked (magic_file);
256   if (c == EOF)
257     return XDG_MIME_MAGIC_EOF;
258   if (c != '[')
259     return XDG_MIME_MAGIC_ERROR;
260
261   match->priority = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
262   if (end_of_file)
263     return XDG_MIME_MAGIC_EOF;
264   if (match->priority == -1)
265     return XDG_MIME_MAGIC_ERROR;
266
267   c = getc_unlocked (magic_file);
268   if (c == EOF)
269     return XDG_MIME_MAGIC_EOF;
270   if (c != ':')
271     return XDG_MIME_MAGIC_ERROR;
272
273   buffer = (char *)_xdg_mime_magic_read_to_newline (magic_file, &end_of_file);
274   if (end_of_file)
275     {
276       free (buffer);
277       return XDG_MIME_MAGIC_EOF;
278     }
279
280   end_ptr = buffer;
281   while (*end_ptr != ']' && *end_ptr != '\000' && *end_ptr != '\n')
282     end_ptr++;
283   if (*end_ptr != ']')
284     {
285       free (buffer);
286       return XDG_MIME_MAGIC_ERROR;
287     }
288   *end_ptr = '\000';
289
290   match->mime_type = strdup (buffer);
291   free (buffer);
292
293   return XDG_MIME_MAGIC_MAGIC;
294 }
295
296 static XdgMimeMagicState
297 _xdg_mime_magic_parse_error (FILE *magic_file)
298 {
299   int c;
300
301   while (1)
302     {
303       c = getc_unlocked (magic_file);
304       if (c == EOF)
305         return XDG_MIME_MAGIC_EOF;
306       if (c == '\n')
307         return XDG_MIME_MAGIC_SECTION;
308     }
309 }
310
311 /* Headers are of the format:
312  * [ indent ] ">" start-offset "=" value
313  * [ "&" mask ] [ "~" word-size ] [ "+" range-length ] "\n"
314  */
315 static XdgMimeMagicState
316 _xdg_mime_magic_parse_magic_line (FILE              *magic_file,
317                                   XdgMimeMagicMatch *match)
318 {
319   XdgMimeMagicMatchlet *matchlet;
320   int c;
321   int end_of_file;
322   int indent = 0;
323   int bytes_read;
324
325   assert (magic_file != NULL);
326
327   /* Sniff the buffer to make sure it's a valid line */
328   c = getc_unlocked (magic_file);
329   if (c == EOF)
330     return XDG_MIME_MAGIC_EOF;
331   else if (c == '[')
332     {
333       ungetc (c, magic_file);
334       return XDG_MIME_MAGIC_SECTION;
335     }
336   else if (c == '\n')
337     return XDG_MIME_MAGIC_MAGIC;
338
339   /* At this point, it must be a digit or a '>' */
340   end_of_file = FALSE;
341   if (isdigit (c))
342     {
343       ungetc (c, magic_file);
344       indent = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
345       if (end_of_file)
346         return XDG_MIME_MAGIC_EOF;
347       if (indent == -1)
348         return XDG_MIME_MAGIC_ERROR;
349       c = getc_unlocked (magic_file);
350       if (c == EOF)
351         return XDG_MIME_MAGIC_EOF;
352     }
353
354   if (c != '>')
355     return XDG_MIME_MAGIC_ERROR;
356
357   matchlet = _xdg_mime_magic_matchlet_new ();
358   matchlet->indent = indent;
359   matchlet->offset = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
360   if (end_of_file)
361     {
362       _xdg_mime_magic_matchlet_free (matchlet);
363       return XDG_MIME_MAGIC_EOF;
364     }
365   if (matchlet->offset == -1)
366     {
367       _xdg_mime_magic_matchlet_free (matchlet);
368       return XDG_MIME_MAGIC_ERROR;
369     }
370   c = getc_unlocked (magic_file);
371   if (c == EOF)
372     {
373       _xdg_mime_magic_matchlet_free (matchlet);
374       return XDG_MIME_MAGIC_EOF;
375     }
376   else if (c != '=')
377     {
378       _xdg_mime_magic_matchlet_free (matchlet);
379       return XDG_MIME_MAGIC_ERROR;
380     }
381
382   /* Next two bytes determine how long the value is */
383   matchlet->value_length = 0;
384   c = getc_unlocked (magic_file);
385   if (c == EOF)
386     {
387       _xdg_mime_magic_matchlet_free (matchlet);
388       return XDG_MIME_MAGIC_EOF;
389     }
390   matchlet->value_length = c & 0xFF;
391   matchlet->value_length = matchlet->value_length << 8;
392
393   c = getc_unlocked (magic_file);
394   if (c == EOF)
395     {
396       _xdg_mime_magic_matchlet_free (matchlet);
397       return XDG_MIME_MAGIC_EOF;
398     }
399   matchlet->value_length = matchlet->value_length + (c & 0xFF);
400
401   matchlet->value = malloc (matchlet->value_length);
402
403   /* OOM */
404   if (matchlet->value == NULL)
405     {
406       _xdg_mime_magic_matchlet_free (matchlet);
407       return XDG_MIME_MAGIC_ERROR;
408     }
409   bytes_read = fread (matchlet->value, 1, matchlet->value_length, magic_file);
410   if (bytes_read != matchlet->value_length)
411     {
412       _xdg_mime_magic_matchlet_free (matchlet);
413       if (feof (magic_file))
414         return XDG_MIME_MAGIC_EOF;
415       else
416         return XDG_MIME_MAGIC_ERROR;
417     }
418
419   c = getc_unlocked (magic_file);
420   if (c == '&')
421     {
422       matchlet->mask = malloc (matchlet->value_length);
423       /* OOM */
424       if (matchlet->mask == NULL)
425         {
426           _xdg_mime_magic_matchlet_free (matchlet);
427           return XDG_MIME_MAGIC_ERROR;
428         }
429       bytes_read = fread (matchlet->mask, 1, matchlet->value_length, magic_file);
430       if (bytes_read != matchlet->value_length)
431         {
432           _xdg_mime_magic_matchlet_free (matchlet);
433           if (feof (magic_file))
434             return XDG_MIME_MAGIC_EOF;
435           else
436             return XDG_MIME_MAGIC_ERROR;
437         }
438       c = getc_unlocked (magic_file);
439     }
440
441   if (c == '~')
442     {
443       matchlet->word_size = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
444       if (end_of_file)
445         {
446           _xdg_mime_magic_matchlet_free (matchlet);
447           return XDG_MIME_MAGIC_EOF;
448         }
449       if (matchlet->word_size != 0 &&
450           matchlet->word_size != 1 &&
451           matchlet->word_size != 2 &&
452           matchlet->word_size != 4)
453         {
454           _xdg_mime_magic_matchlet_free (matchlet);
455           return XDG_MIME_MAGIC_ERROR;
456         }
457       c = getc_unlocked (magic_file);
458     }
459
460   if (c == '+')
461     {
462       matchlet->range_length = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
463       if (end_of_file)
464         {
465           _xdg_mime_magic_matchlet_free (matchlet);
466           return XDG_MIME_MAGIC_EOF;
467         }
468       if (matchlet->range_length == -1)
469         {
470           _xdg_mime_magic_matchlet_free (matchlet);
471           return XDG_MIME_MAGIC_ERROR;
472         }
473       c = getc_unlocked (magic_file);
474     }
475
476
477   if (c == '\n')
478     {
479       /* We clean up the matchlet, byte swapping if needed */
480       if (matchlet->word_size > 1)
481         {
482 #if LITTLE_ENDIAN
483           int i;
484 #endif
485           if (matchlet->value_length % matchlet->word_size != 0)
486             {
487               _xdg_mime_magic_matchlet_free (matchlet);
488               return XDG_MIME_MAGIC_ERROR;
489             }
490           /* FIXME: need to get this defined in a <config.h> style file */
491 #if LITTLE_ENDIAN
492           for (i = 0; i < matchlet->value_length; i = i + matchlet->word_size)
493             {
494               if (matchlet->word_size == 2)
495                 *((xdg_uint16_t *) matchlet->value + i) = SWAP_BE16_TO_LE16 (*((xdg_uint16_t *) (matchlet->value + i)));
496               else if (matchlet->word_size == 4)
497                 *((xdg_uint32_t *) matchlet->value + i) = SWAP_BE32_TO_LE32 (*((xdg_uint32_t *) (matchlet->value + i)));
498               if (matchlet->mask)
499                 {
500                   if (matchlet->word_size == 2)
501                     *((xdg_uint16_t *) matchlet->mask + i) = SWAP_BE16_TO_LE16 (*((xdg_uint16_t *) (matchlet->mask + i)));
502                   else if (matchlet->word_size == 4)
503                     *((xdg_uint32_t *) matchlet->mask + i) = SWAP_BE32_TO_LE32 (*((xdg_uint32_t *) (matchlet->mask + i)));
504
505                 }
506             }
507 #endif
508         }
509
510       matchlet->next = match->matchlet;
511       match->matchlet = matchlet;
512
513
514       return XDG_MIME_MAGIC_MAGIC;
515     }
516
517   _xdg_mime_magic_matchlet_free (matchlet);
518   if (c == EOF)
519     return XDG_MIME_MAGIC_EOF;
520
521   return XDG_MIME_MAGIC_ERROR;
522 }
523
524 static int
525 _xdg_mime_magic_matchlet_compare_to_data (XdgMimeMagicMatchlet *matchlet,
526                                           const void           *data,
527                                           size_t                len)
528 {
529   int i, j;
530   for (i = matchlet->offset; i < matchlet->offset + matchlet->range_length; i++)
531     {
532       int valid_matchlet = TRUE;
533
534       if (i + matchlet->value_length > len)
535         return FALSE;
536
537       if (matchlet->mask)
538         {
539           for (j = 0; j < matchlet->value_length; j++)
540             {
541               if ((matchlet->value[j] & matchlet->mask[j]) !=
542                   ((((unsigned char *) data)[j + i]) & matchlet->mask[j]))
543                 {
544                   valid_matchlet = FALSE;
545                   break;
546                 }
547             }
548         }
549       else
550         {
551           for (j = 0; j <  matchlet->value_length; j++)
552             {
553               if (matchlet->value[j] != ((unsigned char *) data)[j + i])
554                 {
555                   valid_matchlet = FALSE;
556                   break;
557                 }
558             }
559         }
560       if (valid_matchlet)
561         return TRUE;
562     }
563   return FALSE;
564 }
565
566 static int
567 _xdg_mime_magic_matchlet_compare_level (XdgMimeMagicMatchlet *matchlet,
568                                         const void           *data,
569                                         size_t                len,
570                                         int                   indent)
571 {
572   while ((matchlet != NULL) && (matchlet->indent == indent))
573     {
574       if (_xdg_mime_magic_matchlet_compare_to_data (matchlet, data, len))
575         {
576           if ((matchlet->next == NULL) ||
577               (matchlet->next->indent <= indent))
578             return TRUE;
579
580           if (_xdg_mime_magic_matchlet_compare_level (matchlet->next,
581                                                       data,
582                                                       len,
583                                                       indent + 1))
584             return TRUE;
585         }
586
587       do
588         {
589           matchlet = matchlet->next;
590         }
591       while (matchlet && matchlet->indent > indent);
592     }
593
594   return FALSE;
595 }
596
597 static int
598 _xdg_mime_magic_match_compare_to_data (XdgMimeMagicMatch *match,
599                                        const void        *data,
600                                        size_t             len)
601 {
602   return _xdg_mime_magic_matchlet_compare_level (match->matchlet, data, len, 0);
603 }
604
605 static void
606 _xdg_mime_magic_insert_match (XdgMimeMagic      *mime_magic,
607                               XdgMimeMagicMatch *match)
608 {
609   XdgMimeMagicMatch *list;
610
611   if (mime_magic->match_list == NULL)
612     {
613       mime_magic->match_list = match;
614       return;
615     }
616
617   if (match->priority > mime_magic->match_list->priority)
618     {
619       match->next = mime_magic->match_list;
620       mime_magic->match_list = match;
621       return;
622     }
623
624   list = mime_magic->match_list;
625   while (list->next != NULL)
626     {
627       if (list->next->priority < match->priority)
628         {
629           match->next = list->next;
630           list->next = match;
631           return;
632         }
633       list = list->next;
634     }
635   list->next = match;
636   match->next = NULL;
637 }
638
639 XdgMimeMagic *
640 _xdg_mime_magic_new (void)
641 {
642   return calloc (1, sizeof (XdgMimeMagic));
643 }
644
645 void
646 _xdg_mime_magic_free (XdgMimeMagic *mime_magic)
647 {
648   if (mime_magic) {
649     _xdg_mime_magic_match_free (mime_magic->match_list);
650     free (mime_magic);
651   }
652 }
653
654 int
655 _xdg_mime_magic_get_buffer_extents (XdgMimeMagic *mime_magic)
656 {
657   return mime_magic->max_extent;
658 }
659
660 const char *
661 _xdg_mime_magic_lookup_data (XdgMimeMagic *mime_magic,
662                              const void   *data,
663                              size_t        len,
664                              int           *result_prio,
665                              const char   *mime_types[],
666                              int           n_mime_types)
667 {
668   XdgMimeMagicMatch *match;
669   const char *mime_type;
670   int n;
671   int prio;
672
673   prio = 0;
674   mime_type = NULL;
675   for (match = mime_magic->match_list; match; match = match->next)
676     {
677       if (_xdg_mime_magic_match_compare_to_data (match, data, len))
678         {
679           prio = match->priority;
680           mime_type = match->mime_type;
681           break;
682         }
683       else 
684         {
685           for (n = 0; n < n_mime_types; n++)
686             {
687               if (mime_types[n] && 
688                   _xdg_mime_mime_type_equal (mime_types[n], match->mime_type))
689                 mime_types[n] = NULL;
690             }
691         }
692     }
693
694   if (mime_type == NULL)
695     {
696       for (n = 0; n < n_mime_types; n++)
697         {
698           if (mime_types[n])
699             mime_type = mime_types[n];
700         }
701     }
702   
703   if (result_prio)
704     *result_prio = prio;
705
706   return mime_type;
707 }
708
709 static void
710 _xdg_mime_update_mime_magic_extents (XdgMimeMagic *mime_magic)
711 {
712   XdgMimeMagicMatch *match;
713   int max_extent = 0;
714
715   for (match = mime_magic->match_list; match; match = match->next)
716     {
717       XdgMimeMagicMatchlet *matchlet;
718
719       for (matchlet = match->matchlet; matchlet; matchlet = matchlet->next)
720         {
721           int extent;
722
723           extent = matchlet->value_length + matchlet->offset + matchlet->range_length;
724           if (max_extent < extent)
725             max_extent = extent;
726         }
727     }
728
729   mime_magic->max_extent = max_extent;
730 }
731
732 static XdgMimeMagicMatchlet *
733 _xdg_mime_magic_matchlet_mirror (XdgMimeMagicMatchlet *matchlets)
734 {
735   XdgMimeMagicMatchlet *new_list;
736   XdgMimeMagicMatchlet *tmp;
737
738   if ((matchlets == NULL) || (matchlets->next == NULL))
739     return matchlets;
740
741   new_list = NULL;
742   tmp = matchlets;
743   while (tmp != NULL)
744     {
745       XdgMimeMagicMatchlet *matchlet;
746
747       matchlet = tmp;
748       tmp = tmp->next;
749       matchlet->next = new_list;
750       new_list = matchlet;
751     }
752
753   return new_list;
754
755 }
756
757 static void
758 _xdg_mime_magic_read_magic_file (XdgMimeMagic *mime_magic,
759                                  FILE         *magic_file)
760 {
761   XdgMimeMagicState state;
762   XdgMimeMagicMatch *match = NULL; /* Quiet compiler */
763
764   state = XDG_MIME_MAGIC_SECTION;
765
766   while (state != XDG_MIME_MAGIC_EOF)
767     {
768       switch (state)
769         {
770         case XDG_MIME_MAGIC_SECTION:
771           match = _xdg_mime_magic_match_new ();
772           state = _xdg_mime_magic_parse_header (magic_file, match);
773           if (state == XDG_MIME_MAGIC_EOF || state == XDG_MIME_MAGIC_ERROR)
774             _xdg_mime_magic_match_free (match);
775           break;
776         case XDG_MIME_MAGIC_MAGIC:
777           state = _xdg_mime_magic_parse_magic_line (magic_file, match);
778           if (state == XDG_MIME_MAGIC_SECTION ||
779               (state == XDG_MIME_MAGIC_EOF && match->mime_type))
780             {
781               match->matchlet = _xdg_mime_magic_matchlet_mirror (match->matchlet);
782               _xdg_mime_magic_insert_match (mime_magic, match);
783             }
784           else if (state == XDG_MIME_MAGIC_EOF || state == XDG_MIME_MAGIC_ERROR)
785             _xdg_mime_magic_match_free (match);
786           break;
787         case XDG_MIME_MAGIC_ERROR:
788           state = _xdg_mime_magic_parse_error (magic_file);
789           break;
790         case XDG_MIME_MAGIC_EOF:
791         default:
792           /* Make the compiler happy */
793           assert (0);
794         }
795     }
796   _xdg_mime_update_mime_magic_extents (mime_magic);
797 }
798
799 void
800 _xdg_mime_magic_read_from_file (XdgMimeMagic *mime_magic,
801                                 const char   *file_name)
802 {
803   FILE *magic_file;
804   char header[12];
805
806   magic_file = fopen (file_name, "r");
807
808   if (magic_file == NULL)
809     return;
810
811   if (fread (header, 1, 12, magic_file) == 12)
812     {
813       if (memcmp ("MIME-Magic\0\n", header, 12) == 0)
814         _xdg_mime_magic_read_magic_file (mime_magic, magic_file);
815     }
816
817   fclose (magic_file);
818 }