]> git.sesse.net Git - vlc/blob - extras/analyser/zsh.cpp
7eb2bf23c16b2b65754a29143aad1a51baf9dcd0
[vlc] / extras / analyser / zsh.cpp
1 /*****************************************************************************
2  * zsh.cpp: create zsh completion rule for vlc
3  *****************************************************************************
4  * Copyright © 2005-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <stdio.h>
25 #include <map>
26 #include <string>
27 #include <utility>
28 #include <iostream>
29 #include <algorithm>
30 typedef std::multimap<std::string, std::string> mumap;
31 typedef std::multimap<int, std::string> mcmap;
32
33 typedef std::pair<std::string, std::string> mpair;
34 typedef std::pair<int, std::string> mcpair;
35
36 #ifdef HAVE_CONFIG_H
37 # include "config.h"
38 #endif
39
40 #include <vlc_common.h>
41 #include <vlc/vlc.h>
42
43 /* evil hack */
44 #undef __PLUGIN__
45 #undef __BUILTIN__
46 #include <../src/modules/modules.h>
47
48 void ParseModules( mumap &mods, mcmap &mods2 );
49 void PrintModuleList( mumap &mods, mcmap &mods2 );
50 void ParseOption( module_config_t *p_item, mumap &mods, mcmap &mods2 );
51 void PrintOption( char *psz_option, char i_short, char *psz_exlusive,
52                    char *psz_text, char *psz_longtext, char *psz_args );
53
54 int main( int i_argc, const char **ppsz_argv )
55 {
56     mumap mods;
57     mcmap mods2;
58     /* Create a libvlc structure */
59
60     libvlc_exception_t ex;
61     libvlc_exception_init(&ex);
62
63     const char *argv[i_argc + 1];
64     argv[0] = "vlc";
65     for( int i = 0; i < i_argc; i++ )
66         argv[i+1] = ppsz_argv[i];
67     libvlc_instance_t *p_libvlc_instance = libvlc_new(i_argc+1, argv, &ex);
68
69     if( !p_libvlc_instance || libvlc_exception_raised(&ex) )
70     {
71         libvlc_exception_clear(&ex);
72         return 1;
73     }
74
75     printf("#compdef vlc\n\n"
76
77            "#This file is autogenerated by zsh.cpp\n"
78            "typeset -A opt_args\n"
79            "local context state line ret=1\n"
80            "local modules\n\n" );
81
82     PrintModuleList( mods, mods2 );
83
84     printf( "_arguments -S -s \\\n" );
85     ParseModules( mods, mods2 );
86     printf( "  \"(--module)-p[print help on module]:print help on module:($modules)\"\\\n" );
87     printf( "  \"(-p)--module[print help on module]:print help on module:($modules)\"\\\n" );
88     printf( "  \"(--help)-h[print help]\"\\\n" );
89     printf( "  \"(-h)--help[print help]\"\\\n" );
90     printf( "  \"(--longhelp)-H[print detailed help]\"\\\n" );
91     printf( "  \"(-H)--longhelp[print detailed help]\"\\\n" );
92     printf( "  \"(--list)-l[print a list of available modules]\"\\\n" );
93     printf( "  \"(-l)--list[print a list of available modules]\"\\\n" );
94     printf( "  \"--save-config[save the current command line options in the config file]\"\\\n" );
95     printf( "  \"--reset-config[reset the current config to the default values]\"\\\n" );
96     printf( "  \"--config[use alternate config file]\"\\\n" );
97     printf( "  \"--reset-plugins-cache[resets the current plugins cache]\"\\\n" );
98     printf( "  \"--version[print version information]\"\\\n" );
99     printf( "  \"*:Playlist item:->mrl\" && ret=0\n\n" );
100
101     printf( "case $state in\n" );
102     printf( "  mrl)\n" );
103     printf( "    _alternative 'files:file:_files' 'urls:URL:_urls' && ret=0\n" );
104     printf( "  ;;\n" );
105     printf( "esac\n\n" );
106
107     printf( "return ret\n" );
108
109     libvlc_release( p_libvlc_instance );
110
111     return 0;
112 }
113
114 void ParseModules( mumap &mods, mcmap &mods2 )
115 {
116     module_t       **p_list;
117     module_t        *p_module;
118     module_config_t *p_item;
119     int              i_index;
120     int              i_items;
121     size_t           i_modules;
122
123     /* List the plugins */
124     p_list = module_list_get(&i_modules);
125     if( !p_list ) return;
126     for( i_index = 0; i_index < i_modules; i_index++ )
127     {
128         p_module = p_list[i_index];
129
130         /* Exclude empty plugins (submodules don't have config options, they
131          * are stored in the parent module) */
132         if( p_module->b_submodule )
133               continue;
134 //            p_item = ((module_t *)p_module->p_parent)->p_config;
135         else
136             p_item = p_module->p_config;
137
138 //        printf( "  #%s\n", p_module->psz_longname );
139         if( !p_item ) continue;
140         i_items = 0;
141         do
142         {
143             if( p_item->i_type == CONFIG_CATEGORY )
144             {
145 //                printf( "  #Category %d\n", p_item->i_value );
146             }
147             else if( p_item->i_type == CONFIG_SUBCATEGORY )
148             {
149 //                printf( "  #Subcategory %d\n", p_item->i_value );
150             }
151             if( p_item->i_type & CONFIG_ITEM )
152                 ParseOption( p_item, mods, mods2 );
153         }
154         while( i_items++ < p_module->i_config_items && p_item++ );
155
156     }
157     module_list_free( p_list );
158 }
159
160 void PrintModuleList( mumap &mods, mcmap &mods2 )
161 {
162     module_t       **p_list = NULL;
163     module_t        *p_module;
164     int              i_index;
165     int              i_items;
166     size_t           i_modules;
167
168     /* List the plugins */
169     p_list = module_list_get(&i_modules);
170     if( !p_list ) return;
171
172     printf( "modules=\"" );
173     for( i_index = 0; i_index < i_modules; i_index++ )
174     {
175         p_module = p_list[i_index];
176
177         /* Exclude empty plugins (submodules don't have config options, they
178          * are stored in the parent module) */
179
180         if( strcmp( p_module->psz_object_name, "main" ) )
181         {
182             mods.insert( mpair( p_module->psz_capability,
183                                 p_module->psz_object_name ) );
184             module_config_t *p_config = p_module->p_config;
185             i_items = 0;
186             if( p_config ) do
187             {
188                 /* Hack: required subcategory is stored in i_min */
189                 if( p_config->i_type == CONFIG_SUBCATEGORY )
190                 {
191                     mods2.insert( mcpair( p_config->value.i,
192                                           p_module->psz_object_name ) );
193                 }
194             } while( i_items++ < p_module->i_config_items && p_config++ );
195             if( p_module->b_submodule )
196                 continue;
197             printf( "%s ", p_module->psz_object_name );
198         }
199
200     }
201     printf( "\"\n\n" );
202     module_list_free( p_list );
203     return;
204 }
205
206 void ParseOption( module_config_t *p_item, mumap &mods, mcmap &mods2 )
207 {
208     char *psz_arguments = NULL;
209     char *psz_exclusive;
210     char *psz_option;
211     char *psz_name;
212     char *psz_text;
213     char *psz_longtext;
214
215 #define DUP( x ) strdup( x ? x : "" )
216
217     //Skip deprecated options
218     if( p_item->b_removed )
219         return;
220
221     switch( p_item->i_type )
222     {
223     case CONFIG_ITEM_MODULE:
224     {
225         std::pair<mumap::iterator, mumap::iterator> range = mods.equal_range( p_item->psz_type );
226         std::string list = (*range.first).second;
227         ++range.first;
228         while( range.first != range.second )
229         {
230             list = list.append( " " );
231             list = list.append( range.first->second );
232             ++range.first;
233         }
234         asprintf( &psz_arguments, "(%s)", list.c_str() );
235     }
236     break;
237     case CONFIG_ITEM_MODULE_CAT:
238     {
239         std::pair<mcmap::iterator, mcmap::iterator> range =
240             mods2.equal_range( p_item->min.i );
241         std::string list = (*range.first).second;
242         ++range.first;
243         while( range.first != range.second )
244         {
245             list = list.append( " " );
246             list = list.append( range.first->second );
247             ++range.first;
248         }
249         asprintf( &psz_arguments, "(%s)", list.c_str() );
250     }
251     break;
252     case CONFIG_ITEM_MODULE_LIST_CAT:
253     {
254         std::pair<mcmap::iterator, mcmap::iterator> range =
255             mods2.equal_range( p_item->min.i );
256         std::string list = "_values -s , ";
257         list = list.append( p_item->psz_name );
258         while( range.first != range.second )
259         {
260             list = list.append( " '*" );
261             list = list.append( range.first->second );
262             list = list.append( "'" );
263             ++range.first;
264         }
265         psz_arguments = strdup( list.c_str() );
266     }
267     break;
268
269     case CONFIG_ITEM_STRING:
270         if( p_item->i_list )
271         {
272             int i = p_item->i_list -1;
273             char *psz_list;
274             if( p_item->ppsz_list_text )
275                 asprintf( &psz_list, "%s\\:%s", p_item->ppsz_list[i],
276                           p_item->ppsz_list_text[i] );
277             else
278                 psz_list = strdup(p_item->ppsz_list[i]);
279             char *psz_list2;
280             while( i>1 )
281             {
282                 if( p_item->ppsz_list_text )
283                     asprintf( &psz_list2, "%s\\:%s %s", p_item->ppsz_list[i-1],
284                               p_item->ppsz_list_text[i-1], psz_list );
285                 else
286                     asprintf( &psz_list2, "%s %s", p_item->ppsz_list[i-1],
287                               psz_list );
288
289                 free( psz_list );
290                 psz_list = psz_list2;
291                 i--;
292             }
293             if( p_item->ppsz_list_text )
294                 asprintf( &psz_arguments, "((%s))", psz_list );
295             else
296                 asprintf( &psz_arguments, "(%s)", psz_list );
297
298             free( psz_list );
299         }
300         break;
301
302     case CONFIG_ITEM_FILE:
303         psz_arguments = strdup( "_files" );
304         break;
305     case CONFIG_ITEM_DIRECTORY:
306         psz_arguments = strdup( "_files -/" );
307         break;
308
309     case CONFIG_ITEM_INTEGER:
310         if( p_item->i_list )
311         {
312             int i = p_item->i_list -1;
313             char *psz_list;
314             if( p_item->ppsz_list_text )
315                 asprintf( &psz_list, "%d\\:%s", p_item->pi_list[i],
316                           p_item->ppsz_list_text[i] );
317             else
318                 psz_list = strdup(p_item->ppsz_list[i]);
319             char *psz_list2;
320             while( i>1 )
321             {
322                 if( p_item->ppsz_list_text )
323                     asprintf( &psz_list2, "%d\\:%s %s", p_item->pi_list[i-1],
324                               p_item->ppsz_list_text[i-1], psz_list );
325                 else
326                     asprintf( &psz_list2, "%s %s", p_item->ppsz_list[i-1],
327                               psz_list );
328
329                 free( psz_list );
330                 psz_list = psz_list2;
331                 i--;
332             }
333             if( p_item->ppsz_list_text )
334                 asprintf( &psz_arguments, "((%s))", psz_list );
335             else
336                 asprintf( &psz_arguments, "(%s)", psz_list );
337
338             free( psz_list );
339         }
340         else if( p_item->min.i != 0 || p_item->max.i != 0 )
341         {
342 //            p_control = new RangedIntConfigControl( p_this, p_item, parent );
343         }
344         else
345         {
346 //            p_control = new IntegerConfigControl( p_this, p_item, parent );
347         }
348         break;
349
350     case CONFIG_ITEM_KEY:
351 //        p_control = new KeyConfigControl( p_this, p_item, parent );
352         break;
353
354     case CONFIG_ITEM_FLOAT:
355 //        p_control = new FloatConfigControl( p_this, p_item, parent );
356         break;
357
358     case CONFIG_ITEM_BOOL:
359 //        p_control = new BoolConfigControl( p_this, p_item, parent );
360         asprintf( &psz_exclusive, "--no%s --no-%s", p_item->psz_name,
361                  p_item->psz_name );
362         psz_name = DUP( p_item->psz_name );
363         psz_text = DUP( p_item->psz_text );
364         psz_longtext = DUP( p_item->psz_longtext );
365         PrintOption( psz_name, p_item->i_short, psz_exclusive,
366                      psz_text, psz_longtext, psz_arguments );
367         free( psz_name );
368         free( psz_text );
369         free( psz_longtext );
370         free( psz_exclusive );
371         asprintf( &psz_exclusive, "--no%s --%s", p_item->psz_name,
372                  p_item->psz_name );
373         asprintf( &psz_option, "no-%s", p_item->psz_name );
374         psz_text = DUP( p_item->psz_text );
375         psz_longtext = DUP( p_item->psz_longtext );
376         PrintOption( psz_option, p_item->i_short, psz_exclusive,
377                      psz_text, psz_longtext, psz_arguments );
378         free( psz_text );
379         free( psz_longtext );
380         free( psz_exclusive );
381         free( psz_option );
382         asprintf( &psz_exclusive, "--no-%s --%s", p_item->psz_name,
383                  p_item->psz_name );
384         asprintf( &psz_option, "no%s", p_item->psz_name );
385         psz_text = DUP( p_item->psz_text );
386         psz_longtext = DUP( p_item->psz_longtext );
387         PrintOption( psz_option, p_item->i_short, psz_exclusive,
388                      psz_text, psz_longtext, psz_arguments );
389         free( psz_text );
390         free( psz_longtext );
391         free( psz_exclusive );
392         free( psz_option );
393         return;
394
395     case CONFIG_SECTION:
396 //        p_control = new SectionConfigControl( p_this, p_item, parent );
397         break;
398
399     default:
400         break;
401     }
402     psz_name = DUP( p_item->psz_name );
403     psz_text = DUP( p_item->psz_text );
404     psz_longtext = DUP( p_item->psz_longtext );
405     PrintOption( psz_name, p_item->i_short, NULL,
406                  psz_text, psz_longtext, psz_arguments );
407     free( psz_name );
408     free( psz_text );
409     free( psz_longtext );
410     free( psz_arguments );
411 }
412
413 void PrintOption( char *psz_option, char i_short, char *psz_exclusive,
414                    char *psz_text, char *psz_longtext, char *psz_args )
415 {
416     char *foo;
417     if( psz_text )
418     {
419         while( (foo = strchr( psz_text, ':' ))) *foo=';';
420         while( (foo = strchr( psz_text, '"' ))) *foo='\'';
421     }
422     if( psz_longtext )
423     {
424         while( (foo = strchr( psz_longtext, ':' ))) *foo=';';
425         while( (foo = strchr( psz_longtext, '"' ))) *foo='\'';
426     }
427     if( !psz_longtext ||
428         strchr( psz_longtext, '\n' ) ||
429         strchr( psz_longtext, '(' ) ) psz_longtext = psz_text;
430     if( i_short )
431     {
432         if( !psz_exclusive )
433             printf( "  \"(-%c)--%s%s[%s]", i_short,
434                     psz_option, psz_args?"=":"", psz_text );
435         else
436             printf( "  \"(-%c%s)--%s%s[%s]", i_short, psz_exclusive,
437                     psz_option, psz_args?"=":"", psz_text );
438         if( psz_args )
439             printf( ":%s:%s\"\\\n", psz_longtext, psz_args );
440         else
441             printf( "\"\\\n" );
442         printf( "  \"(--%s%s)-%c[%s]", psz_option, psz_exclusive,
443                 i_short, psz_text );
444         if( psz_args )
445             printf( ":%s:%s\"\\\n", psz_longtext, psz_args );
446         else
447             printf( "\"\\\n" );
448
449     }
450     else
451     {
452         if( psz_exclusive )
453             printf( "  \"(%s)--%s%s[%s]", psz_exclusive, psz_option,
454                     psz_args?"=":"", psz_text );
455         else
456             printf( "  \"--%s[%s]", psz_option, psz_text );
457
458         if( psz_args )
459             printf( ":%s:%s\"\\\n", psz_longtext, psz_args );
460         else
461             printf( "\"\\\n" );
462     }
463 }
464