1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/* validator.c: validate a desktop entry file
* vim: set ts=2 sw=2 et: */
/*
* Copyright (C) 2007, 2008 Vincent Untz <vuntz@gnome.org>
*
* A really small portion of this code comes from the old validator.c.
* The old validator.c was Copyright (C) 2002, 2004 Red Hat, Inc.
* It was written by:
* Mark McLoughlin <mark@skynet.ie>
* Havoc Pennington <hp@pobox.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
#include "validate.h"
static gboolean warn_kde = FALSE;
static gboolean no_hints = FALSE;
static gboolean no_warn_deprecated = FALSE;
static char **filename = NULL;
static GOptionEntry option_entries[] = {
{ "no-hints", 0, 0, G_OPTION_ARG_NONE, &no_hints, "Do not output hints to improve desktop file", NULL },
{ "no-warn-deprecated", 0, 0, G_OPTION_ARG_NONE, &no_warn_deprecated, "Do not warn about usage of deprecated items", NULL },
{ "warn-kde", 0, 0, G_OPTION_ARG_NONE, &warn_kde, "Warn about usage of KDE extensions to the specification", NULL },
{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &filename, NULL, "<desktop-file>" },
{ NULL }
};
int
main (int argc, char *argv[])
{
GOptionContext *context;
GError *error;
context = g_option_context_new (NULL);
g_option_context_set_summary (context, "Validate desktop entry files "
"according to the Desktop Entry "
"specification "CURRENT_SPEC_VERSION
".\n"
"For information about this "
"specification, see:\n\t"
"http://freedesktop.org/wiki/Specifications/desktop-entry-spec");
g_option_context_add_main_entries (context, option_entries, NULL);
error = NULL;
if (!g_option_context_parse (context, &argc, &argv, &error)) {
g_printerr ("Error while parsing arguments: %s\n", error->message);
g_error_free (error);
return 1;
}
g_option_context_free (context);
/* only accept one desktop file argument */
if (filename == NULL || filename[0] == NULL || filename[1] != NULL) {
g_printerr ("See \"%s --help\" for correct usage.\n", g_get_prgname ());
return 1;
}
if (!g_file_test (filename[0], G_FILE_TEST_IS_REGULAR)) {
g_printerr ("%s: file does not exist\n", filename[0]);
return 1;
}
if (desktop_file_validate (filename[0], warn_kde, no_warn_deprecated, no_hints))
return 0;
else
return 1;
}
|