root corrections to miracle
[melted] / src / miracle / miracle_commands.c
1 /*
2 * global_commands.c
3 * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.org>
5 *
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.
10 *
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.
15 *
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.
19 */
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <sys/poll.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <dirent.h>
30 #include <pthread.h>
31
32 #include "miracle_unit.h"
33 #include "miracle_commands.h"
34 #include "miracle_log.h"
35
36 static miracle_unit g_units[MAX_UNITS];
37
38
39 /** Return the miracle_unit given a numeric index.
40 */
41
42 miracle_unit miracle_get_unit( int n )
43 {
44 if (n < MAX_UNITS)
45 return g_units[n];
46 else
47 return NULL;
48 }
49
50 /** Destroy the miracle_unit given its numeric index.
51 */
52
53 void miracle_delete_unit( int n )
54 {
55 if (n < MAX_UNITS)
56 {
57 miracle_unit unit = miracle_get_unit(n);
58 if (unit != NULL)
59 {
60 miracle_unit_close( unit );
61 g_units[ n ] = NULL;
62 miracle_log( LOG_NOTICE, "Deleted unit U%d.", n );
63 }
64 }
65 }
66
67 /** Destroy all allocated units on the server.
68 */
69
70 void miracle_delete_all_units( void )
71 {
72 int i;
73 for (i = 0; i < MAX_UNITS; i++)
74 {
75 if ( miracle_get_unit(i) != NULL )
76 {
77 miracle_unit_close( miracle_get_unit(i) );
78 miracle_log( LOG_NOTICE, "Deleted unit U%d.", i );
79 }
80 }
81 }
82
83 /** Add a DV virtual vtr to the server.
84 */
85 response_codes miracle_add_unit( command_argument cmd_arg )
86 {
87 int i = 0;
88 for ( i = 0; i < MAX_UNITS; i ++ )
89 if ( g_units[ i ] == NULL )
90 break;
91
92 if ( i < MAX_UNITS )
93 {
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;
99 }
100
101 return RESPONSE_ERROR;
102 }
103
104
105 /** List all AV/C nodes on the bus.
106 */
107 response_codes miracle_list_nodes( command_argument cmd_arg )
108 {
109 response_codes error = RESPONSE_SUCCESS_N;
110 return error;
111 }
112
113
114 /** List units already added to server.
115 */
116 response_codes miracle_list_units( command_argument cmd_arg )
117 {
118 response_codes error = RESPONSE_SUCCESS_N;
119 int i = 0;
120
121 for ( i = 0; i < MAX_UNITS; i ++ )
122 {
123 miracle_unit unit = miracle_get_unit( i );
124 if ( unit != NULL )
125 {
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 );
131 }
132 }
133 valerie_response_printf( cmd_arg->response, 1024, "\n" );
134
135 return error;
136 }
137
138 static int filter_files( const struct dirent *de )
139 {
140 return de->d_name[ 0 ] != '.';
141 }
142
143 /** List clips in a directory.
144 */
145 response_codes miracle_list_clips( command_argument cmd_arg )
146 {
147 response_codes error = RESPONSE_BAD_FILE;
148 const char *dir_name = (const char*) cmd_arg->argument;
149 DIR *dir;
150 char fullname[1024];
151 struct dirent **de = NULL;
152 int i, n;
153
154 snprintf( fullname, 1023, "%s%s", cmd_arg->root_dir, dir_name );
155 dir = opendir( fullname );
156 if (dir != NULL)
157 {
158 struct stat info;
159 error = RESPONSE_SUCCESS_N;
160 n = scandir( fullname, &de, filter_files, alphasort );
161 for (i = 0; i < n; i++ )
162 {
163 snprintf( fullname, 1023, "%s%s/%s", cmd_arg->root_dir, dir_name, de[i]->d_name );
164 if ( stat( fullname, &info ) == 0 && S_ISDIR( info.st_mode ) )
165 valerie_response_printf( cmd_arg->response, 1024, "\"%s/\"\n", de[i]->d_name );
166 }
167 for (i = 0; i < n; i++ )
168 {
169 snprintf( fullname, 1023, "%s%s/%s", cmd_arg->root_dir, dir_name, de[i]->d_name );
170 if ( lstat( fullname, &info ) == 0 &&
171 ( S_ISREG( info.st_mode ) || S_ISLNK( info.st_mode ) || ( strstr( fullname, ".clip" ) && info.st_mode | S_IXUSR ) ) )
172 valerie_response_printf( cmd_arg->response, 1024, "\"%s\" %llu\n", de[i]->d_name, (unsigned long long) info.st_size );
173 free( de[ i ] );
174 }
175 free( de );
176 closedir( dir );
177 valerie_response_write( cmd_arg->response, "\n", 1 );
178 }
179
180 return error;
181 }
182
183 /** Set a server configuration property.
184 */
185
186 response_codes miracle_set_global_property( command_argument cmd_arg )
187 {
188 char *key = (char*) cmd_arg->argument;
189 char *value = NULL;
190
191 value = strchr( key, '=' );
192 if (value == NULL)
193 return RESPONSE_OUT_OF_RANGE;
194 *value = 0;
195 value++;
196 miracle_log( LOG_DEBUG, "SET %s = %s", key, value );
197
198 if ( strncasecmp( key, "root", 1024) == 0 )
199 {
200 int len = strlen(value);
201 int i;
202
203 /* stop all units and unload clips */
204 for (i = 0; i < MAX_UNITS; i++)
205 {
206 if (g_units[i] != NULL)
207 miracle_unit_terminate( g_units[i] );
208 }
209
210 /* set the property */
211 strncpy( cmd_arg->root_dir, value, 1023 );
212
213 /* add a trailing slash if needed */
214 if ( len && cmd_arg->root_dir[ len - 1 ] != '/')
215 {
216 cmd_arg->root_dir[ len ] = '/';
217 cmd_arg->root_dir[ len + 1 ] = '\0';
218 }
219 }
220 else
221 return RESPONSE_OUT_OF_RANGE;
222
223 return RESPONSE_SUCCESS;
224 }
225
226 /** Get a server configuration property.
227 */
228
229 response_codes miracle_get_global_property( command_argument cmd_arg )
230 {
231 char *key = (char*) cmd_arg->argument;
232
233 if ( strncasecmp( key, "root", 1024) == 0 )
234 {
235 valerie_response_write( cmd_arg->response, cmd_arg->root_dir, strlen(cmd_arg->root_dir) );
236 return RESPONSE_SUCCESS_1;
237 }
238 else
239 return RESPONSE_OUT_OF_RANGE;
240
241 return RESPONSE_SUCCESS;
242 }
243
244