1 /*****************************************************************************
2 * cachegen.c: LibVLC plugins cache generator
3 *****************************************************************************
4 * Copyright (C) 2010 RĂ©mi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
33 static void version (void)
35 puts ("LibVLC plugins cache generation version "VERSION
);
38 static void usage (const char *path
)
42 "Generate the LibVLC plugins cache for the specified plugins directory.\n",
46 int main (int argc
, char *argv
[])
49 static const struct option opts
[] =
51 { "help", no_argument
, NULL
, 'h' },
52 { "version", no_argument
, NULL
, 'V' },
53 { NULL
, no_argument
, NULL
, '\0'}
58 while ((c
= getopt_long (argc
, argv
, "hV", opts
, NULL
)) != -1)
75 for (int i
= optind
; i
< argc
; i
++)
77 const char *path
= argv
[i
];
79 if (setenv ("VLC_PLUGIN_PATH", path
, 1))
82 const char *vlc_argv
[4];
85 vlc_argv
[vlc_argc
++] = "--quiet";
86 vlc_argv
[vlc_argc
++] = "--reset-plugins-cache";
87 vlc_argv
[vlc_argc
++] = "--"; /* end of options */
88 vlc_argv
[vlc_argc
] = NULL
;
90 libvlc_instance_t
*vlc
= libvlc_new (vlc_argc
, vlc_argv
);