1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
3 /* GIO - GLib Input, Output and Streaming Library
5 * Copyright (C) 2006-2007 Red Hat, Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 * Author: Alexander Larsson <alexl@redhat.com>
24 #include <sys/types.h>
28 #include "gcontenttypeprivate.h"
29 #include "gthemedicon.h"
32 #include "gfileenumerator.h"
33 #include "gfileinfo.h"
38 * SECTION:gcontenttype
39 * @short_description: Platform-specific content typing
42 * A content type is a platform specific string that defines the type
43 * of a file. On UNIX it is a
44 * [mime type](http://www.wikipedia.org/wiki/Internet_media_type)
45 * like "text/plain" or "image/png".
46 * On Win32 it is an extension string like ".doc", ".txt" or a perceived
47 * string like "audio". Such strings can be looked up in the registry at
49 * On OSX it is a [Uniform Type Identifier](https://en.wikipedia.org/wiki/Uniform_Type_Identifier)
50 * such as "com.apple.application".
55 #define XDG_PREFIX _gio_xdg
56 #include "xdgmime/xdgmime.h"
58 /* We lock this mutex whenever we modify global state in this module. */
59 G_LOCK_DEFINE_STATIC (gio_xdgmime
);
62 _g_unix_content_type_get_sniff_len (void)
67 size
= xdg_mime_get_max_buffer_extents ();
68 G_UNLOCK (gio_xdgmime
);
74 _g_unix_content_type_unalias (const gchar
*type
)
79 res
= g_strdup (xdg_mime_unalias_mime_type (type
));
80 G_UNLOCK (gio_xdgmime
);
86 _g_unix_content_type_get_parents (const gchar
*type
)
93 array
= g_ptr_array_new ();
97 umime
= xdg_mime_unalias_mime_type (type
);
99 g_ptr_array_add (array
, g_strdup (umime
));
101 parents
= xdg_mime_list_mime_parents (umime
);
102 for (i
= 0; parents
&& parents
[i
] != NULL
; i
++)
103 g_ptr_array_add (array
, g_strdup (parents
[i
]));
107 G_UNLOCK (gio_xdgmime
);
109 g_ptr_array_add (array
, NULL
);
111 return (gchar
**)g_ptr_array_free (array
, FALSE
);
115 * g_content_type_equals:
116 * @type1: a content type string
117 * @type2: a content type string
119 * Compares two content types for equality.
121 * Returns: %TRUE if the two strings are identical or equivalent,
125 g_content_type_equals (const gchar
*type1
,
130 g_return_val_if_fail (type1
!= NULL
, FALSE
);
131 g_return_val_if_fail (type2
!= NULL
, FALSE
);
133 G_LOCK (gio_xdgmime
);
134 res
= xdg_mime_mime_type_equal (type1
, type2
);
135 G_UNLOCK (gio_xdgmime
);
141 * g_content_type_is_a:
142 * @type: a content type string
143 * @supertype: a content type string
145 * Determines if @type is a subset of @supertype.
147 * Returns: %TRUE if @type is a kind of @supertype,
151 g_content_type_is_a (const gchar
*type
,
152 const gchar
*supertype
)
156 g_return_val_if_fail (type
!= NULL
, FALSE
);
157 g_return_val_if_fail (supertype
!= NULL
, FALSE
);
159 G_LOCK (gio_xdgmime
);
160 res
= xdg_mime_mime_type_subclass (type
, supertype
);
161 G_UNLOCK (gio_xdgmime
);
167 * g_content_type_is_mime_type:
168 * @type: a content type string
169 * @mime_type: a mime type string
171 * Determines if @type is a subset of @mime_type.
172 * Convenience wrapper around g_content_type_is_a().
174 * Returns: %TRUE if @type is a kind of @mime_type,
180 g_content_type_is_mime_type (const gchar
*type
,
181 const gchar
*mime_type
)
183 return g_content_type_is_a (type
, mime_type
);
187 * g_content_type_is_unknown:
188 * @type: a content type string
190 * Checks if the content type is the generic "unknown" type.
191 * On UNIX this is the "application/octet-stream" mimetype,
192 * while on win32 it is "*" and on OSX it is a dynamic type
195 * Returns: %TRUE if the type is the unknown type.
198 g_content_type_is_unknown (const gchar
*type
)
200 g_return_val_if_fail (type
!= NULL
, FALSE
);
202 return strcmp (XDG_MIME_TYPE_UNKNOWN
, type
) == 0;
208 MIME_TAG_TYPE_COMMENT
213 int current_lang_level
;
214 int comment_lang_level
;
220 language_level (const char *lang
)
222 const char * const *lang_list
;
225 /* The returned list is sorted from most desirable to least
226 desirable and always contains the default locale "C". */
227 lang_list
= g_get_language_names ();
229 for (i
= 0; lang_list
[i
]; i
++)
230 if (strcmp (lang_list
[i
], lang
) == 0)
237 mime_info_start_element (GMarkupParseContext
*context
,
238 const gchar
*element_name
,
239 const gchar
**attribute_names
,
240 const gchar
**attribute_values
,
246 MimeParser
*parser
= user_data
;
248 if (strcmp (element_name
, "comment") == 0)
251 for (i
= 0; attribute_names
[i
]; i
++)
252 if (strcmp (attribute_names
[i
], "xml:lang") == 0)
254 lang
= attribute_values
[i
];
258 parser
->current_lang_level
= language_level (lang
);
259 parser
->current_type
= MIME_TAG_TYPE_COMMENT
;
262 parser
->current_type
= MIME_TAG_TYPE_OTHER
;
266 mime_info_end_element (GMarkupParseContext
*context
,
267 const gchar
*element_name
,
271 MimeParser
*parser
= user_data
;
273 parser
->current_type
= MIME_TAG_TYPE_OTHER
;
277 mime_info_text (GMarkupParseContext
*context
,
283 MimeParser
*parser
= user_data
;
285 if (parser
->current_type
== MIME_TAG_TYPE_COMMENT
&&
286 parser
->current_lang_level
> parser
->comment_lang_level
)
288 g_free (parser
->comment
);
289 parser
->comment
= g_strndup (text
, text_len
);
290 parser
->comment_lang_level
= parser
->current_lang_level
;
295 load_comment_for_mime_helper (const char *dir
,
296 const char *basename
)
298 GMarkupParseContext
*context
;
299 char *filename
, *data
;
302 MimeParser parse_data
= {0};
303 GMarkupParser parser
= {
304 mime_info_start_element
,
305 mime_info_end_element
,
309 filename
= g_build_filename (dir
, "mime", basename
, NULL
);
311 res
= g_file_get_contents (filename
, &data
, &len
, NULL
);
316 context
= g_markup_parse_context_new (&parser
, 0, &parse_data
, NULL
);
317 res
= g_markup_parse_context_parse (context
, data
, len
, NULL
);
319 g_markup_parse_context_free (context
);
324 return parse_data
.comment
;
329 load_comment_for_mime (const char *mimetype
)
331 const char * const* dirs
;
336 basename
= g_strdup_printf ("%s.xml", mimetype
);
338 comment
= load_comment_for_mime_helper (g_get_user_data_dir (), basename
);
345 dirs
= g_get_system_data_dirs ();
347 for (i
= 0; dirs
[i
] != NULL
; i
++)
349 comment
= load_comment_for_mime_helper (dirs
[i
], basename
);
358 return g_strdup_printf (_("%s type"), mimetype
);
362 * g_content_type_get_description:
363 * @type: a content type string
365 * Gets the human readable description of the content type.
367 * Returns: a short description of the content type @type. Free the
368 * returned string with g_free()
371 g_content_type_get_description (const gchar
*type
)
373 static GHashTable
*type_comment_cache
= NULL
;
376 g_return_val_if_fail (type
!= NULL
, NULL
);
378 G_LOCK (gio_xdgmime
);
379 type
= xdg_mime_unalias_mime_type (type
);
381 if (type_comment_cache
== NULL
)
382 type_comment_cache
= g_hash_table_new_full (g_str_hash
, g_str_equal
, g_free
, g_free
);
384 comment
= g_hash_table_lookup (type_comment_cache
, type
);
385 comment
= g_strdup (comment
);
386 G_UNLOCK (gio_xdgmime
);
391 comment
= load_comment_for_mime (type
);
393 G_LOCK (gio_xdgmime
);
394 g_hash_table_insert (type_comment_cache
,
397 G_UNLOCK (gio_xdgmime
);
403 * g_content_type_get_mime_type:
404 * @type: a content type string
406 * Gets the mime type for the content type, if one is registered.
408 * Returns: (nullable) (transfer full): the registered mime type for the
409 * given @type, or %NULL if unknown; free with g_free().
412 g_content_type_get_mime_type (const char *type
)
414 g_return_val_if_fail (type
!= NULL
, NULL
);
416 return g_strdup (type
);
420 g_content_type_get_icon_internal (const gchar
*type
,
424 char *generic_mimetype_icon
= NULL
;
429 const char *xdg_icon
;
432 g_return_val_if_fail (type
!= NULL
, NULL
);
434 G_LOCK (gio_xdgmime
);
435 xdg_icon
= xdg_mime_get_icon (type
);
436 G_UNLOCK (gio_xdgmime
);
439 icon_names
[n
++] = g_strdup (xdg_icon
);
441 mimetype_icon
= g_strdup (type
);
442 while ((q
= strchr (mimetype_icon
, '/')) != NULL
)
445 icon_names
[n
++] = mimetype_icon
;
447 generic_mimetype_icon
= g_content_type_get_generic_icon_name (type
);
448 if (generic_mimetype_icon
)
449 icon_names
[n
++] = generic_mimetype_icon
;
453 for (i
= 0; i
< n
; i
++)
455 icon_names
[n
+ i
] = icon_names
[i
];
456 icon_names
[i
] = g_strconcat (icon_names
[i
], "-symbolic", NULL
);
462 themed_icon
= g_themed_icon_new_from_names (icon_names
, n
);
464 for (i
= 0; i
< n
; i
++)
465 g_free (icon_names
[i
]);
471 * g_content_type_get_icon:
472 * @type: a content type string
474 * Gets the icon for a content type.
476 * Returns: (transfer full): #GIcon corresponding to the content type. Free the returned
477 * object with g_object_unref()
480 g_content_type_get_icon (const gchar
*type
)
482 return g_content_type_get_icon_internal (type
, FALSE
);
486 * g_content_type_get_symbolic_icon:
487 * @type: a content type string
489 * Gets the symbolic icon for a content type.
491 * Returns: (transfer full): symbolic #GIcon corresponding to the content type.
492 * Free the returned object with g_object_unref()
497 g_content_type_get_symbolic_icon (const gchar
*type
)
499 return g_content_type_get_icon_internal (type
, TRUE
);
503 * g_content_type_get_generic_icon_name:
504 * @type: a content type string
506 * Gets the generic icon name for a content type.
509 * [shared-mime-info](http://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec)
510 * specification for more on the generic icon name.
512 * Returns: (nullable): the registered generic icon name for the given @type,
513 * or %NULL if unknown. Free with g_free()
518 g_content_type_get_generic_icon_name (const gchar
*type
)
520 const gchar
*xdg_icon_name
;
523 G_LOCK (gio_xdgmime
);
524 xdg_icon_name
= xdg_mime_get_generic_icon (type
);
525 G_UNLOCK (gio_xdgmime
);
530 const char *suffix
= "-x-generic";
532 p
= strchr (type
, '/');
534 p
= type
+ strlen (type
);
536 icon_name
= g_malloc (p
- type
+ strlen (suffix
) + 1);
537 memcpy (icon_name
, type
, p
- type
);
538 memcpy (icon_name
+ (p
- type
), suffix
, strlen (suffix
));
539 icon_name
[(p
- type
) + strlen (suffix
)] = 0;
543 icon_name
= g_strdup (xdg_icon_name
);
550 * g_content_type_can_be_executable:
551 * @type: a content type string
553 * Checks if a content type can be executable. Note that for instance
554 * things like text files can be executables (i.e. scripts and batch files).
556 * Returns: %TRUE if the file type corresponds to a type that
557 * can be executable, %FALSE otherwise.
560 g_content_type_can_be_executable (const gchar
*type
)
562 g_return_val_if_fail (type
!= NULL
, FALSE
);
564 if (g_content_type_is_a (type
, "application/x-executable") ||
565 g_content_type_is_a (type
, "text/plain"))
572 looks_like_text (const guchar
*data
, gsize data_size
)
577 for (i
= 0; i
< data_size
; i
++)
581 if (g_ascii_iscntrl (c
) &&
582 !g_ascii_isspace (c
) &&
590 * g_content_type_from_mime_type:
591 * @mime_type: a mime type string
593 * Tries to find a content type based on the mime type name.
595 * Returns: (nullable): Newly allocated string with content type or
596 * %NULL. Free with g_free()
601 g_content_type_from_mime_type (const gchar
*mime_type
)
605 g_return_val_if_fail (mime_type
!= NULL
, NULL
);
607 G_LOCK (gio_xdgmime
);
608 /* mime type and content type are same on unixes */
609 umime
= g_strdup (xdg_mime_unalias_mime_type (mime_type
));
610 G_UNLOCK (gio_xdgmime
);
616 * g_content_type_guess:
617 * @filename: (nullable): a string, or %NULL
618 * @data: (nullable) (array length=data_size): a stream of data, or %NULL
619 * @data_size: the size of @data
620 * @result_uncertain: (out) (optional): return location for the certainty
621 * of the result, or %NULL
623 * Guesses the content type based on example data. If the function is
624 * uncertain, @result_uncertain will be set to %TRUE. Either @filename
625 * or @data may be %NULL, in which case the guess will be based solely
626 * on the other argument.
628 * Returns: a string indicating a guessed content type for the
629 * given data. Free with g_free()
632 g_content_type_guess (const gchar
*filename
,
635 gboolean
*result_uncertain
)
638 const char *name_mimetypes
[10], *sniffed_mimetype
;
641 int n_name_mimetypes
;
645 n_name_mimetypes
= 0;
646 sniffed_mimetype
= XDG_MIME_TYPE_UNKNOWN
;
648 if (result_uncertain
)
649 *result_uncertain
= FALSE
;
651 /* our test suite and potentially other code used -1 in the past, which is
652 * not documented and not allowed; guard against that */
653 g_return_val_if_fail (data_size
!= (gsize
) -1, g_strdup (XDG_MIME_TYPE_UNKNOWN
));
655 G_LOCK (gio_xdgmime
);
659 i
= strlen (filename
);
660 if (filename
[i
- 1] == '/')
662 name_mimetypes
[0] = "inode/directory";
663 name_mimetypes
[1] = NULL
;
664 n_name_mimetypes
= 1;
665 if (result_uncertain
)
666 *result_uncertain
= TRUE
;
670 basename
= g_path_get_basename (filename
);
671 n_name_mimetypes
= xdg_mime_get_mime_types_from_file_name (basename
, name_mimetypes
, 10);
676 /* Got an extension match, and no conflicts. This is it. */
677 if (n_name_mimetypes
== 1)
679 gchar
*s
= g_strdup (name_mimetypes
[0]);
680 G_UNLOCK (gio_xdgmime
);
686 sniffed_mimetype
= xdg_mime_get_mime_type_for_data (data
, data_size
, &sniffed_prio
);
687 if (sniffed_mimetype
== XDG_MIME_TYPE_UNKNOWN
&&
689 looks_like_text (data
, data_size
))
690 sniffed_mimetype
= "text/plain";
692 /* For security reasons we don't ever want to sniff desktop files
693 * where we know the filename and it doesn't have a .desktop extension.
694 * This is because desktop files allow executing any application and
695 * we don't want to make it possible to hide them looking like something
698 if (filename
!= NULL
&&
699 strcmp (sniffed_mimetype
, "application/x-desktop") == 0)
700 sniffed_mimetype
= "text/plain";
703 if (n_name_mimetypes
== 0)
705 if (sniffed_mimetype
== XDG_MIME_TYPE_UNKNOWN
&&
707 *result_uncertain
= TRUE
;
709 mimetype
= g_strdup (sniffed_mimetype
);
714 if (sniffed_mimetype
!= XDG_MIME_TYPE_UNKNOWN
)
716 if (sniffed_prio
>= 80) /* High priority sniffing match, use that */
717 mimetype
= g_strdup (sniffed_mimetype
);
720 /* There are conflicts between the name matches and we
721 * have a sniffed type, use that as a tie breaker.
723 for (i
= 0; i
< n_name_mimetypes
; i
++)
725 if ( xdg_mime_mime_type_subclass (name_mimetypes
[i
], sniffed_mimetype
))
727 /* This nametype match is derived from (or the same as)
728 * the sniffed type). This is probably it.
730 mimetype
= g_strdup (name_mimetypes
[i
]);
737 if (mimetype
== NULL
)
739 /* Conflicts, and sniffed type was no help or not there.
740 * Guess on the first one
742 mimetype
= g_strdup (name_mimetypes
[0]);
743 if (result_uncertain
)
744 *result_uncertain
= TRUE
;
748 G_UNLOCK (gio_xdgmime
);
754 enumerate_mimetypes_subdir (const char *dir
,
756 GHashTable
*mimetypes
)
765 while ((ent
= readdir (d
)) != NULL
)
767 if (g_str_has_suffix (ent
->d_name
, ".xml"))
769 mimetype
= g_strdup_printf ("%s/%.*s", prefix
, (int) strlen (ent
->d_name
) - 4, ent
->d_name
);
770 g_hash_table_replace (mimetypes
, mimetype
, NULL
);
778 enumerate_mimetypes_dir (const char *dir
,
779 GHashTable
*mimetypes
)
786 mimedir
= g_build_filename (dir
, "mime", NULL
);
788 d
= opendir (mimedir
);
791 while ((ent
= readdir (d
)) != NULL
)
793 if (strcmp (ent
->d_name
, "packages") != 0)
795 name
= g_build_filename (mimedir
, ent
->d_name
, NULL
);
796 if (g_file_test (name
, G_FILE_TEST_IS_DIR
))
797 enumerate_mimetypes_subdir (name
, ent
->d_name
, mimetypes
);
808 * g_content_types_get_registered:
810 * Gets a list of strings containing all the registered content types
811 * known to the system. The list and its data should be freed using
812 * g_list_free_full (list, g_free).
814 * Returns: (element-type utf8) (transfer full): list of the registered
818 g_content_types_get_registered (void)
820 const char * const* dirs
;
821 GHashTable
*mimetypes
;
827 mimetypes
= g_hash_table_new_full (g_str_hash
, g_str_equal
, g_free
, NULL
);
829 enumerate_mimetypes_dir (g_get_user_data_dir (), mimetypes
);
830 dirs
= g_get_system_data_dirs ();
832 for (i
= 0; dirs
[i
] != NULL
; i
++)
833 enumerate_mimetypes_dir (dirs
[i
], mimetypes
);
836 g_hash_table_iter_init (&iter
, mimetypes
);
837 while (g_hash_table_iter_next (&iter
, &key
, NULL
))
839 l
= g_list_prepend (l
, key
);
840 g_hash_table_iter_steal (&iter
);
843 g_hash_table_destroy (mimetypes
);
849 /* tree magic data */
850 static GList
*tree_matches
= NULL
;
851 static gboolean need_reload
= FALSE
;
853 G_LOCK_DEFINE_STATIC (gio_treemagic
);
859 guint match_case
: 1;
860 guint executable
: 1;
876 tree_matchlet_free (TreeMatchlet
*matchlet
)
878 g_list_free_full (matchlet
->matches
, (GDestroyNotify
) tree_matchlet_free
);
879 g_free (matchlet
->path
);
880 g_free (matchlet
->mimetype
);
881 g_slice_free (TreeMatchlet
, matchlet
);
885 tree_match_free (TreeMatch
*match
)
887 g_list_free_full (match
->matches
, (GDestroyNotify
) tree_matchlet_free
);
888 g_free (match
->contenttype
);
889 g_slice_free (TreeMatch
, match
);
893 parse_header (gchar
*line
)
901 if (line
[0] != '[' || line
[len
- 1] != ']')
905 s
= strchr (line
, ':');
907 match
= g_slice_new0 (TreeMatch
);
908 match
->priority
= atoi (line
+ 1);
909 match
->contenttype
= g_strdup (s
+ 1);
914 static TreeMatchlet
*
915 parse_match_line (gchar
*line
,
919 TreeMatchlet
*matchlet
;
923 matchlet
= g_slice_new0 (TreeMatchlet
);
932 *depth
= atoi (line
);
933 s
= strchr (line
, '>');
939 matchlet
->path
= g_strdup (s
);
941 parts
= g_strsplit (s
, ",", 0);
942 if (strcmp (parts
[0], "=file") == 0)
943 matchlet
->type
= G_FILE_TYPE_REGULAR
;
944 else if (strcmp (parts
[0], "=directory") == 0)
945 matchlet
->type
= G_FILE_TYPE_DIRECTORY
;
946 else if (strcmp (parts
[0], "=link") == 0)
947 matchlet
->type
= G_FILE_TYPE_SYMBOLIC_LINK
;
949 matchlet
->type
= G_FILE_TYPE_UNKNOWN
;
950 for (i
= 1; parts
[i
]; i
++)
952 if (strcmp (parts
[i
], "executable") == 0)
953 matchlet
->executable
= 1;
954 else if (strcmp (parts
[i
], "match-case") == 0)
955 matchlet
->match_case
= 1;
956 else if (strcmp (parts
[i
], "non-empty") == 0)
957 matchlet
->non_empty
= 1;
958 else if (strcmp (parts
[i
], "on-disc") == 0)
959 matchlet
->on_disc
= 1;
961 matchlet
->mimetype
= g_strdup (parts
[i
]);
970 cmp_match (gconstpointer a
, gconstpointer b
)
972 const TreeMatch
*aa
= (const TreeMatch
*)a
;
973 const TreeMatch
*bb
= (const TreeMatch
*)b
;
975 return bb
->priority
- aa
->priority
;
979 insert_match (TreeMatch
*match
)
981 tree_matches
= g_list_insert_sorted (tree_matches
, match
, cmp_match
);
985 insert_matchlet (TreeMatch
*match
,
986 TreeMatchlet
*matchlet
,
990 match
->matches
= g_list_append (match
->matches
, matchlet
);
996 last
= g_list_last (match
->matches
);
999 tree_matchlet_free (matchlet
);
1000 g_warning ("can't insert tree matchlet at depth %d", depth
);
1004 m
= (TreeMatchlet
*) last
->data
;
1007 last
= g_list_last (m
->matches
);
1010 tree_matchlet_free (matchlet
);
1011 g_warning ("can't insert tree matchlet at depth %d", depth
);
1015 m
= (TreeMatchlet
*) last
->data
;
1017 m
->matches
= g_list_append (m
->matches
, matchlet
);
1022 read_tree_magic_from_directory (const gchar
*prefix
)
1030 TreeMatchlet
*matchlet
;
1033 filename
= g_build_filename (prefix
, "mime", "treemagic", NULL
);
1035 if (g_file_get_contents (filename
, &text
, &len
, NULL
))
1037 if (strcmp (text
, "MIME-TreeMagic") == 0)
1039 lines
= g_strsplit (text
+ strlen ("MIME-TreeMagic") + 2, "\n", 0);
1041 for (i
= 0; lines
[i
] && lines
[i
][0]; i
++)
1043 if (lines
[i
][0] == '[')
1045 match
= parse_header (lines
[i
]);
1046 insert_match (match
);
1048 else if (match
!= NULL
)
1050 matchlet
= parse_match_line (lines
[i
], &depth
);
1051 insert_matchlet (match
, matchlet
, depth
);
1055 g_warning ("%s: header corrupt; skipping", filename
);
1063 g_warning ("%s: header not found, skipping", filename
);
1073 xdg_mime_reload (void *user_data
)
1079 tree_magic_shutdown (void)
1081 g_list_free_full (tree_matches
, (GDestroyNotify
) tree_match_free
);
1082 tree_matches
= NULL
;
1086 tree_magic_init (void)
1088 static gboolean initialized
= FALSE
;
1090 const gchar
* const * dirs
;
1097 xdg_mime_register_reload_callback (xdg_mime_reload
, NULL
, NULL
);
1103 need_reload
= FALSE
;
1105 tree_magic_shutdown ();
1107 dir
= g_get_user_data_dir ();
1108 read_tree_magic_from_directory (dir
);
1109 dirs
= g_get_system_data_dirs ();
1110 for (i
= 0; dirs
[i
]; i
++)
1111 read_tree_magic_from_directory (dirs
[i
]);
1115 /* a filtering enumerator */
1121 gboolean ignore_case
;
1123 gchar
**case_components
;
1124 GFileEnumerator
**enumerators
;
1129 component_match (Enumerator
*e
,
1133 gchar
*case_folded
, *key
;
1136 if (strcmp (name
, e
->components
[depth
]) == 0)
1139 if (!e
->ignore_case
)
1142 case_folded
= g_utf8_casefold (name
, -1);
1143 key
= g_utf8_collate_key (case_folded
, -1);
1145 found
= strcmp (key
, e
->case_components
[depth
]) == 0;
1147 g_free (case_folded
);
1154 next_match_recurse (Enumerator
*e
,
1163 if (e
->enumerators
[depth
] == NULL
)
1167 file
= next_match_recurse (e
, depth
- 1);
1170 e
->children
[depth
] = file
;
1171 e
->enumerators
[depth
] = g_file_enumerate_children (file
,
1172 G_FILE_ATTRIBUTE_STANDARD_NAME
,
1173 G_FILE_QUERY_INFO_NONE
,
1178 if (e
->enumerators
[depth
] == NULL
)
1182 while ((info
= g_file_enumerator_next_file (e
->enumerators
[depth
], NULL
, NULL
)))
1184 name
= g_file_info_get_name (info
);
1185 if (component_match (e
, depth
, name
))
1187 file
= g_file_get_child (e
->children
[depth
], name
);
1188 g_object_unref (info
);
1191 g_object_unref (info
);
1194 g_object_unref (e
->enumerators
[depth
]);
1195 e
->enumerators
[depth
] = NULL
;
1196 g_object_unref (e
->children
[depth
]);
1197 e
->children
[depth
] = NULL
;
1202 enumerator_next (Enumerator
*e
)
1204 return next_match_recurse (e
, e
->depth
- 1);
1208 enumerator_new (GFile
*root
,
1210 gboolean ignore_case
)
1216 e
= g_new0 (Enumerator
, 1);
1217 e
->path
= g_strdup (path
);
1218 e
->ignore_case
= ignore_case
;
1220 e
->components
= g_strsplit (e
->path
, G_DIR_SEPARATOR_S
, -1);
1221 e
->depth
= g_strv_length (e
->components
);
1224 e
->case_components
= g_new0 (char *, e
->depth
+ 1);
1225 for (i
= 0; e
->components
[i
]; i
++)
1227 case_folded
= g_utf8_casefold (e
->components
[i
], -1);
1228 e
->case_components
[i
] = g_utf8_collate_key (case_folded
, -1);
1229 g_free (case_folded
);
1233 e
->children
= g_new0 (GFile
*, e
->depth
);
1234 e
->children
[0] = g_object_ref (root
);
1235 e
->enumerators
= g_new0 (GFileEnumerator
*, e
->depth
);
1236 e
->enumerators
[0] = g_file_enumerate_children (root
,
1237 G_FILE_ATTRIBUTE_STANDARD_NAME
,
1238 G_FILE_QUERY_INFO_NONE
,
1246 enumerator_free (Enumerator
*e
)
1250 for (i
= 0; i
< e
->depth
; i
++)
1252 if (e
->enumerators
[i
])
1253 g_object_unref (e
->enumerators
[i
]);
1255 g_object_unref (e
->children
[i
]);
1258 g_free (e
->enumerators
);
1259 g_free (e
->children
);
1260 g_strfreev (e
->components
);
1261 if (e
->case_components
)
1262 g_strfreev (e
->case_components
);
1268 matchlet_match (TreeMatchlet
*matchlet
,
1278 e
= enumerator_new (root
, matchlet
->path
, !matchlet
->match_case
);
1282 file
= enumerator_next (e
);
1285 enumerator_free (e
);
1289 if (matchlet
->mimetype
)
1290 attrs
= G_FILE_ATTRIBUTE_STANDARD_TYPE
","
1291 G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE
","
1292 G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE
;
1294 attrs
= G_FILE_ATTRIBUTE_STANDARD_TYPE
","
1295 G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE
;
1296 info
= g_file_query_info (file
,
1298 G_FILE_QUERY_INFO_NONE
,
1305 if (matchlet
->type
!= G_FILE_TYPE_UNKNOWN
&&
1306 g_file_info_get_file_type (info
) != matchlet
->type
)
1309 if (matchlet
->executable
&&
1310 !g_file_info_get_attribute_boolean (info
, G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE
))
1316 if (result
&& matchlet
->non_empty
)
1318 GFileEnumerator
*child_enum
;
1319 GFileInfo
*child_info
;
1321 child_enum
= g_file_enumerate_children (file
,
1322 G_FILE_ATTRIBUTE_STANDARD_NAME
,
1323 G_FILE_QUERY_INFO_NONE
,
1329 child_info
= g_file_enumerator_next_file (child_enum
, NULL
, NULL
);
1331 g_object_unref (child_info
);
1334 g_object_unref (child_enum
);
1340 if (result
&& matchlet
->mimetype
)
1342 if (strcmp (matchlet
->mimetype
, g_file_info_get_content_type (info
)) != 0)
1347 g_object_unref (info
);
1348 g_object_unref (file
);
1352 enumerator_free (e
);
1354 if (!matchlet
->matches
)
1357 for (l
= matchlet
->matches
; l
; l
= l
->next
)
1359 TreeMatchlet
*submatchlet
;
1361 submatchlet
= l
->data
;
1362 if (matchlet_match (submatchlet
, root
))
1370 match_match (TreeMatch
*match
,
1376 for (l
= match
->matches
; l
; l
= l
->next
)
1378 TreeMatchlet
*matchlet
= l
->data
;
1379 if (matchlet_match (matchlet
, root
))
1381 g_ptr_array_add (types
, g_strdup (match
->contenttype
));
1388 * g_content_type_guess_for_tree:
1389 * @root: the root of the tree to guess a type for
1391 * Tries to guess the type of the tree with root @root, by
1392 * looking at the files it contains. The result is an array
1393 * of content types, with the best guess coming first.
1395 * The types returned all have the form x-content/foo, e.g.
1396 * x-content/audio-cdda (for audio CDs) or x-content/image-dcf
1397 * (for a camera memory card). See the
1398 * [shared-mime-info](http://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec)
1399 * specification for more on x-content types.
1401 * This function is useful in the implementation of
1402 * g_mount_guess_content_type().
1404 * Returns: (transfer full) (array zero-terminated=1): an %NULL-terminated
1405 * array of zero or more content types. Free with g_strfreev()
1410 g_content_type_guess_for_tree (GFile
*root
)
1415 types
= g_ptr_array_new ();
1417 G_LOCK (gio_treemagic
);
1420 for (l
= tree_matches
; l
; l
= l
->next
)
1422 TreeMatch
*match
= l
->data
;
1423 match_match (match
, root
, types
);
1426 G_UNLOCK (gio_treemagic
);
1428 g_ptr_array_add (types
, NULL
);
1430 return (gchar
**)g_ptr_array_free (types
, FALSE
);