2 * consumer_westley.c -- a libxml2 serialiser of mlt service networks
3 * Copyright (C) 2003-2004 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.
21 #include "consumer_valerie.h"
22 #include <valerie/valerie.h>
23 #include <valerie/valerie_remote.h>
24 #include <framework/mlt.h>
31 static int consumer_is_stopped( mlt_consumer
this );
32 static int consumer_start( mlt_consumer
this );
34 /** This is what will be called by the factory
37 mlt_consumer
consumer_valerie_init( char *arg
)
39 // Create the consumer object
40 mlt_consumer
this = calloc( sizeof( struct mlt_consumer_s
), 1 );
42 // If no malloc'd and consumer init ok
43 if ( this != NULL
&& mlt_consumer_init( this, NULL
) == 0 )
45 if ( arg
!= NULL
&& strchr( arg
, ':' ) )
48 int port
= atoi( strchr( arg
, ':' ) + 1 );
49 mlt_properties_set( mlt_consumer_properties( this ), "server", arg
);
50 temp
= mlt_properties_get( mlt_consumer_properties( this ), "server" );
51 *( strchr( temp
, ':' ) ) = '\0';
52 mlt_properties_set_int( mlt_consumer_properties( this ), "port", port
);
56 mlt_properties_set( mlt_consumer_properties( this ), "server", arg
== NULL ?
"localhost" : arg
);
57 mlt_properties_set_int( mlt_consumer_properties( this ), "port", 5250 );
60 mlt_properties_set_int( mlt_consumer_properties( this ), "unit", 0 );
61 mlt_properties_set( mlt_consumer_properties( this ), "command", "append" );
63 // Allow thread to be started/stopped
64 this->start
= consumer_start
;
65 this->is_stopped
= consumer_is_stopped
;
67 // Return the consumer produced
71 // malloc or consumer init failed
78 static int consumer_start( mlt_consumer
this )
80 // Get the producer service
81 mlt_service service
= mlt_service_producer( mlt_consumer_service( this ) );
83 // Get the properties object
84 mlt_properties properties
= mlt_consumer_properties( this );
86 // Get all the properties now
87 char *server
= mlt_properties_get( properties
, "server" );
88 int port
= mlt_properties_get_int( properties
, "port" );
89 char *command
= mlt_properties_get( properties
, "command" );
90 int unit
= mlt_properties_get_int( properties
, "unit" );
91 char *title
= mlt_properties_get( properties
, "title" );
93 // If this is a reuse, then a valerie object will exist
94 valerie connection
= mlt_properties_get_data( properties
, "connection", NULL
);
96 if ( service
!= NULL
)
98 // Initiate the connection if required
99 if ( connection
== NULL
)
101 valerie_parser parser
= valerie_parser_init_remote( server
, port
);
102 connection
= valerie_init( parser
);
103 if ( valerie_connect( connection
) == valerie_ok
)
105 mlt_properties_set_data( properties
, "connection", connection
, 0, ( mlt_destructor
)valerie_close
, NULL
);
106 mlt_properties_set_data( properties
, "parser", parser
, 0, ( mlt_destructor
)valerie_parser_close
, NULL
);
110 fprintf( stderr
, "Unable to connect to the server at %s:%d\n", server
, port
);
111 valerie_close( connection
);
112 valerie_parser_close( parser
);
117 // If we have connection, push the service over
118 if ( connection
!= NULL
)
122 // Set the title if provided
124 mlt_properties_set( mlt_service_properties( service
), "title", title
);
125 else if ( mlt_properties_get( mlt_service_properties( service
), "title" ) == NULL
)
126 mlt_properties_set( mlt_service_properties( service
), "title", "Anonymous Submission" );
129 error
= valerie_unit_push( connection
, unit
, command
, service
);
132 if ( error
!= valerie_ok
)
133 fprintf( stderr
, "Push failed on %s:%d %s u%d (%d)\n", server
, port
, command
, unit
, error
);
137 mlt_consumer_stop( this );
138 mlt_consumer_stopped( this );
143 static int consumer_is_stopped( mlt_consumer
this )