[kdbus] KDBUS_ITEM_PAYLOAD_OFF items are (once again) relative to msg header
[platform/upstream/glib.git] / gio / gcontenttype-win32.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
3 /* GIO - GLib Input, Output and Streaming Library
4  *
5  * Copyright (C) 2006-2007 Red Hat, Inc.
6  *
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 of the License, or (at your option) any later version.
11  *
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.
16  *
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/>.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include "config.h"
24 #include <sys/types.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdio.h>
28 #include "gcontenttype.h"
29 #include "gthemedicon.h"
30 #include "gicon.h"
31 #include "glibintl.h"
32
33 #include <windows.h>
34
35 static char *
36 get_registry_classes_key (const char    *subdir,
37                           const wchar_t *key_name)
38 {
39   wchar_t *wc_key;
40   HKEY reg_key = NULL;
41   DWORD key_type;
42   DWORD nbytes;
43   char *value_utf8;
44
45   value_utf8 = NULL;
46   
47   nbytes = 0;
48   wc_key = g_utf8_to_utf16 (subdir, -1, NULL, NULL, NULL);
49   if (RegOpenKeyExW (HKEY_CLASSES_ROOT, wc_key, 0,
50                      KEY_QUERY_VALUE, &reg_key) == ERROR_SUCCESS &&
51       RegQueryValueExW (reg_key, key_name, 0,
52                         &key_type, NULL, &nbytes) == ERROR_SUCCESS &&
53       (key_type == REG_SZ || key_type == REG_EXPAND_SZ))
54     {
55       wchar_t *wc_temp = g_new (wchar_t, (nbytes+1)/2 + 1);
56       RegQueryValueExW (reg_key, key_name, 0,
57                         &key_type, (LPBYTE) wc_temp, &nbytes);
58       wc_temp[nbytes/2] = '\0';
59       if (key_type == REG_EXPAND_SZ)
60         {
61           wchar_t dummy[1];
62           int len = ExpandEnvironmentStringsW (wc_temp, dummy, 1);
63           if (len > 0)
64             {
65               wchar_t *wc_temp_expanded = g_new (wchar_t, len);
66               if (ExpandEnvironmentStringsW (wc_temp, wc_temp_expanded, len) == len)
67                 value_utf8 = g_utf16_to_utf8 (wc_temp_expanded, -1, NULL, NULL, NULL);
68               g_free (wc_temp_expanded);
69             }
70         }
71       else
72         {
73           value_utf8 = g_utf16_to_utf8 (wc_temp, -1, NULL, NULL, NULL);
74         }
75       g_free (wc_temp);
76       
77     }
78   g_free (wc_key);
79   
80   if (reg_key != NULL)
81     RegCloseKey (reg_key);
82
83   return value_utf8;
84 }
85
86 gboolean
87 g_content_type_equals (const gchar *type1,
88                        const gchar *type2)
89 {
90   char *progid1, *progid2;
91   gboolean res;
92   
93   g_return_val_if_fail (type1 != NULL, FALSE);
94   g_return_val_if_fail (type2 != NULL, FALSE);
95
96   if (g_ascii_strcasecmp (type1, type2) == 0)
97     return TRUE;
98
99   res = FALSE;
100   progid1 = get_registry_classes_key (type1, NULL);
101   progid2 = get_registry_classes_key (type2, NULL);
102   if (progid1 != NULL && progid2 != NULL &&
103       strcmp (progid1, progid2) == 0)
104     res = TRUE;
105   g_free (progid1);
106   g_free (progid2);
107   
108   return res;
109 }
110
111 gboolean
112 g_content_type_is_a (const gchar *type,
113                      const gchar *supertype)
114 {
115   gboolean res;
116   char *value_utf8;
117
118   g_return_val_if_fail (type != NULL, FALSE);
119   g_return_val_if_fail (supertype != NULL, FALSE);
120
121   if (g_content_type_equals (type, supertype))
122     return TRUE;
123
124   res = FALSE;
125   value_utf8 = get_registry_classes_key (type, L"PerceivedType");
126   if (value_utf8 && strcmp (value_utf8, supertype) == 0)
127     res = TRUE;
128   g_free (value_utf8);
129   
130   return res;
131 }
132
133 gboolean
134 g_content_type_is_unknown (const gchar *type)
135 {
136   g_return_val_if_fail (type != NULL, FALSE);
137
138   return strcmp ("*", type) == 0;
139 }
140
141 gchar *
142 g_content_type_get_description (const gchar *type)
143 {
144   char *progid;
145   char *description;
146
147   g_return_val_if_fail (type != NULL, NULL);
148
149   progid = get_registry_classes_key (type, NULL);
150   if (progid)
151     {
152       description = get_registry_classes_key (progid, NULL);
153       g_free (progid);
154
155       if (description)
156         return description;
157     }
158
159   if (g_content_type_is_unknown (type))
160     return g_strdup (_("Unknown type"));
161   return g_strdup_printf (_("%s filetype"), type);
162 }
163
164 gchar *
165 g_content_type_get_mime_type (const gchar *type)
166 {
167   char *mime;
168
169   g_return_val_if_fail (type != NULL, NULL);
170
171   mime = get_registry_classes_key (type, L"Content Type");
172   if (mime)
173     return mime;
174   else if (g_content_type_is_unknown (type))
175     return g_strdup ("application/octet-stream");
176   else if (*type == '.')
177     return g_strdup_printf ("application/x-ext-%s", type+1);
178   /* TODO: Map "image" to "image/ *", etc? */
179
180   return g_strdup ("application/octet-stream");
181 }
182
183 G_LOCK_DEFINE_STATIC (_type_icons);
184 static GHashTable *_type_icons = NULL;
185
186 GIcon *
187 g_content_type_get_icon (const gchar *type)
188 {
189   GIcon *themed_icon;
190   char *name = NULL;
191
192   g_return_val_if_fail (type != NULL, NULL);
193
194   /* In the Registry icons are the default value of
195      HKEY_CLASSES_ROOT\<progid>\DefaultIcon with typical values like:
196      <type>: <value>
197      REG_EXPAND_SZ: %SystemRoot%\System32\Wscript.exe,3
198      REG_SZ: shimgvw.dll,3
199   */
200   G_LOCK (_type_icons);
201   if (!_type_icons)
202     _type_icons = g_hash_table_new (g_str_hash, g_str_equal);
203   name = g_hash_table_lookup (_type_icons, type);
204   if (!name && type[0] == '.')
205     {
206       /* double lookup by extension */
207       gchar *key = get_registry_classes_key (type, NULL);
208       if (!key)
209         key = g_strconcat (type+1, "file\\DefaultIcon", NULL);
210       else
211         {
212           gchar *key2 = g_strconcat (key, "\\DefaultIcon", NULL);
213           g_free (key);
214           key = key2;
215         }
216       name = get_registry_classes_key (key, NULL);
217       if (name && strcmp (name, "%1") == 0)
218         {
219           g_free (name);
220           name = NULL;
221         }
222       if (name)
223         g_hash_table_insert (_type_icons, g_strdup (type), g_strdup (name));
224       g_free (key);
225     }
226
227   /* icon-name similar to how it was with gtk-2-12 */
228   if (name)
229     {
230       themed_icon = g_themed_icon_new (name);
231     }
232   else
233     {
234       /* if not found an icon fall back to gtk-builtins */
235       name = strcmp (type, "inode/directory") == 0 ? "gtk-directory" : 
236                            g_content_type_can_be_executable (type) ? "gtk-execute" : "gtk-file";
237       g_hash_table_insert (_type_icons, g_strdup (type), g_strdup (name));
238       themed_icon = g_themed_icon_new_with_default_fallbacks (name);
239     }
240   G_UNLOCK (_type_icons);
241
242   return G_ICON (themed_icon);
243 }
244
245 GIcon *
246 g_content_type_get_symbolic_icon (const gchar *type)
247 {
248   return g_content_type_get_icon (type);
249 }
250
251 gchar *
252 g_content_type_get_generic_icon_name (const gchar *type)
253 {
254   return NULL;
255 }
256
257 gboolean
258 g_content_type_can_be_executable (const gchar *type)
259 {
260   g_return_val_if_fail (type != NULL, FALSE);
261
262   if (strcmp (type, ".exe") == 0 ||
263       strcmp (type, ".com") == 0 ||
264       strcmp (type, ".bat") == 0)
265     return TRUE;
266
267   /* TODO: Also look at PATHEXT, which lists the extensions for
268    * "scripts" in addition to those for true binary executables.
269    *
270    * (PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH for me
271    * right now, for instance). And in a sense, all associated file
272    * types are "executable" on Windows... You can just type foo.jpg as
273    * a command name in cmd.exe, and it will run the application
274    * associated with .jpg. Hard to say what this API actually means
275    * with "executable".
276    */
277
278   return FALSE;
279 }
280
281 static gboolean
282 looks_like_text (const guchar *data, 
283                  gsize         data_size)
284 {
285   gsize i;
286   guchar c;
287   for (i = 0; i < data_size; i++)
288     {
289       c = data[i];
290       if (g_ascii_iscntrl (c) && !g_ascii_isspace (c) && c != '\b')
291         return FALSE;
292     }
293   return TRUE;
294 }
295
296 gchar *
297 g_content_type_from_mime_type (const gchar *mime_type)
298 {
299   char *key, *content_type;
300
301   g_return_val_if_fail (mime_type != NULL, NULL);
302
303   key = g_strconcat ("MIME\\DataBase\\Content Type\\", mime_type, NULL);
304   content_type = get_registry_classes_key (key, L"Extension");
305   g_free (key);
306
307   return content_type;
308 }
309
310 gchar *
311 g_content_type_guess (const gchar  *filename,
312                       const guchar *data,
313                       gsize         data_size,
314                       gboolean     *result_uncertain)
315 {
316   char *basename;
317   char *type;
318   char *dot;
319
320   type = NULL;
321
322   if (result_uncertain)
323     *result_uncertain = FALSE;
324
325   /* our test suite and potentially other code used -1 in the past, which is
326    * not documented and not allowed; guard against that */
327   g_return_val_if_fail (data_size != (gsize) -1, g_strdup ("*"));
328
329   if (filename)
330     {
331       basename = g_path_get_basename (filename);
332       dot = strrchr (basename, '.');
333       if (dot)
334         type = g_strdup (dot);
335       g_free (basename);
336     }
337
338   if (type)
339     return type;
340
341   if (data && looks_like_text (data, data_size))
342     return g_strdup (".txt");
343
344   return g_strdup ("*");
345 }
346
347 GList *
348 g_content_types_get_registered (void)
349 {
350   DWORD index;
351   wchar_t keyname[256];
352   DWORD key_len;
353   char *key_utf8;
354   GList *types;
355
356   types = NULL;
357   index = 0;
358   key_len = 256;
359   while (RegEnumKeyExW(HKEY_CLASSES_ROOT,
360                        index,
361                        keyname,
362                        &key_len,
363                        NULL,
364                        NULL,
365                        NULL,
366                        NULL) == ERROR_SUCCESS)
367     {
368       key_utf8 = g_utf16_to_utf8 (keyname, -1, NULL, NULL, NULL);
369       if (key_utf8)
370         {
371           if (*key_utf8 == '.')
372             types = g_list_prepend (types, key_utf8);
373           else
374             g_free (key_utf8);
375         }
376       index++;
377       key_len = 256;
378     }
379   
380   return g_list_reverse (types);
381 }
382
383 gchar **
384 g_content_type_guess_for_tree (GFile *root)
385 {
386   /* FIXME: implement */
387   return NULL;
388 }