2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 /// \ingroup ConfigParsers Playtree
38 #include "parser-mpcmd.h"
39 #include "osdep/macosx_finder_args.h"
41 static int recursion_depth
= 0;
48 #define dvd_range(a) (a>0 && a<256)
49 #define UNSET_GLOBAL (mode = LOCAL)
50 // Use this 1 if you want to have only global option (no per file option)
51 // #define UNSET_GLOBAL (mode = GLOBAL)
54 static int is_entry_option(char *opt
, char *param
, play_tree_t
** ret
) {
55 play_tree_t
* entry
= NULL
;
59 if(strcasecmp(opt
,"playlist") == 0) { // We handle playlist here
61 return M_OPT_MISSING_PARAM
;
63 entry
= parse_playlist_file(param
);
74 static inline void add_entry(play_tree_t
**last_parentp
,
75 play_tree_t
**last_entryp
, play_tree_t
*entry
) {
76 if(*last_entryp
== NULL
)
77 play_tree_set_child(*last_parentp
,entry
);
79 play_tree_append_entry(*last_entryp
,entry
);
83 /// Setup the \ref Config from command line arguments and build a playtree.
84 /** \ingroup ConfigParsers
87 m_config_parse_mp_command_line(m_config_t
*config
, int argc
, char **argv
)
89 int i
,j
,start_title
=-1,end_title
=-1;
90 char *opt
,*splitpos
=NULL
;
93 int opt_exit
= 0; // flag indicating whether mplayer should exit without playing anything
94 play_tree_t
*last_parent
, *last_entry
= NULL
, *root
;
97 assert(config
!= NULL
);
102 config
->mode
= M_COMMAND_LINE
;
104 #ifdef CONFIG_MACOSX_FINDER
105 root
=macosx_finder_args(config
, argc
, argv
);
110 last_parent
= root
= play_tree_new();
111 /* in order to work recursion detection properly in parse_config_file */
114 for (i
= 1; i
< argc
; i
++) {
117 /* check for -- (no more options id.) except --help! */
118 if ((*opt
== '-') && (*(opt
+1) == '-') && (*(opt
+2) == 0))
123 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_NoFileGivenOnCommandLine
);
128 if((opt
[0] == '{') && (opt
[1] == '\0'))
130 play_tree_t
* entry
= play_tree_new();
132 if(last_parent
->flags
& PLAY_TREE_RND
)
133 entry
->flags
|= PLAY_TREE_RND
;
134 if(last_entry
== NULL
) {
135 play_tree_set_child(last_parent
,entry
);
137 play_tree_append_entry(last_entry
,entry
);
144 if((opt
[0] == '}') && (opt
[1] == '\0'))
146 if( ! last_parent
|| ! last_parent
->parent
) {
147 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "too much }-\n");
150 last_entry
= last_parent
;
151 last_parent
= last_entry
->parent
;
155 if ((no_more_opts
== 0) && (*opt
== '-') && (*(opt
+1) != 0)) /* option */
158 /* remove trailing '-' */
161 mp_msg(MSGT_CFGPARSER
, MSGL_DBG3
, "this_opt = option: %s\n", opt
);
162 // We handle here some specific option
163 // Loop option when it apply to a group
164 if(strcasecmp(opt
,"loop") == 0 &&
165 (! last_entry
|| last_entry
->child
) ) {
168 l
= (i
+1<argc
) ? strtol(argv
[i
+1],&end
,0) : 0;
169 if(!end
|| *end
!= '\0') {
170 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_TheLoopOptionMustBeAnInteger
, argv
[i
+1]);
171 tmp
= ERR_OUT_OF_RANGE
;
173 play_tree_t
* pt
= last_entry
? last_entry
: last_parent
;
178 } else if(strcasecmp(opt
,"shuffle") == 0) {
179 if(last_entry
&& last_entry
->child
)
180 last_entry
->flags
|= PLAY_TREE_RND
;
182 last_parent
->flags
|= PLAY_TREE_RND
;
183 } else if(strcasecmp(opt
,"noshuffle") == 0) {
184 if(last_entry
&& last_entry
->child
)
185 last_entry
->flags
&= ~PLAY_TREE_RND
;
187 last_parent
->flags
&= ~PLAY_TREE_RND
;
189 const m_option_t
* mp_opt
= NULL
;
190 play_tree_t
* entry
= NULL
;
192 tmp
= is_entry_option(opt
,(i
+1<argc
) ? argv
[i
+ 1] : NULL
,&entry
);
193 if(tmp
> 0) { // It's an entry
195 add_entry(&last_parent
,&last_entry
,entry
);
196 if((last_parent
->flags
& PLAY_TREE_RND
) && entry
->child
)
197 entry
->flags
|= PLAY_TREE_RND
;
199 } else if(mode
== LOCAL
) // Entry is empty we have to drop his params
201 } else if(tmp
== 0) { // 'normal' options
202 mp_opt
= m_config_get_option(config
,opt
);
203 if (mp_opt
!= NULL
) { // Option exist
204 if(mode
== GLOBAL
|| (mp_opt
->flags
& M_OPT_GLOBAL
))
205 tmp
= (i
+1<argc
) ? m_config_set_option(config
, opt
, argv
[i
+ 1])
206 : m_config_set_option(config
, opt
, NULL
);
208 tmp
= m_config_check_option(config
, opt
, (i
+1<argc
) ? argv
[i
+ 1] : NULL
);
209 if(tmp
>= 0 && mode
!= DROP_LOCAL
) {
210 play_tree_t
* pt
= last_entry
? last_entry
: last_parent
;
211 play_tree_set_param(pt
,opt
, argv
[i
+ 1]);
216 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_UnknownOptionOnCommandLine
, opt
);
221 if (tmp
<= M_OPT_EXIT
) {
223 tmp
= M_OPT_EXIT
- tmp
;
226 mp_msg(MSGT_CFGPARSER
, MSGL_FATAL
, MSGTR_ErrorParsingOptionOnCommandLine
, opt
);
233 int is_dvdnav
= strstr(argv
[i
],"dvdnav://") != NULL
;
234 play_tree_t
* entry
= play_tree_new();
235 mp_msg(MSGT_CFGPARSER
, MSGL_DBG2
,"Adding file %s\n",argv
[i
]);
236 // if required expand DVD filename entries like dvd://1-3 into component titles
237 if ( strstr(argv
[i
],"dvd://") != NULL
|| is_dvdnav
)
239 int offset
= is_dvdnav
? 9 : 6;
240 splitpos
=strstr(argv
[i
]+offset
,"-");
243 start_title
=strtol(argv
[i
]+offset
,NULL
,10);
244 if (start_title
<0) { //entries like dvd://-2 start title implied 1
245 end_title
=abs(start_title
);
248 end_title
=strtol(splitpos
+1,NULL
,10);
251 if (dvd_range(start_title
) && dvd_range(end_title
) && (start_title
<end_title
))
253 for (j
=start_title
;j
<=end_title
;j
++)
256 entry
=play_tree_new();
257 snprintf(entbuf
,sizeof(entbuf
),is_dvdnav
? "dvdnav://%d" : "dvd://%d",j
);
258 play_tree_add_file(entry
,entbuf
);
259 add_entry(&last_parent
,&last_entry
,entry
);
263 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_InvalidPlayEntry
, argv
[i
]);
266 } else { // dvd:// or dvd://x entry
267 play_tree_add_file(entry
,argv
[i
]);
270 play_tree_add_file(entry
,argv
[i
]);
273 // Lock stdin if it will be used as input
274 if(strcasecmp(argv
[i
],"-") == 0)
275 m_config_set_option(config
,"noconsolecontrols",NULL
);
276 add_entry(&last_parent
,&last_entry
,entry
);
277 UNSET_GLOBAL
; // We start entry specific options
285 if(last_parent
!= root
)
286 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Missing }- ?\n");
291 play_tree_free(root
,1);