]> git.sesse.net Git - vlc/blobdiff - modules/control/lirc.c
dbus: register object path before bus names
[vlc] / modules / control / lirc.c
index de500e10972c8e68254c0c43df98e9aa58de7c20..94841071398aea3b5dbdcd66589bfad41938f37c 100644 (file)
@@ -25,6 +25,7 @@
  * Preamble
  *****************************************************************************/
 
+#include <errno.h>
 #include <fcntl.h>
 
 #ifdef HAVE_CONFIG_H
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
-#include <vlc_osd.h>
+#include <vlc_keys.h>
+
+#ifdef HAVE_POLL
+# include <poll.h>
+#endif
 
 #include <lirc/lirc_client.h>
 
-#define LIRC_TEXT N_("Change the lirc configuration file.")
+#define LIRC_TEXT N_("Change the lirc configuration file")
 #define LIRC_LONGTEXT N_( \
     "Tell lirc to read this configuration file. By default it " \
     "searches in the users home directory." )
 
+/*****************************************************************************
+ * Module descriptor
+ *****************************************************************************/
+static int  Open    ( vlc_object_t * );
+static void Close   ( vlc_object_t * );
+
+vlc_module_begin ()
+    set_shortname( N_("Infrared") )
+    set_category( CAT_INTERFACE )
+    set_subcategory( SUBCAT_INTERFACE_CONTROL )
+    set_description( N_("Infrared remote control interface") )
+    set_capability( "interface", 0 )
+    set_callbacks( Open, Close )
+
+    add_string( "lirc-file", NULL,
+                LIRC_TEXT, LIRC_LONGTEXT, true )
+vlc_module_end ()
+
 /*****************************************************************************
  * intf_sys_t: description and status of FB interface
  *****************************************************************************/
 struct intf_sys_t
 {
-    char *psz_file;
     struct lirc_config *config;
+    vlc_thread_t thread;
+    int i_fd;
 };
 
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-static int  Open    ( vlc_object_t * );
-static void Close   ( vlc_object_t * );
-static void Run     ( intf_thread_t * );
+static void *Run( void * );
 
-/*****************************************************************************
- * Module descriptor
- *****************************************************************************/
-vlc_module_begin();
-    set_shortname( N_("Infrared") );
-    set_category( CAT_INTERFACE );
-    set_subcategory( SUBCAT_INTERFACE_CONTROL );
-    set_description( N_("Infrared remote control interface") );
-    set_capability( "interface", 0 );
-    set_callbacks( Open, Close );
-
-    add_string( "lirc-file", NULL, NULL,
-                LIRC_TEXT, LIRC_LONGTEXT, true );
-vlc_module_end();
+static void Process( intf_thread_t * );
 
 /*****************************************************************************
  * Open: initialize interface
@@ -80,42 +89,46 @@ vlc_module_end();
 static int Open( vlc_object_t *p_this )
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
-    int i_fd;
+    intf_sys_t *p_sys;
 
     /* Allocate instance and initialize some members */
-    p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
-    if( p_intf->p_sys == NULL )
-    {
-        msg_Err( p_intf, "out of memory" );
-        return 1;
-    }
-
-    p_intf->pf_run = Run;
+    p_intf->p_sys = p_sys = malloc( sizeof( intf_sys_t ) );
+    if( p_sys == NULL )
+        return VLC_ENOMEM;
 
-    p_intf->p_sys->psz_file = var_CreateGetNonEmptyString( p_intf, "lirc-file" );
-
-    i_fd = lirc_init( "vlc", 1 );
-    if( i_fd == -1 )
+    p_sys->i_fd = lirc_init( "vlc", 1 );
+    if( p_sys->i_fd == -1 )
     {
         msg_Err( p_intf, "lirc initialisation failed" );
-        free( p_intf->p_sys->psz_file );
-        free( p_intf->p_sys );
-        return 1;
+        goto error;
     }
 
     /* We want polling */
-    fcntl( i_fd, F_SETFL, fcntl( i_fd, F_GETFL ) | O_NONBLOCK );
+    fcntl( p_sys->i_fd, F_SETFL, fcntl( p_sys->i_fd, F_GETFL ) | O_NONBLOCK );
 
-    if( lirc_readconfig( p_intf->p_sys->psz_file, &p_intf->p_sys->config, NULL ) != 0 )
+    /* Read the configuration file */
+    char *psz_file = var_InheritString( p_intf, "lirc-file" );
+    int val = lirc_readconfig( psz_file, &p_sys->config, NULL );
+    free( psz_file );
+    if( val != 0 )
     {
         msg_Err( p_intf, "failure while reading lirc config" );
         lirc_deinit();
-        free( p_intf->p_sys->psz_file );
-        free( p_intf->p_sys );
-        return 1;
+        goto error;
+    }
+
+    if( vlc_clone( &p_sys->thread, Run, p_intf, VLC_THREAD_PRIORITY_LOW ) )
+    {
+        lirc_freeconfig( p_sys->config );
+        lirc_deinit();
+        goto error;
     }
 
