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
37 #include "parser-mpcmd.h"
38 #include "osdep/macosx_finder_args.h"
40 static int recursion_depth
= 0;
47 #define dvd_range(a) (a>0 && a<256)
48 #define UNSET_GLOBAL (mode = LOCAL)
49 // Use this 1 if you want to have only global option (no per file option)
50 // #define UNSET_GLOBAL (mode = GLOBAL)
53 static int is_entry_option(struct m_config
*mconfig
, char *opt
, char *param
,
56 play_tree_t
* entry
= NULL
;
60 if(strcasecmp(opt
,"playlist") == 0) { // We handle playlist here
62 return M_OPT_MISSING_PARAM
;
64 entry
= parse_playlist_file(mconfig
, param
);
75 static inline void add_entry(play_tree_t
**last_parentp
,
76 play_tree_t
**last_entryp
, play_tree_t
*entry
) {
77 if(*last_entryp
== NULL
)
78 play_tree_set_child(*last_parentp
,entry
);
80 play_tree_append_entry(*last_entryp
,entry
);
84 /// Setup the \ref Config from command line arguments and build a playtree.
85 /** \ingroup ConfigParsers
88 m_config_parse_mp_command_line(m_config_t
*config
, int argc
, char **argv
)
90 int i
,j
,start_title
=-1,end_title
=-1;
91 char *opt
,*splitpos
=NULL
;
94 int opt_exit
= 0; // flag indicating whether mplayer should exit without playing anything
95 play_tree_t
*last_parent
, *last_entry
= NULL
, *root
;
98 assert(config
!= NULL
);
103 config
->mode
= M_COMMAND_LINE
;
105 #ifdef CONFIG_MACOSX_FINDER
106 root
=macosx_finder_args(config
, argc
, argv
);
111 last_parent
= root
= play_tree_new();
112 /* in order to work recursion detection properly in parse_config_file */
115 for (i
= 1; i
< argc
; i
++) {
118 /* check for -- (no more options id.) except --help! */
119 if ((*opt
== '-') && (*(opt
+1) == '-') && (*(opt
+2) == 0))
124 mp_tmsg(MSGT_CFGPARSER
, MSGL_ERR
, "'--' indicates no more options, but no filename was given on the command line.\n");
129 if((opt
[0] == '{') && (opt
[1] == '\0'))
131 play_tree_t
* entry
= play_tree_new();
133 if(last_parent
->flags
& PLAY_TREE_RND
)
134 entry
->flags
|= PLAY_TREE_RND
;
135 if(last_entry
== NULL
) {
136 play_tree_set_child(last_parent
,entry
);
138 play_tree_append_entry(last_entry
,entry
);
145 if((opt
[0] == '}') && (opt
[1] == '\0'))
147 if( ! last_parent
|| ! last_parent
->parent
) {
148 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, "too much }-\n");
151 last_entry
= last_parent
;
152 last_parent
= last_entry
->parent
;
156 if ((no_more_opts
== 0) && (*opt
== '-') && (*(opt
+1) != 0)) /* option */
159 /* remove trailing '-' */
162 mp_msg(MSGT_CFGPARSER
, MSGL_DBG3
, "this_opt = option: %s\n", opt
);
163 // We handle here some specific option
164 // Loop option when it apply to a group
165 if(strcasecmp(opt
,"loop") == 0 &&
166 (! last_entry
|| last_entry
->child
) ) {
169 l
= (i
+1<argc
) ? strtol(argv
[i
+1],&end
,0) : 0;
170 if(!end
|| *end
!= '\0') {
171 mp_tmsg(MSGT_CFGPARSER
, MSGL_ERR
, "The loop option must be an integer: %s\n", argv
[i
+1]);
172 tmp
= ERR_OUT_OF_RANGE
;
174 play_tree_t
* pt
= last_entry
? last_entry
: last_parent
;
179 } else if(strcasecmp(opt
,"shuffle") == 0) {
180 if(last_entry
&& last_entry
->child
)
181 last_entry
->flags
|= PLAY_TREE_RND
;
183 last_parent
->flags
|= PLAY_TREE_RND
;
184 } else if(strcasecmp(opt
,"noshuffle") == 0) {
185 if(last_entry
&& last_entry
->child
)
186 last_entry
->flags
&= ~PLAY_TREE_RND
;
188 last_parent
->flags
&= ~PLAY_TREE_RND
;
190 const m_option_t
* mp_opt
= NULL
;
191 play_tree_t
* entry
= NULL
;
193 tmp
= is_entry_option(config
, opt
,(i
+1<argc
) ? argv
[i
+ 1] : NULL
,&entry
);
194 if(tmp
> 0) { // It's an entry
196 add_entry(&last_parent
,&last_entry
,entry
);
197 if((last_parent
->flags
& PLAY_TREE_RND
) && entry
->child
)
198 entry
->flags
|= PLAY_TREE_RND
;
200 } else if(mode
== LOCAL
) // Entry is empty we have to drop his params
202 } else if(tmp
== 0) { // 'normal' options
203 mp_opt
= m_config_get_option(config
,opt
);
204 if (mp_opt
!= NULL
) { // Option exist
205 if(mode
== GLOBAL
|| (mp_opt
->flags
& M_OPT_GLOBAL
))
206 tmp
= (i
+1<argc
) ? m_config_set_option(config
, opt
, argv
[i
+ 1])
207 : m_config_set_option(config
, opt
, NULL
);
209 tmp
= m_config_check_option(config
, opt
, (i
+1<argc
) ? argv
[i
+ 1] : NULL
);
210 if(tmp
>= 0 && mode
!= DROP_LOCAL
) {
211 play_tree_t
* pt
= last_entry
? last_entry
: last_parent
;
212 play_tree_set_param(pt
,opt
, argv
[i
+ 1]);
217 mp_tmsg(MSGT_CFGPARSER
, MSGL_ERR
, "Unknown option on the command line: -%s\n", opt
);
222 if (tmp
<= M_OPT_EXIT
) {
224 tmp
= M_OPT_EXIT
- tmp
;
227 mp_tmsg(MSGT_CFGPARSER
, MSGL_FATAL
, "Error parsing option on the command line: -%s\n", opt
);
234 int is_dvdnav
= strstr(argv
[i
],"dvdnav://") != NULL
;
235 play_tree_t
* entry
= play_tree_new();
236 mp_msg(MSGT_CFGPARSER
, MSGL_DBG2
,"Adding file %s\n",argv
[i
]);
237 // if required expand DVD filename entries like dvd://1-3 into component titles
238 if ( strstr(argv
[i
],"dvd://") != NULL
|| is_dvdnav
)
240 int offset
= is_dvdnav
? 9 : 6;
241 splitpos
=strstr(argv
[i
]+offset
,"-");
244 start_title
=strtol(argv
[i
]+offset
,NULL
,10);
245 if (start_title
<0) { //entries like dvd://-2 start title implied 1
246 end_title
=abs(start_title
);
249 end_title
=strtol(splitpos
+1,NULL
,10);
252 if (dvd_range(start_title
) && dvd_range(end_title
) && (start_title
<end_title
))
254 for (j
=start_title
;j
<=end_title
;j
++)
257 entry
=play_tree_new();
258 snprintf(entbuf
,sizeof(entbuf
),is_dvdnav
? "dvdnav://%d" : "dvd://%d",j
);
259 play_tree_add_file(entry
,entbuf
);
260 add_entry(&last_parent
,&last_entry
,entry
);
264 mp_tmsg(MSGT_CFGPARSER
, MSGL_ERR
, "Invalid play entry %s\n", argv
[i
]);
267 } else { // dvd:// or dvd://x entry
268 play_tree_add_file(entry
,argv
[i
]);
271 play_tree_add_file(entry
,argv
[i
]);
274 // Lock stdin if it will be used as input
275 if(strcasecmp(argv
[i
],"-") == 0)
276 m_config_set_option(config
,"noconsolecontrols",NULL
);
277 add_entry(&last_parent
,&last_entry
,entry
);
278 UNSET_GLOBAL
; // We start entry specific options
286 if(last_parent
!= root
)
287 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
,"Missing }- ?\n");
292 play_tree_free(root
,1);