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
);
133 valerie_response_printf( cmd_arg
->response
, 1024, "\n" );
138 static int filter_files( const struct dirent
*de
)
140 return de
->d_name
[ 0 ] != '.';
143 /** List clips in a directory.
145 response_codes
miracle_list_clips( command_argument cmd_arg
)
147 response_codes error
= RESPONSE_BAD_FILE
;
148 const char *dir_name
= (const char*) cmd_arg
->argument
;
151 struct dirent
**de
= NULL
;
154 snprintf( fullname
, 1023, "%s%s", cmd_arg
->root_dir
, dir_name
);
155 dir
= opendir( fullname
);
159 error
= RESPONSE_SUCCESS_N
;
160 n
= scandir( fullname
, &de
, filter_files
, alphasort
);
161 for (i
= 0; i
< n
; i
++ )
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
);
167 for (i
= 0; i
< n
; i
++ )
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
);
177 valerie_response_write( cmd_arg
->response
, "\n", 1 );
183 /** Set a server configuration property.
186 response_codes
miracle_set_global_property( command_argument cmd_arg
)
188 char *key
= (char*) cmd_arg
->argument
;
191 value
= strchr( key
, '=' );
193 return RESPONSE_OUT_OF_RANGE
;
196 miracle_log( LOG_DEBUG
, "SET %s = %s", key
, value
);
198 if ( strncasecmp( key
, "root", 1024) == 0 )
200 int len
= strlen(value
);
203 /* stop all units and unload clips */
204 for (i
= 0; i
< MAX_UNITS
; i
++)
206 if (g_units
[i
] != NULL
)
207 miracle_unit_terminate( g_units
[i
] );
210 /* set the property */
211 strncpy( cmd_arg
->root_dir
, value
, 1023 );
213 /* add a trailing slash if needed */
214 if ( cmd_arg
->root_dir
[ len
- 1 ] != '/')
216 cmd_arg
->root_dir
[ len
] = '/';
217 cmd_arg
->root_dir
[ len
+ 1 ] = '\0';
221 return RESPONSE_OUT_OF_RANGE
;
223 return RESPONSE_SUCCESS
;
226 /** Get a server configuration property.
229 response_codes
miracle_get_global_property( command_argument cmd_arg
)
231 char *key
= (char*) cmd_arg
->argument
;
233 if ( strncasecmp( key
, "root", 1024) == 0 )
235 valerie_response_write( cmd_arg
->response
, cmd_arg
->root_dir
, strlen(cmd_arg
->root_dir
) );
236 return RESPONSE_SUCCESS_1
;
239 return RESPONSE_OUT_OF_RANGE
;
241 return RESPONSE_SUCCESS
;