-    return 0;
+    return VLC_SUCCESS;
+
+error:
+    free( p_sys );
+    return VLC_EGENERIC;
 }
 
 /*****************************************************************************
@@ -124,76 +137,74 @@ static int Open( vlc_object_t *p_this )
 static void Close( vlc_object_t *p_this )
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
+    intf_sys_t *p_sys = p_intf->p_sys;
+
+    vlc_cancel( p_sys->thread );
+    vlc_join( p_sys->thread, NULL );
 
     /* Destroy structure */
-    free( p_intf->p_sys->psz_file );
-    lirc_freeconfig( p_intf->p_sys->config );
+    lirc_freeconfig( p_sys->config );
     lirc_deinit();
-    free( p_intf->p_sys );
+    free( p_sys );
 }
 
 /*****************************************************************************
  * Run: main loop
  *****************************************************************************/
-static void Run( intf_thread_t *p_intf )
+static void *Run( void *data )
 {
-    char *code, *c;
+    intf_thread_t *p_intf = data;
+    intf_sys_t *p_sys = p_intf->p_sys;
 
-    while( !intf_ShouldDie( p_intf ) )
-    {
-        /* Sleep a bit */
-        msleep( INTF_IDLE_SLEEP );
+    struct pollfd ufd;
+    ufd.fd = p_sys->i_fd;
+    ufd.events = POLLIN;
 
-        /* We poll the lircsocket */
-        if( lirc_nextcode(&code) != 0 )
+    for( ;; )
+    {
+        /* Wait for data */
+        if( poll( &ufd, 1, -1 ) == -1 )
         {
+            if( errno == EINTR )
+                continue;
             break;
         }
 
+        /* Process */
+        int canc = vlc_savecancel();
+        Process( p_intf );
+        vlc_restorecancel(canc);
+    }
+    return NULL;
+}
+
+static void Process( intf_thread_t *p_intf )
+{
+    for( ;; )
+    {
+        char *code, *c;
+        if( lirc_nextcode( &code ) )
+            return;
+
         if( code == NULL )
-        {
-            continue;
-        }
+            return;
 
-        while( !intf_ShouldDie( p_intf )
-                && (lirc_code2char( p_intf->p_sys->config, code, &c ) == 0)
+        while( (lirc_code2char( p_intf->p_sys->config, code, &c ) == 0)
                 && (c != NULL) )
         {
-            vlc_value_t keyval;
-
             if( !strncmp( "key-", c, 4 ) )
             {
-                keyval.i_int = config_GetInt( p_intf, c );
-                var_Set( p_intf->p_libvlc, "key-pressed", keyval );
-            }
-            else if( !strncmp( "menu ", c, 5)  )
-            {
-                if( !strncmp( c, "menu on", 7 ) ||
-                    !strncmp( c, "menu show", 9 ))
-                    osd_MenuShow( VLC_OBJECT(p_intf) );
-                else if( !strncmp( c, "menu off", 8 ) ||
-                         !strncmp( c, "menu hide", 9 ) )
-                    osd_MenuHide( VLC_OBJECT(p_intf) );
-                else if( !strncmp( c, "menu up", 7 ) )
-                    osd_MenuUp( VLC_OBJECT(p_intf) );
-                else if( !strncmp( c, "menu down", 9 ) )
-                    osd_MenuDown( VLC_OBJECT(p_intf) );
-                else if( !strncmp( c, "menu left", 9 ) )
-                    osd_MenuPrev( VLC_OBJECT(p_intf) );
-                else if( !strncmp( c, "menu right", 10 ) )
-                    osd_MenuNext( VLC_OBJECT(p_intf) );
-                else if( !strncmp( c, "menu select", 11 ) )
-                    osd_MenuActivate( VLC_OBJECT(p_intf) );
+                vlc_action_t i_key = vlc_GetActionId( c );
+                if( i_key )
+                    var_SetInteger( p_intf->p_libvlc, "key-action", i_key );
                 else
-                {
-                    msg_Err( p_intf, "Please provide one of the following parameters:" );
-                    msg_Err( p_intf, "[on|off|up|down|left|right|select]" );
-                    break;
-                }
+                    msg_Err( p_intf, "Unknown hotkey '%s'", c );
             }
             else
             {
-                msg_Err( p_intf, "this doesn't appear to be a valid keycombo lirc sent us. Please look at the doc/lirc/example.lirc file in VLC" );
+                msg_Err( p_intf, "this doesn't appear to be a valid keycombo "
+                                 "lirc sent us. Please look at the "
+                                 "doc/lirc/example.lirc file in VLC" );
                 break;
             }
         }