3 * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.org>
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 Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <sys/types.h>
33 #include "miracle_unit.h"
34 #include "miracle_commands.h"
35 #include "miracle_log.h"
37 int miracle_load( command_argument cmd_arg
)
39 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
40 char *filename
= (char*) cmd_arg
->argument
;
44 if ( filename
[0] == '!' )
50 if ( strlen( cmd_arg
->root_dir
) && filename
[0] == '/' )
53 snprintf( fullname
, 1023, "%s%s", cmd_arg
->root_dir
, filename
);
56 return RESPONSE_INVALID_UNIT
;
59 int32_t in
= -1, out
= -1;
60 if ( valerie_tokeniser_count( cmd_arg
->tokeniser
) == 5 )
62 in
= atol( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 3 ) );
63 out
= atol( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 4 ) );
65 if ( miracle_unit_load( unit
, fullname
, in
, out
, flush
) != valerie_ok
)
66 return RESPONSE_BAD_FILE
;
68 return RESPONSE_SUCCESS
;
71 int miracle_list( command_argument cmd_arg
)
73 miracle_unit unit
= miracle_get_unit( cmd_arg
->unit
);
77 miracle_unit_report_list( unit
, cmd_arg
->response
);
78 return RESPONSE_SUCCESS
;
81 return RESPONSE_INVALID_UNIT
;
84 static int parse_clip( command_argument cmd_arg
, int arg
)
86 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
87 int clip
= miracle_unit_get_current_clip( unit
);
89 if ( valerie_tokeniser_count( cmd_arg
->tokeniser
) > arg
)
91 char *token
= valerie_tokeniser_get_string( cmd_arg
->tokeniser
, arg
);
92 if ( token
[ 0 ] == '+' )
93 clip
+= atoi( token
+ 1 );
94 else if ( token
[ 0 ] == '-' )
95 clip
-= atoi( token
+ 1 );
103 int miracle_insert( command_argument cmd_arg
)
105 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
106 char *filename
= (char*) cmd_arg
->argument
;
109 if ( strlen( cmd_arg
->root_dir
) && filename
[0] == '/' )
112 snprintf( fullname
, 1023, "%s%s", cmd_arg
->root_dir
, filename
);
115 return RESPONSE_INVALID_UNIT
;
118 long in
= -1, out
= -1;
119 int index
= parse_clip( cmd_arg
, 3 );
121 if ( valerie_tokeniser_count( cmd_arg
->tokeniser
) == 6 )
123 in
= atoi( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 4 ) );
124 out
= atoi( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 5 ) );
127 switch( miracle_unit_insert( unit
, fullname
, index
, in
, out
) )
130 return RESPONSE_SUCCESS
;
132 return RESPONSE_BAD_FILE
;
135 return RESPONSE_SUCCESS
;
138 int miracle_remove( command_argument cmd_arg
)
140 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
143 return RESPONSE_INVALID_UNIT
;
146 int index
= parse_clip( cmd_arg
, 2 );
148 if ( miracle_unit_remove( unit
, index
) != valerie_ok
)
149 return RESPONSE_BAD_FILE
;
151 return RESPONSE_SUCCESS
;
154 int miracle_clean( command_argument cmd_arg
)
156 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
159 return RESPONSE_INVALID_UNIT
;
162 if ( miracle_unit_clean( unit
) != valerie_ok
)
163 return RESPONSE_BAD_FILE
;
165 return RESPONSE_SUCCESS
;
168 int miracle_clear( command_argument cmd_arg
)
170 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
173 return RESPONSE_INVALID_UNIT
;
176 if ( miracle_unit_clear( unit
) != valerie_ok
)
177 return RESPONSE_BAD_FILE
;
179 return RESPONSE_SUCCESS
;
182 int miracle_move( command_argument cmd_arg
)
184 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
188 if ( valerie_tokeniser_count( cmd_arg
->tokeniser
) > 2 )
190 int src
= parse_clip( cmd_arg
, 2 );
191 int dest
= parse_clip( cmd_arg
, 3 );
193 if ( miracle_unit_move( unit
, src
, dest
) != valerie_ok
)
194 return RESPONSE_BAD_FILE
;
198 return RESPONSE_MISSING_ARG
;
203 return RESPONSE_INVALID_UNIT
;
206 return RESPONSE_SUCCESS
;
209 int miracle_append( command_argument cmd_arg
)
211 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
212 char *filename
= (char*) cmd_arg
->argument
;
215 if ( strlen( cmd_arg
->root_dir
) && filename
[0] == '/' )
218 snprintf( fullname
, 1023, "%s%s", cmd_arg
->root_dir
, filename
);
221 return RESPONSE_INVALID_UNIT
;
224 int32_t in
= -1, out
= -1;
225 if ( valerie_tokeniser_count( cmd_arg
->tokeniser
) == 5 )
227 in
= atol( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 3 ) );
228 out
= atol( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 4 ) );
230 switch ( miracle_unit_append( unit
, fullname
, in
, out
) )
233 return RESPONSE_SUCCESS
;
235 return RESPONSE_BAD_FILE
;
238 return RESPONSE_SUCCESS
;
241 int miracle_play( command_argument cmd_arg
)
243 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
247 return RESPONSE_INVALID_UNIT
;
252 if ( valerie_tokeniser_count( cmd_arg
->tokeniser
) == 3 )
253 speed
= atoi( valerie_tokeniser_get_string( cmd_arg
->tokeniser
, 2 ) );
254 miracle_unit_play( unit
, speed
);
257 return RESPONSE_SUCCESS
;
260 int miracle_stop( command_argument cmd_arg
)
262 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
264 return RESPONSE_INVALID_UNIT
;
266 miracle_unit_terminate( unit
);
267 return RESPONSE_SUCCESS
;
270 int miracle_pause( command_argument cmd_arg
)
272 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
274 return RESPONSE_INVALID_UNIT
;
276 miracle_unit_play( unit
, 0 );
277 return RESPONSE_SUCCESS
;
280 int miracle_rewind( command_argument cmd_arg
)
282 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
284 return RESPONSE_INVALID_UNIT
;
286 miracle_unit_play( unit
, -2000 );
287 return RESPONSE_SUCCESS
;
290 int miracle_step( command_argument cmd_arg
)
292 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
295 return RESPONSE_INVALID_UNIT
;
298 miracle_unit_play( unit
, 0 );
299 miracle_unit_step( unit
, *(int*) cmd_arg
->argument
);
301 return RESPONSE_SUCCESS
;
304 int miracle_goto( command_argument cmd_arg
)
306 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
307 int clip
= parse_clip( cmd_arg
, 3 );
309 if (unit
== NULL
|| miracle_unit_is_offline(unit
))
310 return RESPONSE_INVALID_UNIT
;
312 miracle_unit_change_position( unit
, clip
, *(int*) cmd_arg
->argument
);
313 return RESPONSE_SUCCESS
;
316 int miracle_ff( command_argument cmd_arg
)
318 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
320 return RESPONSE_INVALID_UNIT
;
322 miracle_unit_play( unit
, 2000 );
323 return RESPONSE_SUCCESS
;
326 int miracle_set_in_point( command_argument cmd_arg
)
328 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
329 int clip
= parse_clip( cmd_arg
, 3 );
332 return RESPONSE_INVALID_UNIT
;
335 int position
= *(int *) cmd_arg
->argument
;
337 switch( miracle_unit_set_clip_in( unit
, clip
, position
) )
340 return RESPONSE_BAD_FILE
;
342 return RESPONSE_OUT_OF_RANGE
;
345 return RESPONSE_SUCCESS
;
348 int miracle_set_out_point( command_argument cmd_arg
)
350 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
351 int clip
= parse_clip( cmd_arg
, 3 );
354 return RESPONSE_INVALID_UNIT
;
357 int position
= *(int *) cmd_arg
->argument
;
359 switch( miracle_unit_set_clip_out( unit
, clip
, position
) )
362 return RESPONSE_BAD_FILE
;
364 return RESPONSE_OUT_OF_RANGE
;
368 return RESPONSE_SUCCESS
;
371 int miracle_get_unit_status( command_argument cmd_arg
)
373 valerie_status_t status
;
374 int error
= miracle_unit_get_status( miracle_get_unit( cmd_arg
->unit
), &status
);
377 return RESPONSE_INVALID_UNIT
;
381 valerie_response_printf( cmd_arg
->response
, sizeof( text
), valerie_status_serialise( &status
, text
, sizeof( text
) ) );
382 return RESPONSE_SUCCESS_1
;
388 int miracle_set_unit_property( command_argument cmd_arg
)
390 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
391 char *name_value
= (char*) cmd_arg
->argument
;
393 return RESPONSE_INVALID_UNIT
;
395 miracle_unit_set( unit
, name_value
);
396 return RESPONSE_SUCCESS
;
399 int miracle_get_unit_property( command_argument cmd_arg
)
401 miracle_unit unit
= miracle_get_unit(cmd_arg
->unit
);
402 char *name
= (char*) cmd_arg
->argument
;
403 char *value
= miracle_unit_get( unit
, name
);
405 return RESPONSE_INVALID_UNIT
;
406 else if ( value
!= NULL
)
407 valerie_response_printf( cmd_arg
->response
, 1024, "%s\n", value
);
408 return RESPONSE_SUCCESS
;
412 int miracle_transfer( command_argument cmd_arg
)
414 miracle_unit src_unit
= miracle_get_unit(cmd_arg
->unit
);
415 int dest_unit_id
= -1;
416 char *string
= (char*) cmd_arg
->argument
;
417 if ( string
!= NULL
&& ( string
[ 0 ] == 'U' || string
[ 0 ] == 'u' ) && strlen( string
) > 1 )
418 dest_unit_id
= atoi( string
+ 1 );
420 if ( src_unit
!= NULL
&& dest_unit_id
!= -1 )
422 miracle_unit dest_unit
= miracle_get_unit( dest_unit_id
);
423 if ( dest_unit
!= NULL
&& !miracle_unit_is_offline(dest_unit
) && dest_unit
!= src_unit
)
425 miracle_unit_transfer( dest_unit
, src_unit
);
426 return RESPONSE_SUCCESS
;
429 return RESPONSE_INVALID_UNIT
;