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 MEntry
37 #include "parser-mecmd.h"
40 m_entry_list_free(m_entry_t
* lst
) {
43 for(i
= 0 ; lst
[i
].name
!= NULL
; i
++){
45 for(j
= 0 ; lst
[i
].opts
[2*j
] != NULL
; j
++) {
46 free(lst
[i
].opts
[2*j
]);
47 free(lst
[i
].opts
[2*j
+1]);
55 m_entry_set_options(m_config_t
*config
, m_entry_t
* entry
) {
58 for(i
= 0 ; entry
->opts
[2*i
] != NULL
; i
++){
59 r
= m_config_set_option(config
,entry
->opts
[2*i
],entry
->opts
[2*i
+1]);
70 m_config_parse_me_command_line(m_config_t
*config
, int argc
, char **argv
)
77 m_entry_t
*lst
= NULL
, *entry
= NULL
;
80 assert(config
!= NULL
);
85 config
->mode
= M_COMMAND_LINE
;
87 lst
= calloc(1,sizeof(m_entry_t
));
89 for (i
= 1; i
< argc
; i
++) {
92 /* check for -- (no more options id.) except --help! */
93 if ((*opt
== '-') && (*(opt
+1) == '-') && (*(opt
+2) == 0))
98 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_NoFileGivenOnCommandLine
);
104 if ((no_more_opts
== 0) && (*opt
== '-') && (*(opt
+1) != 0)) /* option */
106 const m_option_t
* mp_opt
= NULL
;
107 /* remove trailing '-' */
109 mp_msg(MSGT_CFGPARSER
, MSGL_DBG3
, "this_opt = option: %s\n", opt
);
110 mp_opt
= m_config_get_option(config
,opt
);
113 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_NotAnMEncoderOption
, opt
);
116 if(!entry
|| (mp_opt
->flags
& M_OPT_GLOBAL
)){
117 tmp
= m_config_set_option(config
, opt
, argv
[i
+ 1]);
118 if (tmp
<= M_OPT_EXIT
) {
120 tmp
= M_OPT_EXIT
- tmp
;
124 // mp_msg(MSGT_CFGPARSER, MSGL_ERR, "m_config_set_option() failed (%d)\n",tmp);
125 mp_msg(MSGT_CFGPARSER
, MSGL_FATAL
, MSGTR_ErrorParsingOptionOnCommandLine
, opt
);
129 tmp
= m_config_check_option(config
, opt
, argv
[i
+ 1]);
130 if (tmp
<= M_OPT_EXIT
) {
132 tmp
= M_OPT_EXIT
- tmp
;
135 entry
->opts
= realloc(entry
->opts
,(no
+2)*2*sizeof(char*));
136 entry
->opts
[2*no
] = strdup(opt
);
137 entry
->opts
[2*no
+1] = argv
[i
+ 1] ? strdup(argv
[i
+ 1]) : NULL
;
138 entry
->opts
[2*no
+2] = entry
->opts
[2*no
+3] = NULL
;
141 // mp_msg(MSGT_CFGPARSER, MSGL_ERR, "m_config_set_option() failed (%d)\n",tmp);
146 } else {/* filename */
147 mp_msg(MSGT_CFGPARSER
, MSGL_DBG2
,"Adding file %s\n",argv
[i
]);
148 lst
= realloc(lst
,(nf
+2)*sizeof(m_entry_t
));
149 lst
[nf
].name
= strdup(argv
[i
]);
150 lst
[nf
].opts
= calloc(2,sizeof(char*));
153 memset(&lst
[nf
+1],0,sizeof(m_entry_t
));
161 m_entry_list_free(lst
);
162 mp_msg(MSGT_CFGPARSER
, MSGL_ERR
, MSGTR_NoFileGiven
);
168 m_entry_list_free(lst
);