X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmelted%2Fmelted.c;h=f52e836a5fbcff7920a4e639fd0a544990fa00e9;hb=dad3a67a6eca96aa207bdd92d9cfce9fc88cc4fa;hp=1802d3d1ad6859f3b62b3d646253ff618cafc437;hpb=da3b0d0be0203fcd0000ab4726373c7b720e170d;p=melted diff --git a/src/melted/melted.c b/src/melted/melted.c index 1802d3d..f52e836 100644 --- a/src/melted/melted.c +++ b/src/melted/melted.c @@ -31,10 +31,14 @@ #include #include +#include +#include /* Application header files */ #include "melted_server.h" #include "melted_log.h" +#include "melted_commands.h" +#include "melted_unit.h" /** Our server context. */ @@ -54,7 +58,7 @@ static void main_cleanup( ) void usage( char *app ) { - fprintf( stderr, "Usage: %s [-test] [-port NNNN]\n", app ); + fprintf( stderr, "Usage: %s [-prio NNNN|max] [-test] [-port NNNN] [-c config-file]\n", app ); exit( 0 ); } @@ -66,14 +70,32 @@ int main( int argc, char **argv ) int error = 0; int index = 0; int background = 1; - struct timespec tm = { 5, 0 }; - struct sched_param scp; + struct timespec tm = { 1, 0 }; + mvcp_status_t status; + struct { + int clip_index; + int is_logged; + } asrun[ MAX_UNITS ]; + const char *config_file = "/etc/melted.conf"; - // Use realtime scheduling if possible - memset( &scp, '\0', sizeof( scp ) ); - scp.sched_priority = sched_get_priority_max( SCHED_FIFO ) - 1; #ifndef __DARWIN__ - sched_setscheduler( 0, SCHED_FIFO, &scp ); + for ( index = 1; index < argc; index ++ ) + { + if ( !strcmp( argv[ index ], "-prio" ) ) + { + struct sched_param scp; + char* prio = argv[ ++ index ]; + + memset( &scp, 0, sizeof( scp ) ); + + if( !strcmp( prio, "max" ) ) + scp.sched_priority = sched_get_priority_max( SCHED_FIFO ) - 1; + else + scp.sched_priority = atoi(prio); + + sched_setscheduler( 0, SCHED_FIFO, &scp ); + } + } #endif mlt_factory_init( NULL ); @@ -88,6 +110,10 @@ int main( int argc, char **argv ) melted_server_set_proxy( server, argv[ ++ index ] ); else if ( !strcmp( argv[ index ], "-test" ) ) background = 0; + else if ( !strcmp( argv[ index ], "-c" ) ) + config_file = argv[ ++ index ]; + else if ( !strcmp( argv[ index ], "-prio" ) ) + index++; else usage( argv[ 0 ] ); } @@ -99,24 +125,55 @@ int main( int argc, char **argv ) if ( fork() ) return 0; setsid(); - melted_log_init( log_syslog, LOG_INFO ); + melted_log_init( log_syslog, LOG_NOTICE ); } else { + mlt_log_set_level( MLT_LOG_VERBOSE ); melted_log_init( log_stderr, LOG_DEBUG ); } atexit( main_cleanup ); /* Set the config script */ - melted_server_set_config( server, "/etc/melted.conf" ); + melted_server_set_config( server, config_file ); /* Execute the server */ error = melted_server_execute( server ); + /* Initialize the as-run log tracking */ + for ( index = 0; index < MAX_UNITS; index ++ ) + asrun[ index ].clip_index = -1; + /* We need to wait until we're exited.. */ while ( !server->shutdown ) + { nanosleep( &tm, NULL ); + /* As-run logging */ + for ( index = 0; !error && index < MAX_UNITS; index ++ ) + { + melted_unit unit = melted_get_unit( index ); + + if ( unit && melted_unit_get_status( unit, &status ) == 0 ) + { + int length = status.length - 60; + + /* Reset the logging if needed */ + if ( status.clip_index != asrun[ index ].clip_index || status.position < length || status.status == unit_not_loaded ) + { + asrun[ index ].clip_index = status.clip_index; + asrun[ index ].is_logged = 0; + } + /* Log as-run only once when near the end */ + if ( ! asrun[ index ].is_logged && status.length > 0 && status.position > length ) + { + melted_log( LOG_NOTICE, "AS-RUN U%d \"%s\" len %d pos %d", index, status.clip, status.length, status.position ); + asrun[ index ].is_logged = 1; + } + } + } + } + return error; }