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.
24 #include <sys/types.h>
32 #include "miracle_unit.h"
33 #include "miracle_commands.h"
34 #include "miracle_log.h"
36 static miracle_unit g_units
[MAX_UNITS
];
39 /** Return the miracle_unit given a numeric index.
42 miracle_unit
miracle_get_unit( int n
)
50 /** Destroy the miracle_unit given its numeric index.
53 void miracle_delete_unit( int n
)
57 miracle_unit unit
= miracle_get_unit(n
);
60 miracle_unit_close( unit
);
62 miracle_log( LOG_NOTICE
, "Deleted unit U%d.", n
);
67 /** Destroy all allocated units on the server.
70 void miracle_delete_all_units( void )
73 for (i
= 0; i
< MAX_UNITS
; i
++)
75 if ( miracle_get_unit(i
) != NULL
)
77 miracle_unit_close( miracle_get_unit(i
) );
78 miracle_log( LOG_NOTICE
, "Deleted unit U%d.", i
);
83 /** Add a DV virtual vtr to the server.
85 response_codes
miracle_add_unit( command_argument cmd_arg
)
88 for ( i
= 0; i
< MAX_UNITS
; i
++ )
89 if ( g_units
[ i
] == NULL
)
94 char *arg
= cmd_arg
->argument
;
95 g_units
[ i
] = miracle_unit_init( i
, arg
);
96 if ( g_units
[ i
] != NULL
)
97 miracle_unit_set_notifier( g_units
[ i
], valerie_parser_get_notifier( cmd_arg
->parser
), cmd_arg
->root_dir
);
98 return g_units
[ i
] != NULL ? RESPONSE_SUCCESS
: RESPONSE_ERROR
;
101 return RESPONSE_ERROR
;
105 /** List all AV/C nodes on the bus.
107 response_codes
miracle_list_nodes( command_argument cmd_arg
)
109 response_codes error
= RESPONSE_SUCCESS_N
;
114 /** List units already added to server.
116 response_codes
miracle_list_units( command_argument cmd_arg
)
118 response_codes error
= RESPONSE_SUCCESS_N
;
121 for ( i
= 0; i
< MAX_UNITS
; i
++ )
123 miracle_unit unit
= miracle_get_unit( i
);
126 mlt_properties properties
= unit
->properties
;
127 char *constructor
= mlt_properties_get( properties
, "constructor" );
128 int node
= mlt_properties_get_int( properties
, "node" );
129 int online
= !mlt_properties_get_int( properties
, "offline" );
130 valerie_response_printf( cmd_arg
->response
, 1024, "U%d %02d %s %d\n", i
, node
, constructor
, online
);
137 static int filter_files( const struct dirent
*de
)
139 return de
->d_name
[ 0 ] != '.';
142 /** List clips in a directory.
144 response_codes
miracle_list_clips( command_argument cmd_arg
)
146 response_codes error
= RESPONSE_BAD_FILE
;
147 const char *dir_name
= (const char*) cmd_arg
->argument
;
150 struct dirent
**de
= NULL
;
153 snprintf( fullname
, 1023, "%s%s", cmd_arg
->root_dir
, dir_name
);
154 dir
= opendir( fullname
);
158 error
= RESPONSE_SUCCESS_N
;
159 n
= scandir( fullname
, &de
, filter_files
, alphasort
);
160 for (i
= 0; i
< n
; i
++ )
162 snprintf( fullname
, 1023, "%s%s/%s", cmd_arg
->root_dir
, dir_name
, de
[i
]->d_name
);
163 if ( stat( fullname
, &info
) == 0 && S_ISDIR( info
.st_mode
) )
164 valerie_response_printf( cmd_arg
->response
, 1024, "\"%s/\"\n", de
[i
]->d_name
);
166 for (i
= 0; i
< n
; i
++ )
168 snprintf( fullname
, 1023, "%s%s/%s", cmd_arg
->root_dir
, dir_name
, de
[i
]->d_name
);
169 if ( lstat( fullname
, &info
) == 0 &&
170 ( S_ISREG( info
.st_mode
) || S_ISLNK( info
.st_mode
) || ( strstr( fullname
, ".clip" ) && info
.st_mode
| S_IXUSR
) ) )
171 valerie_response_printf( cmd_arg
->response
, 1024, "\"%s\" %llu\n", de
[i
]->d_name
, (unsigned long long) info
.st_size
);
176 valerie_response_write( cmd_arg
->response
, "\n", 1 );
182 /** Set a server configuration property.
185 response_codes
miracle_set_global_property( command_argument cmd_arg
)
187 char *key
= (char*) cmd_arg
->argument
;
190 value
= strchr( key
, '=' );
192 return RESPONSE_OUT_OF_RANGE
;
195 miracle_log( LOG_DEBUG
, "SET %s = %s", key
, value
);
197 if ( strncasecmp( key
, "root", 1024) == 0 )
199 int len
= strlen(value
);
202 /* stop all units and unload clips */
203 for (i
= 0; i
< MAX_UNITS
; i
++)
205 if (g_units
[i
] != NULL
)
206 miracle_unit_terminate( g_units
[i
] );
209 /* set the property */
210 strncpy( cmd_arg
->root_dir
, value
, 1023 );
212 /* add a trailing slash if needed */
213 if ( cmd_arg
->root_dir
[ len
- 1 ] != '/')
215 cmd_arg
->root_dir
[ len
] = '/';
216 cmd_arg
->root_dir
[ len
+ 1 ] = '\0';
220 return RESPONSE_OUT_OF_RANGE
;
222 return RESPONSE_SUCCESS
;
225 /** Get a server configuration property.
228 response_codes
miracle_get_global_property( command_argument cmd_arg
)
230 char *key
= (char*) cmd_arg
->argument
;
232 if ( strncasecmp( key
, "root", 1024) == 0 )
234 valerie_response_write( cmd_arg
->response
, cmd_arg
->root_dir
, strlen(cmd_arg
->root_dir
) );
235 return RESPONSE_SUCCESS_1
;
238 return RESPONSE_OUT_OF_RANGE
;
240 return RESPONSE_SUCCESS
;