2 * wmmenugen - Window Maker PropList menu generator
4 * Desktop Entry Specification parser functions
6 * Copyright (c) 2010. Tamas Tevesz <ice@extreme.hu>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-1.1.html
25 * http://standards.freedesktop.org/menu-spec/menu-spec-1.1.html
27 * We will only deal with Type == "Application" entries in [Desktop Entry]
28 * groups. Since there is no passing of file name arguments or anything of
29 * the sort to applications from the menu, execname is determined as follows:
30 * - If `TryExec' is present, use that;
31 * - else use `Exec' with any switches stripped
33 * Only the (first, though there should not be more than one) `Main Category'
34 * is used to place the entry in a submenu.
36 * Basic validation of the .desktop file is done.
39 #include <sys/types.h>
51 #include "wmmenugen.h"
53 /* LocaleString match levels */
59 MATCH_LANG_COUNTRY_MODIFIER
63 char *Name
; /* Name */ /* localestring */
64 int MatchLevel
; /* LocaleString match type */ /* int */
65 char *TryExec
; /* TryExec */ /* string */
66 char *Exec
; /* Exec */ /* string */
67 char *Path
; /* Path */ /* string */
68 int Flags
; /* Flags */
69 char *Category
; /* Categories (first item only) */ /* string */
72 static void getKey(char **target
, const char *line
);
73 static void getStringValue(char **target
, const char *line
);
74 static void getLocalizedStringValue(char **target
, const char *line
, int *match_level
);
75 static int getBooleanValue(const char *line
);
76 static void getMenuHierarchyFor(char **xdgmenuspec
);
77 static int compare_matchlevel(int *current_level
, const char *found_locale
);
78 static Bool
xdg_to_wm(XDGMenuEntry
**xdg
, WMMenuEntry
**wmentry
);
79 static void init_xdg_storage(XDGMenuEntry
**xdg
);
80 static void init_wm_storage(WMMenuEntry
**wm
);
82 void parse_xdg(const char *file
, void (*addWMMenuEntryCallback
)(WMMenuEntry
*aEntry
))
91 fp
= fopen(file
, "r");
94 fprintf(stderr
, "Error opening file %s: %s\n", file
, strerror(errno
));
99 xdg
= (XDGMenuEntry
*)wmalloc(sizeof(XDGMenuEntry
));
100 wm
= (WMMenuEntry
*)wmalloc(sizeof(WMMenuEntry
));
102 memset(buf
, 0, sizeof(buf
));
104 while (fgets(buf
, sizeof(buf
), fp
)) {
108 /* skip whitespaces */
111 /* skip comments, empty lines */
112 if (*p
== '\r' || *p
== '\n' || *p
== '#') {
113 memset(buf
, 0, sizeof(buf
));
117 buf
[strcspn(buf
, "\r\n")] = '\0';
118 if (strlen(buf
) == 0)
121 if (strcmp(p
, "[Desktop Entry]") == 0) {
122 /* if currently processing a group, we've just hit the
123 * end of its definition, try processing it
125 if (InGroup
&& xdg_to_wm(&xdg
, &wm
)) {
126 (*addWMMenuEntryCallback
)(wm
);
128 init_xdg_storage(&xdg
);
129 init_wm_storage(&wm
);
131 /* start processing group */
132 memset(buf
, 0, sizeof(buf
));
137 memset(buf
, 0, sizeof(buf
));
142 if (key
== NULL
) { /* not `key' = `value' */
143 memset(buf
, 0, sizeof(buf
));
147 if (strcmp(key
, "Type") == 0) {
148 getStringValue(&tmp
, p
);
149 if (strcmp(tmp
, "Application") != 0)
150 InGroup
= 0; /* if not application, skip current group */
153 } else if (strcmp(key
, "Name") == 0) {
154 getLocalizedStringValue(&xdg
->Name
, p
, &xdg
->MatchLevel
);
155 } else if (strcmp(key
, "NoDisplay") == 0) {
156 if (getBooleanValue(p
)) /* if nodisplay, skip current group */
158 } else if (strcmp(key
, "Hidden") == 0) {
159 if (getBooleanValue(p
))
160 InGroup
= 0; /* if hidden, skip current group */
161 } else if (strcmp(key
, "TryExec") == 0) {
162 getStringValue(&xdg
->TryExec
, p
);
163 } else if (strcmp(key
, "Exec") == 0) {
164 getStringValue(&xdg
->Exec
, p
);
165 } else if (strcmp(key
, "Path") == 0) {
166 getStringValue(&xdg
->Path
, p
);
167 } else if (strcmp(key
, "Terminal") == 0) {
168 if (getBooleanValue(p
))
169 xdg
->Flags
|= F_TERMINAL
;
170 } else if (strcmp(key
, "Categories") == 0) {
171 getStringValue(&xdg
->Category
, p
);
172 getMenuHierarchyFor(&xdg
->Category
);
181 /* at the end of the file, might as well try to menuize what we have
182 * unless there was no group at all or it was marked as hidden
184 if (InGroup
&& xdg_to_wm(&xdg
, &wm
))
185 (*addWMMenuEntryCallback
)(wm
);
190 /* coerce an xdg entry type into a wm entry type
192 static Bool
xdg_to_wm(XDGMenuEntry
**xdg
, WMMenuEntry
**wm
)
196 /* Exec or TryExec is mandatory */
197 if (!((*xdg
)->Exec
|| (*xdg
)->TryExec
))
200 /* if there's no Name, use the first word of Exec or TryExec
203 (*wm
)->Name
= (*xdg
)->Name
;
206 (*wm
)->Name
= wstrdup((*xdg
)->Exec
);
207 else /* (*xdg)->TryExec */
208 (*wm
)->Name
= wstrdup((*xdg
)->TryExec
);
210 p
= strchr((*wm
)->Name
, ' ');
216 (*wm
)->CmdLine
= (*xdg
)->Exec
;
217 else /* (*xdg)->TryExec */
218 (*wm
)->CmdLine
= (*xdg
)->TryExec
;
220 (*wm
)->SubMenu
= (*xdg
)->Category
;
221 (*wm
)->Flags
= (*xdg
)->Flags
;
226 /* (re-)initialize a XDGMenuEntry storage
228 static void init_xdg_storage(XDGMenuEntry
**xdg
)
234 wfree((*xdg
)->TryExec
);
237 if ((*xdg
)->Category
)
238 wfree((*xdg
)->Category
);
243 (*xdg
)->TryExec
= NULL
;
245 (*xdg
)->Category
= NULL
;
248 (*xdg
)->MatchLevel
= -1;
251 /* (re-)initialize a WMMenuEntry storage
253 static void init_wm_storage(WMMenuEntry
**wm
)
256 (*wm
)->CmdLine
= NULL
;
260 /* get a key from line. allocates target, which must be wfreed later */
261 static void getKey(char **target
, const char *line
)
268 if (strchr(p
, '=') == NULL
) { /* not `key' = `value' */
275 /* skip whitespace */
276 while (isspace(*(p
+ kstart
)))
279 /* skip up until first whitespace or '[' (localestring) or '=' */
281 while (*(p
+ kend
) && !isspace(*(p
+ kend
)) && *(p
+ kend
) != '=' && *(p
+ kend
) != '[')
284 *target
= wstrndup(p
+ kstart
, kend
- kstart
);
287 /* get a string value from line. allocates target, which must be wfreed later. */
288 static void getStringValue(char **target
, const char *line
)
296 /* skip until after '=' */
297 while (*(p
+ kstart
) && *(p
+ kstart
) != '=')
301 /* skip whitespace */
302 while (*(p
+ kstart
) && isspace(*(p
+ kstart
)))
305 *target
= wstrdup(p
+ kstart
);
308 /* get a localized string value from line. allocates target, which must be wfreed later.
309 * matching is dependent on the current value of target as well as on the
310 * level the current value is matched on. guts matching algorithm is in
311 * compare_matchlevel().
313 static void getLocalizedStringValue(char **target
, const char *line
, int *match_level
)
318 int sqbstart
, sqbend
;
326 /* skip until after '=', mark if '[' and ']' is found */
327 while (*(p
+ kstart
) && *(p
+ kstart
) != '=') {
328 switch (*(p
+ kstart
)) {
329 case '[': sqbstart
= kstart
+ 1;break;
330 case ']': sqbend
= kstart
; break;
337 /* skip whitespace */
338 while (isspace(*(p
+ kstart
)))
341 if (sqbstart
> 0 && sqbend
> sqbstart
)
342 locale
= wstrndup(p
+ sqbstart
, sqbend
- sqbstart
);
344 /* if there is no value yet and this is the default key, return */
345 if (!*target
&& !locale
) {
346 *match_level
= MATCH_DEFAULT
;
347 *target
= wstrdup(p
+ kstart
);
351 if (compare_matchlevel(match_level
, locale
)) {
353 *target
= wstrdup(p
+ kstart
);
360 /* get a boolean value from line */
361 static Bool
getBooleanValue(const char *line
)
367 getStringValue(&p
, line
);
368 ret
= strcmp(p
, "true") == 0 ? True
: False
;
374 /* perform locale matching by implementing the algorithm specified in
375 * xdg desktop entry specification, section "localized values for keys".
377 static Bool
compare_matchlevel(int *current_level
, const char *found_locale
)
379 /* current key locale */
380 char *key_lang
, *key_ctry
, *key_enc
, *key_mod
;
382 parse_locale(found_locale
, &key_lang
, &key_ctry
, &key_enc
, &key_mod
);
384 if (env_lang
&& key_lang
&& /* Shortcut: if key and env languages don't match, */
385 strcmp(env_lang
, key_lang
) != 0) /* don't even bother. This takes care of the great */
386 return False
; /* majority of the cases without having to go through */
387 /* the more theoretical parts of the spec'd algo. */
389 if (!env_mod
&& key_mod
) /* If LC_MESSAGES does not have a MODIFIER field, */
390 return False
; /* then no key with a modifier will be matched. */
392 if (!env_ctry
&& key_ctry
) /* Similarly, if LC_MESSAGES does not have a COUNTRY field, */
393 return False
; /* then no key with a country specified will be matched. */
395 /* LC_MESSAGES value: lang_COUNTRY@MODIFIER */
396 if (env_lang
&& env_ctry
&& env_mod
) { /* lang_COUNTRY@MODIFIER */
397 if (key_lang
&& key_ctry
&& key_mod
&&
398 strcmp(env_lang
, key_lang
) == 0 &&
399 strcmp(env_ctry
, key_ctry
) == 0 &&
400 strcmp(env_mod
, key_mod
) == 0) {
401 *current_level
= MATCH_LANG_COUNTRY_MODIFIER
;
403 } else if (key_lang
&& key_ctry
&& /* lang_COUNTRY */
404 strcmp(env_lang
, key_lang
) == 0 &&
405 strcmp(env_ctry
, key_ctry
) == 0 &&
406 *current_level
< MATCH_LANG_COUNTRY
) {
407 *current_level
= MATCH_LANG_COUNTRY
;
409 } else if (key_lang
&& key_mod
&& /* lang@MODIFIER */
410 strcmp(env_lang
, key_lang
) == 0 &&
411 strcmp(env_mod
, key_mod
) == 0 &&
412 *current_level
< MATCH_LANG_MODIFIER
) {
413 *current_level
= MATCH_LANG_MODIFIER
;
415 } else if (key_lang
&& /* lang */
416 strcmp(env_lang
, key_lang
) == 0 &&
417 *current_level
< MATCH_LANG
) {
418 *current_level
= MATCH_LANG
;
425 /* LC_MESSAGES value: lang_COUNTRY */
426 if (env_lang
&& env_ctry
) { /* lang_COUNTRY */
427 if (key_lang
&& key_ctry
&&
428 strcmp(env_lang
, key_lang
) == 0 &&
429 strcmp(env_ctry
, key_ctry
) == 0 &&
430 *current_level
< MATCH_LANG_COUNTRY
) {
431 *current_level
= MATCH_LANG_COUNTRY
;
433 } else if (key_lang
&& /* lang */
434 strcmp(env_lang
, key_lang
) == 0 &&
435 *current_level
< MATCH_LANG
) {
436 *current_level
= MATCH_LANG
;
443 /* LC_MESSAGES value: lang@MODIFIER */
444 if (env_lang
&& env_mod
) { /* lang@MODIFIER */
445 if (key_lang
&& key_mod
&&
446 strcmp(env_lang
, key_lang
) == 0 &&
447 strcmp(env_mod
, key_mod
) == 0 &&
448 *current_level
< MATCH_LANG_MODIFIER
) {
449 *current_level
= MATCH_LANG_MODIFIER
;
451 } else if (key_lang
&& /* lang */
452 strcmp(env_lang
, key_lang
) == 0 &&
453 *current_level
< MATCH_LANG
) {
454 *current_level
= MATCH_LANG
;
461 /* LC_MESSAGES value: lang */
462 if (env_lang
) { /* lang */
464 strcmp(env_lang
, key_lang
) == 0 &&
465 *current_level
< MATCH_LANG
) {
466 *current_level
= MATCH_LANG
;
473 /* MATCH_DEFAULT is handled in getLocalizedStringValue */
478 /* get the (first) xdg main category from a list of categories
480 static void getMenuHierarchyFor(char **xdgmenuspec
)
485 if (!*xdgmenuspec
|| !**xdgmenuspec
)
488 category
= wstrdup(*xdgmenuspec
);
490 memset(buf
, 0, sizeof(buf
));
492 p
= strtok(category
, ";");
493 while (p
) { /* get a known category */
494 if (strcmp(p
, "AudioVideo") == 0) {
495 snprintf(buf
, sizeof(buf
), "%s", _("Audio & Video"));
497 } else if (strcmp(p
, "Audio") == 0) {
498 snprintf(buf
, sizeof(buf
), "%s", _("Audio"));
500 } else if (strcmp(p
, "Video") == 0) {
501 snprintf(buf
, sizeof(buf
), "%s", _("Video"));
503 } else if (strcmp(p
, "Development") == 0) {
504 snprintf(buf
, sizeof(buf
), "%s", _("Development"));
506 } else if (strcmp(p
, "Education") == 0) {
507 snprintf(buf
, sizeof(buf
), "%s", _("Education"));
509 } else if (strcmp(p
, "Game") == 0) {
510 snprintf(buf
, sizeof(buf
), "%s", _("Game"));
512 } else if (strcmp(p
, "Graphics") == 0) {
513 snprintf(buf
, sizeof(buf
), "%s", _("Graphics"));
515 } else if (strcmp(p
, "Network") == 0) {
516 snprintf(buf
, sizeof(buf
), "%s", _("Network"));
518 } else if (strcmp(p
, "Office") == 0) {
519 snprintf(buf
, sizeof(buf
), "%s", _("Office"));
521 } else if (strcmp(p
, "Settings") == 0) {
522 snprintf(buf
, sizeof(buf
), "%s", _("Settings"));
524 } else if (strcmp(p
, "System") == 0) {
525 snprintf(buf
, sizeof(buf
), "%s", _("System"));
527 } else if (strcmp(p
, "Utility") == 0) {
528 snprintf(buf
, sizeof(buf
), "%s", _("Utility"));
531 p
= strtok(NULL
, ";");
535 if (!*buf
) /* come up with something if nothing found */
536 snprintf(buf
, sizeof(buf
), "%s", _("Applications"));
538 *xdgmenuspec
= wstrdup(buf
);