audioscrobbler.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:34k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * audioscrobbler.c : audioscrobbler submission plugin
  3.  *****************************************************************************
  4.  * Copyright © 2006-2009 the VideoLAN team
  5.  * $Id: d287188505babf079035745fee26090bb5256766 $
  6.  *
  7.  * Author: Rafaël Carré <funman at videolanorg>
  8.  *         Ilkka Ollakka <ileoo at videolan org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /* audioscrobbler protocol version: 1.2
  25.  * http://www.audioscrobbler.net/development/protocol/
  26.  *
  27.  * TODO:    "Now Playing" feature (not mandatory)
  28.  */
  29. /*****************************************************************************
  30.  * Preamble
  31.  *****************************************************************************/
  32. #if defined( WIN32 ) 
  33. #include <time.h> 
  34. #endif 
  35. #ifdef HAVE_CONFIG_H
  36. # include "config.h"
  37. #endif
  38. #include <vlc_common.h>
  39. #include <vlc_plugin.h>
  40. #include <vlc_interface.h>
  41. #include <vlc_dialog.h>
  42. #include <vlc_meta.h>
  43. #include <vlc_md5.h>
  44. #include <vlc_stream.h>
  45. #include <vlc_url.h>
  46. #include <vlc_network.h>
  47. #include <vlc_playlist.h>
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. #define QUEUE_MAX 50
  52. /* Keeps track of metadata to be submitted */
  53. typedef struct audioscrobbler_song_t
  54. {
  55.     char        *psz_a;             /**< track artist     */
  56.     char        *psz_t;             /**< track title      */
  57.     char        *psz_b;             /**< track album      */
  58.     char        *psz_n;             /**< track number     */
  59.     int         i_l;                /**< track length     */
  60.     char        *psz_m;             /**< musicbrainz id   */
  61.     time_t      date;               /**< date since epoch */
  62.     mtime_t     i_start;            /**< playing start    */
  63. } audioscrobbler_song_t;
  64. struct intf_sys_t
  65. {
  66.     audioscrobbler_song_t   p_queue[QUEUE_MAX]; /**< songs not submitted yet*/
  67.     int                     i_songs;            /**< number of songs        */
  68.     vlc_mutex_t             lock;               /**< p_sys mutex            */
  69.     vlc_cond_t              wait;               /**< song to submit event   */
  70.     /* data about audioscrobbler session */
  71.     mtime_t                 next_exchange;      /**< when can we send data  */
  72.     unsigned int            i_interval;         /**< waiting interval (secs)*/
  73.     /* submission of played songs */
  74.     char                    *psz_submit_host;   /**< where to submit data   */
  75.     int                     i_submit_port;      /**< port to which submit   */
  76.     char                    *psz_submit_file;   /**< file to which submit   */
  77.     /* submission of playing song */
  78. #if 0 //NOT USED
  79.     char                    *psz_nowp_host;     /**< where to submit data   */
  80.     int                     i_nowp_port;        /**< port to which submit   */
  81.     char                    *psz_nowp_file;     /**< file to which submit   */
  82. #endif
  83.     bool                    b_handshaked;       /**< are we authenticated ? */
  84.     char                    psz_auth_token[33]; /**< Authentication token */
  85.     /* data about song currently playing */
  86.     audioscrobbler_song_t   p_current_song;     /**< song being played      */
  87.     mtime_t                 time_pause;         /**< time when vlc paused   */
  88.     mtime_t                 time_total_pauses;  /**< total time in pause    */
  89.     bool                    b_submit;           /**< do we have to submit ? */
  90.     bool                    b_state_cb;         /**< if we registered the
  91.                                                  * "state" callback         */
  92.     bool                    b_meta_read;        /**< if we read the song's
  93.                                                  * metadata already         */
  94. };
  95. static int  Open            ( vlc_object_t * );
  96. static void Close           ( vlc_object_t * );
  97. static void Run             ( intf_thread_t * );
  98. static int ItemChange       ( vlc_object_t *, const char *, vlc_value_t,
  99.                                 vlc_value_t, void * );
  100. static int PlayingChange    ( vlc_object_t *, const char *, vlc_value_t,
  101.                                 vlc_value_t, void * );
  102. static void AddToQueue      ( intf_thread_t * );
  103. static int Handshake        ( intf_thread_t * );
  104. static int ReadMetaData     ( intf_thread_t * );
  105. static void DeleteSong      ( audioscrobbler_song_t* );
  106. static int ParseURL         ( char *, char **, char **, int * );
  107. static void HandleInterval  ( mtime_t *, unsigned int * );
  108. /*****************************************************************************
  109.  * Module descriptor
  110.  ****************************************************************************/
  111. #define USERNAME_TEXT       N_("Username")
  112. #define USERNAME_LONGTEXT   N_("The username of your last.fm account")
  113. #define PASSWORD_TEXT       N_("Password")
  114. #define PASSWORD_LONGTEXT   N_("The password of your last.fm account")
  115. #define URL_TEXT            N_("Scrobbler URL")
  116. #define URL_LONGTEXT        N_("The URL set for an alternative scrobbler engine")
  117. /* This error value is used when last.fm plugin has to be unloaded. */
  118. #define VLC_AUDIOSCROBBLER_EFATAL -69
  119. /* last.fm client identifier */
  120. #define CLIENT_NAME     PACKAGE
  121. #define CLIENT_VERSION  VERSION
  122. /* HTTP POST request : to submit data */
  123. #define    POST_REQUEST "POST /%s HTTP/1.1n"                               
  124.                         "Accept-Encoding: identityn"                       
  125.                         "Content-length: %un"                              
  126.                         "Connection: closen"                               
  127.                         "Content-type: application/x-www-form-urlencodedn" 
  128.                         "Host: %sn"                                        
  129.                         "User-agent: VLC media player/%srn"               
  130.                         "rn"                                              
  131.                         "%srn"                                            
  132.                         "rn"
  133. vlc_module_begin ()
  134.     set_category( CAT_INTERFACE )
  135.     set_subcategory( SUBCAT_INTERFACE_CONTROL )
  136.     set_shortname( N_( "Audioscrobbler" ) )
  137.     set_description( N_("Submission of played songs to last.fm") )
  138.     add_string( "lastfm-username", "", NULL,
  139.                 USERNAME_TEXT, USERNAME_LONGTEXT, false )
  140.     add_password( "lastfm-password", "", NULL,
  141.                 PASSWORD_TEXT, PASSWORD_LONGTEXT, false )
  142.     add_string( "scrobbler-url", "post.audioscrobbler.com", NULL,
  143.                 URL_TEXT, URL_LONGTEXT, false )
  144.     set_capability( "interface", 0 )
  145.     set_callbacks( Open, Close )
  146. vlc_module_end ()
  147. /*****************************************************************************
  148.  * Open: initialize and create stuff
  149.  *****************************************************************************/
  150. static int Open( vlc_object_t *p_this )
  151. {
  152.     playlist_t      *p_playlist;
  153.     intf_thread_t   *p_intf     = ( intf_thread_t* ) p_this;
  154.     intf_sys_t      *p_sys      = calloc( 1, sizeof( intf_sys_t ) );
  155.     if( !p_sys )
  156.         return VLC_ENOMEM;
  157.     p_intf->p_sys = p_sys;
  158.     vlc_mutex_init( &p_sys->lock );
  159.     vlc_cond_init( &p_sys->wait );
  160.     p_playlist = pl_Hold( p_intf );
  161.     PL_LOCK;
  162.     var_AddCallback( p_playlist, "item-current", ItemChange, p_intf );
  163.     PL_UNLOCK;
  164.     pl_Release( p_intf );
  165.     p_intf->pf_run = Run;
  166.     return VLC_SUCCESS;
  167. }
  168. /*****************************************************************************
  169.  * Close: destroy interface stuff
  170.  *****************************************************************************/
  171. static void Close( vlc_object_t *p_this )
  172. {
  173.     playlist_t                  *p_playlist;
  174.     input_thread_t              *p_input;
  175.     intf_thread_t               *p_intf = ( intf_thread_t* ) p_this;
  176.     intf_sys_t                  *p_sys  = p_intf->p_sys;
  177.     p_playlist = pl_Hold( p_intf );
  178.     if( p_playlist )
  179.     {
  180.         var_DelCallback( p_playlist, "item-current", ItemChange, p_intf );
  181.         p_input = playlist_CurrentInput( p_playlist );
  182.         if ( p_input )
  183.         {
  184.             if( p_sys->b_state_cb )
  185.                 var_DelCallback( p_input, "intf-event", PlayingChange, p_intf );
  186.             vlc_object_release( p_input );
  187.         }
  188.         pl_Release( p_intf );
  189.     }
  190.     int i;
  191.     for( i = 0; i < p_sys->i_songs; i++ )
  192.         DeleteSong( &p_sys->p_queue[i] );
  193.     free( p_sys->psz_submit_host );
  194.     free( p_sys->psz_submit_file );
  195. #if 0 //NOT USED
  196.     free( p_sys->psz_nowp_host );
  197.     free( p_sys->psz_nowp_file );
  198. #endif
  199.     vlc_cond_destroy( &p_sys->wait );
  200.     vlc_mutex_destroy( &p_sys->lock );
  201.     free( p_sys );
  202. }
  203. /*****************************************************************************
  204.  * Run : call Handshake() then submit songs
  205.  *****************************************************************************/
  206. static void Run( intf_thread_t *p_intf )
  207. {
  208.     char                    *psz_submit, *psz_submit_song, *psz_submit_tmp;
  209.     int                     i_net_ret;
  210.     int                     i_song;
  211.     uint8_t                 p_buffer[1024];
  212.     char                    *p_buffer_pos;
  213.     int                     i_post_socket;
  214.     int                     canc = vlc_savecancel();
  215.     intf_sys_t *p_sys = p_intf->p_sys;
  216.     /* main loop */
  217.     for( ;; )
  218.     {
  219.         bool b_wait = false;
  220.         vlc_restorecancel( canc );
  221.         vlc_mutex_lock( &p_sys->lock );
  222.         mutex_cleanup_push( &p_sys->lock );
  223.         if( mdate() < p_sys->next_exchange )
  224.             /* wait until we can resubmit, i.e.  */
  225.             b_wait = vlc_cond_timedwait( &p_sys->wait, &p_sys->lock,
  226.                                           p_sys->next_exchange ) == 0;
  227.         else
  228.             /* wait for data to submit */
  229.             /* we are signaled each time there is a song to submit */
  230.             vlc_cond_wait( &p_sys->wait, &p_sys->lock );
  231.         vlc_cleanup_run();
  232.         canc = vlc_savecancel();
  233.         if( b_wait )
  234.             continue; /* holding on until next_exchange */
  235.         /* handshake if needed */
  236.         if( p_sys->b_handshaked == false )
  237.         {
  238.             msg_Dbg( p_intf, "Handshaking with last.fm ..." );
  239.             switch( Handshake( p_intf ) )
  240.             {
  241.                 case VLC_ENOMEM:
  242.                     return;
  243.                 case VLC_ENOVAR:
  244.                     /* username not set */
  245.                     dialog_Fatal( p_intf,
  246.                         _("Last.fm username not set"),
  247.                         "%s", _("Please set a username or disable the "
  248.                         "audioscrobbler plugin, and restart VLC.n"
  249.                         "Visit http://www.last.fm/join/ to get an account.")
  250.                     );
  251.                     return;
  252.                 case VLC_SUCCESS:
  253.                     msg_Dbg( p_intf, "Handshake successfull :)" );
  254.                     p_sys->b_handshaked = true;
  255.                     p_sys->i_interval = 0;
  256.                     p_sys->next_exchange = mdate();
  257.                     break;
  258.                 case VLC_AUDIOSCROBBLER_EFATAL:
  259.                     msg_Warn( p_intf, "Exiting..." );
  260.                     return;
  261.                 case VLC_EGENERIC:
  262.                 default:
  263.                     /* protocol error : we'll try later */
  264.                     HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
  265.                     break;
  266.             }
  267.             /* if handshake failed let's restart the loop */
  268.             if( p_sys->b_handshaked == false )
  269.                 continue;
  270.         }
  271.         msg_Dbg( p_intf, "Going to submit some data..." );
  272.         /* The session may be invalid if there is a trailing n */
  273.         char *psz_ln = strrchr( p_sys->psz_auth_token, 'n' );
  274.         if( psz_ln )
  275.             *psz_ln = '';
  276.         if( !asprintf( &psz_submit, "s=%s", p_sys->psz_auth_token ) )
  277.         {   /* Out of memory */
  278.             return;
  279.         }
  280.         /* forge the HTTP POST request */
  281.         vlc_mutex_lock( &p_sys->lock );
  282.         audioscrobbler_song_t *p_song;
  283.         for( i_song = 0 ; i_song < p_sys->i_songs ; i_song++ )
  284.         {
  285.             p_song = &p_sys->p_queue[i_song];
  286.             if( !asprintf( &psz_submit_song,
  287.                     "&a%%5B%d%%5D=%s"
  288.                     "&t%%5B%d%%5D=%s"
  289.                     "&i%%5B%d%%5D=%u"
  290.                     "&o%%5B%d%%5D=P"
  291.                     "&r%%5B%d%%5D="
  292.                     "&l%%5B%d%%5D=%d"
  293.                     "&b%%5B%d%%5D=%s"
  294.                     "&n%%5B%d%%5D=%s"
  295.                     "&m%%5B%d%%5D=%s",
  296.                     i_song, p_song->psz_a,
  297.                     i_song, p_song->psz_t,
  298.                     i_song, (unsigned)p_song->date, /* HACK: %ju (uintmax_t) unsupported on Windows */
  299.                     i_song,
  300.                     i_song,
  301.                     i_song, p_song->i_l,
  302.                     i_song, p_song->psz_b,
  303.                     i_song, p_song->psz_n,
  304.                     i_song, p_song->psz_m
  305.             ) )
  306.             {   /* Out of memory */
  307.                 vlc_mutex_unlock( &p_sys->lock );
  308.                 return;
  309.             }
  310.             psz_submit_tmp = psz_submit;
  311.             if( !asprintf( &psz_submit, "%s%s",
  312.                     psz_submit_tmp, psz_submit_song ) )
  313.             {   /* Out of memory */
  314.                 free( psz_submit_tmp );
  315.                 free( psz_submit_song );
  316.                 vlc_mutex_unlock( &p_sys->lock );
  317.                 return;
  318.             }
  319.             free( psz_submit_song );
  320.             free( psz_submit_tmp );
  321.         }
  322.         vlc_mutex_unlock( &p_sys->lock );
  323.         i_post_socket = net_ConnectTCP( p_intf,
  324.             p_sys->psz_submit_host, p_sys->i_submit_port );
  325.         if ( i_post_socket == -1 )
  326.         {
  327.             /* If connection fails, we assume we must handshake again */
  328.             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
  329.             p_sys->b_handshaked = false;
  330.             free( psz_submit );
  331.             continue;
  332.         }
  333.         /* we transmit the data */
  334.         i_net_ret = net_Printf(
  335.             VLC_OBJECT( p_intf ), i_post_socket, NULL,
  336.             POST_REQUEST, p_sys->psz_submit_file,
  337.             (unsigned)strlen( psz_submit ), p_sys->psz_submit_host,
  338.             VERSION, psz_submit
  339.         );
  340.         free( psz_submit );
  341.         if ( i_net_ret == -1 )
  342.         {
  343.             /* If connection fails, we assume we must handshake again */
  344.             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
  345.             p_sys->b_handshaked = false;
  346.             continue;
  347.         }
  348.         i_net_ret = net_Read( p_intf, i_post_socket, NULL,
  349.                     p_buffer, 1023, false );
  350.         if ( i_net_ret <= 0 )
  351.         {
  352.             /* if we get no answer, something went wrong : try again */
  353.             continue;
  354.         }
  355.         net_Close( i_post_socket );
  356.         p_buffer[i_net_ret] = '';
  357.         p_buffer_pos = strstr( ( char * ) p_buffer, "FAILED" );
  358.         if ( p_buffer_pos )
  359.         {
  360.             msg_Warn( p_intf, "%s", p_buffer_pos );
  361.             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
  362.             continue;
  363.         }
  364.         p_buffer_pos = strstr( ( char * ) p_buffer, "BADSESSION" );
  365.         if ( p_buffer_pos )
  366.         {
  367.             msg_Err( p_intf, "Authentication failed (BADSESSION), are you connected to last.fm with another program ?" );
  368.             p_sys->b_handshaked = false;
  369.             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
  370.             continue;
  371.         }
  372.         p_buffer_pos = strstr( ( char * ) p_buffer, "OK" );
  373.         if ( p_buffer_pos )
  374.         {
  375.             int i;
  376.             for( i = 0; i < p_sys->i_songs; i++ )
  377.                 DeleteSong( &p_sys->p_queue[i] );
  378.             p_sys->i_songs = 0;
  379.             p_sys->i_interval = 0;
  380.             p_sys->next_exchange = mdate();
  381.             msg_Dbg( p_intf, "Submission successful!" );
  382.         }
  383.         else
  384.         {
  385.             msg_Err( p_intf, "Authentication failed, handshaking again (%s)", 
  386.                              p_buffer );
  387.             p_sys->b_handshaked = false;
  388.             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
  389.             continue;
  390.         }
  391.     }
  392.     vlc_restorecancel( canc );
  393. }
  394. /*****************************************************************************
  395.  * PlayingChange: Playing status change callback
  396.  *****************************************************************************/
  397. static int PlayingChange( vlc_object_t *p_this, const char *psz_var,
  398.                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
  399. {
  400.     intf_thread_t   *p_intf = ( intf_thread_t* ) p_data;
  401.     intf_sys_t      *p_sys  = p_intf->p_sys;
  402.     input_thread_t  *p_input = ( input_thread_t* )p_this;
  403.     vlc_value_t     state_value;
  404.     VLC_UNUSED( p_this ); VLC_UNUSED( psz_var );
  405.     if( newval.i_int != INPUT_EVENT_STATE ) return VLC_SUCCESS;
  406.     state_value.i_int = 0;
  407.     var_Get( p_input, "state", &state_value );
  408.     if( p_sys->b_meta_read == false && state_value.i_int >= PLAYING_S )
  409.     {
  410.         ReadMetaData( p_intf );
  411.         return VLC_SUCCESS;
  412.     }
  413.     if( state_value.i_int >= END_S )
  414.         AddToQueue( p_intf );
  415.     else if( state_value.i_int == PAUSE_S )
  416.         p_sys->time_pause = mdate();
  417.     else if( p_sys->time_pause > 0 && state_value.i_int == PLAYING_S )
  418.     {
  419.         p_sys->time_total_pauses += ( mdate() - p_sys->time_pause );
  420.         p_sys->time_pause = 0;
  421.     }
  422.     return VLC_SUCCESS;
  423. }
  424. /*****************************************************************************
  425.  * ItemChange: Playlist item change callback
  426.  *****************************************************************************/
  427. static int ItemChange( vlc_object_t *p_this, const char *psz_var,
  428.                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
  429. {
  430.     playlist_t          *p_playlist;
  431.     input_thread_t      *p_input;
  432.     intf_thread_t       *p_intf     = ( intf_thread_t* ) p_data;
  433.     intf_sys_t          *p_sys      = p_intf->p_sys;
  434.     input_item_t        *p_item;
  435.     vlc_value_t         video_val;
  436.     VLC_UNUSED( p_this ); VLC_UNUSED( psz_var );
  437.     VLC_UNUSED( oldval ); VLC_UNUSED( newval );
  438.     p_sys->b_state_cb       = false;
  439.     p_sys->b_meta_read      = false;
  440.     p_sys->b_submit         = false;
  441.     p_playlist = pl_Hold( p_intf );
  442.     p_input = playlist_CurrentInput( p_playlist );
  443.     if( !p_input || p_input->b_dead )
  444.     {
  445.         pl_Release( p_intf );
  446.         return VLC_SUCCESS;
  447.     }
  448.     pl_Release( p_intf );
  449.     p_item = input_GetItem( p_input );
  450.     if( !p_item )
  451.     {
  452.         vlc_object_release( p_input );
  453.         return VLC_SUCCESS;
  454.     }
  455.     var_Change( p_input, "video-es", VLC_VAR_CHOICESCOUNT, &video_val, NULL );
  456.     if( ( video_val.i_int > 0 ) || p_item->i_type == ITEM_TYPE_NET )
  457.     {
  458.         msg_Dbg( p_this, "Not an audio local file, not submitting");
  459.         vlc_object_release( p_input );
  460.         return VLC_SUCCESS;
  461.     }
  462.     p_sys->time_total_pauses = 0;
  463.     time( &p_sys->p_current_song.date );        /* to be sent to last.fm */
  464.     p_sys->p_current_song.i_start = mdate();    /* only used locally */
  465.     var_AddCallback( p_input, "intf-event", PlayingChange, p_intf );
  466.     p_sys->b_state_cb = true;
  467.     if( input_item_IsPreparsed( p_item ) )
  468.         ReadMetaData( p_intf );
  469.     /* if the input item was not preparsed, we'll do it in PlayingChange()
  470.      * callback, when "state" == PLAYING_S */
  471.     vlc_object_release( p_input );
  472.     return VLC_SUCCESS;
  473. }
  474. /*****************************************************************************
  475.  * AddToQueue: Add the played song to the queue to be submitted
  476.  *****************************************************************************/
  477. static void AddToQueue ( intf_thread_t *p_this )
  478. {
  479.     mtime_t                     played_time;
  480.     intf_sys_t                  *p_sys = p_this->p_sys;
  481.     vlc_mutex_lock( &p_sys->lock );
  482.     if( !p_sys->b_submit )
  483.         goto end;
  484.     /* wait for the user to listen enough before submitting */
  485.     played_time = mdate() - p_sys->p_current_song.i_start -
  486.                             p_sys->time_total_pauses;
  487.     played_time /= 1000000; /* µs → s */
  488.     /*HACK: it seam that the preparsing sometime fail,
  489.             so use the playing time as the song length */
  490.     if( p_sys->p_current_song.i_l == 0 )
  491.         p_sys->p_current_song.i_l = played_time;
  492.     /* Don't send song shorter than 30s */
  493.     if( p_sys->p_current_song.i_l < 30 )
  494.     {
  495.         msg_Dbg( p_this, "Song too short (< 30s), not submitting" );
  496.         goto end;
  497.     }
  498.     /* Send if the user had listen more than 240s OR half the track length */
  499.     if( ( played_time < 240 ) &&
  500.         ( played_time < ( p_sys->p_current_song.i_l / 2 ) ) )
  501.     {
  502.         msg_Dbg( p_this, "Song not listened long enough, not submitting" );
  503.         goto end;
  504.     }
  505.     /* Check that all meta are present */
  506.     if( !p_sys->p_current_song.psz_a || !*p_sys->p_current_song.psz_a ||
  507.         !p_sys->p_current_song.psz_t || !*p_sys->p_current_song.psz_t )
  508.     {
  509.         msg_Dbg( p_this, "Missing artist or title, not submitting" );
  510.         goto end;
  511.     }
  512.     if( p_sys->i_songs >= QUEUE_MAX )
  513.     {
  514.         msg_Warn( p_this, "Submission queue is full, not submitting" );
  515.         goto end;
  516.     }
  517.     msg_Dbg( p_this, "Song will be submitted." );
  518. #define QUEUE_COPY( a ) 
  519.     p_sys->p_queue[p_sys->i_songs].a = p_sys->p_current_song.a
  520. #define QUEUE_COPY_NULL( a ) 
  521.     QUEUE_COPY( a ); 
  522.     p_sys->p_current_song.a = NULL
  523.     QUEUE_COPY( i_l );
  524.     QUEUE_COPY_NULL( psz_n );
  525.     QUEUE_COPY_NULL( psz_a );
  526.     QUEUE_COPY_NULL( psz_t );
  527.     QUEUE_COPY_NULL( psz_b );
  528.     QUEUE_COPY_NULL( psz_m );
  529.     QUEUE_COPY( date );
  530. #undef QUEUE_COPY_NULL
  531. #undef QUEUE_COPY
  532.     p_sys->i_songs++;
  533.     /* signal the main loop we have something to submit */
  534.     vlc_cond_signal( &p_sys->wait );
  535. end:
  536.     DeleteSong( &p_sys->p_current_song );
  537.     p_sys->b_submit = false;
  538.     vlc_mutex_unlock( &p_sys->lock );
  539. }
  540. /*****************************************************************************
  541.  * ParseURL : Split an http:// URL into host, file, and port
  542.  *
  543.  * Example: "62.216.251.205:80/protocol_1.2"
  544.  *      will be split into "62.216.251.205", 80, "protocol_1.2"
  545.  *
  546.  * psz_url will be freed before returning
  547.  * *psz_file & *psz_host will be freed before use
  548.  *
  549.  * Return value:
  550.  *  VLC_ENOMEM      Out Of Memory
  551.  *  VLC_EGENERIC    Invalid url provided
  552.  *  VLC_SUCCESS     Success
  553.  *****************************************************************************/
  554. static int ParseURL( char *psz_url, char **psz_host, char **psz_file,
  555.                         int *i_port )
  556. {
  557.     int i_pos;
  558.     int i_len = strlen( psz_url );
  559.     bool b_no_port = false;
  560.     FREENULL( *psz_host );
  561.     FREENULL( *psz_file );
  562.     i_pos = strcspn( psz_url, ":" );
  563.     if( i_pos == i_len )
  564.     {
  565.         *i_port = 80;
  566.         i_pos = strcspn( psz_url, "/" );
  567.         b_no_port = true;
  568.     }
  569.     *psz_host = strndup( psz_url, i_pos );
  570.     if( !*psz_host )
  571.         return VLC_ENOMEM;
  572.     if( !b_no_port )
  573.     {
  574.         i_pos++; /* skip the ':' */
  575.         *i_port = atoi( psz_url + i_pos );
  576.         if( *i_port <= 0 )
  577.         {
  578.             FREENULL( *psz_host );
  579.             return VLC_EGENERIC;
  580.         }
  581.         i_pos = strcspn( psz_url, "/" );
  582.     }
  583.     if( i_pos == i_len )
  584.         return VLC_EGENERIC;
  585.     i_pos++; /* skip the '/' */
  586.     *psz_file = strdup( psz_url + i_pos );
  587.     if( !*psz_file )
  588.     {
  589.         FREENULL( *psz_host );
  590.         return VLC_ENOMEM;
  591.     }
  592.     free( psz_url );
  593.     return VLC_SUCCESS;
  594. }
  595. /*****************************************************************************
  596.  * Handshake : Init audioscrobbler connection
  597.  *****************************************************************************/
  598. static int Handshake( intf_thread_t *p_this )
  599. {
  600.     char                *psz_username, *psz_password;
  601.     char                *psz_scrobbler_url;
  602.     time_t              timestamp;
  603.     char                psz_timestamp[21];
  604.     struct md5_s        p_struct_md5;
  605.     stream_t            *p_stream;
  606.     char                *psz_handshake_url;
  607.     uint8_t             p_buffer[1024];
  608.     char                *p_buffer_pos;
  609.     int                 i_ret;
  610.     char                *psz_url;
  611.     intf_thread_t       *p_intf                 = ( intf_thread_t* ) p_this;
  612.     intf_sys_t          *p_sys                  = p_this->p_sys;
  613.     psz_username = config_GetPsz( p_this, "lastfm-username" );
  614.     if( !psz_username )
  615.         return VLC_ENOMEM;
  616.     psz_password = config_GetPsz( p_this, "lastfm-password" );
  617.     if( !psz_password )
  618.     {
  619.         free( psz_username );
  620.         return VLC_ENOMEM;
  621.     }
  622.     /* username or password have not been setup */
  623.     if ( !*psz_username || !*psz_password )
  624.     {
  625.         free( psz_username );
  626.         free( psz_password );
  627.         return VLC_ENOVAR;
  628.     }
  629.     time( &timestamp );
  630.     /* generates a md5 hash of the password */
  631.     InitMD5( &p_struct_md5 );
  632.     AddMD5( &p_struct_md5, ( uint8_t* ) psz_password, strlen( psz_password ) );
  633.     EndMD5( &p_struct_md5 );
  634.     free( psz_password );
  635.     char *psz_password_md5 = psz_md5_hash( &p_struct_md5 );
  636.     if( !psz_password_md5 )
  637.     {
  638.         free( psz_username );
  639.         return VLC_ENOMEM;
  640.     }
  641.     snprintf( psz_timestamp, sizeof( psz_timestamp ), "%"PRIu64,
  642.               (uint64_t)timestamp );
  643.     /* generates a md5 hash of :
  644.      * - md5 hash of the password, plus
  645.      * - timestamp in clear text
  646.      */
  647.     InitMD5( &p_struct_md5 );
  648.     AddMD5( &p_struct_md5, ( uint8_t* ) psz_password_md5, 32 );
  649.     AddMD5( &p_struct_md5, ( uint8_t* ) psz_timestamp, strlen( psz_timestamp ));
  650.     EndMD5( &p_struct_md5 );
  651.     free( psz_password_md5 );
  652.     char *psz_auth_token = psz_md5_hash( &p_struct_md5 );
  653.     if( !psz_auth_token )
  654.     {
  655.         free( psz_username );
  656.         return VLC_ENOMEM;
  657.     }
  658.     strncpy( p_sys->psz_auth_token, psz_auth_token, 33 );
  659.     free( psz_auth_token );
  660.     psz_scrobbler_url = config_GetPsz( p_this, "scrobbler-url" );
  661.     if( !psz_scrobbler_url )
  662.     {
  663.         free( psz_username );
  664.         return VLC_ENOMEM;
  665.     }
  666.     if( !asprintf( &psz_handshake_url,
  667.     "http://%s/?hs=true&p=1.2&c=%s&v=%s&u=%s&t=%s&a=%s", psz_scrobbler_url,
  668.         CLIENT_NAME, CLIENT_VERSION, psz_username, psz_timestamp,
  669.         p_sys->psz_auth_token ) )
  670.     {
  671.         free( psz_scrobbler_url );
  672.         free( psz_username );
  673.         return VLC_ENOMEM;
  674.     }
  675.     free( psz_scrobbler_url );
  676.     free( psz_username );
  677.     /* send the http handshake request */
  678.     p_stream = stream_UrlNew( p_intf, psz_handshake_url );
  679.     free( psz_handshake_url );
  680.     if( !p_stream )
  681.         return VLC_EGENERIC;
  682.     /* read answer */
  683.     i_ret = stream_Read( p_stream, p_buffer, 1023 );
  684.     if( i_ret == 0 )
  685.     {
  686.         stream_Delete( p_stream );
  687.         return VLC_EGENERIC;
  688.     }
  689.     p_buffer[i_ret] = '';
  690.     stream_Delete( p_stream );
  691.     p_buffer_pos = strstr( ( char* ) p_buffer, "FAILED " );
  692.     if ( p_buffer_pos )
  693.     {
  694.         /* handshake request failed, sorry */
  695.         msg_Err( p_this, "last.fm handshake failed: %s", p_buffer_pos + 7 );
  696.         return VLC_EGENERIC;
  697.     }
  698.     p_buffer_pos = strstr( ( char* ) p_buffer, "BADAUTH" );
  699.     if ( p_buffer_pos )
  700.     {
  701.         /* authentication failed, bad username/password combination */
  702.         dialog_Fatal( p_this,
  703.             _("last.fm: Authentication failed"),
  704.             "%s", _("last.fm username or password is incorrect. "
  705.               "Please verify your settings and relaunch VLC." ) );
  706.         return VLC_AUDIOSCROBBLER_EFATAL;
  707.     }
  708.     p_buffer_pos = strstr( ( char* ) p_buffer, "BANNED" );
  709.     if ( p_buffer_pos )
  710.     {
  711.         /* oops, our version of vlc has been banned by last.fm servers */
  712.         msg_Err( p_intf, "This version of VLC has been banned by last.fm. "
  713.                          "You should upgrade VLC, or disable the last.fm plugin." );
  714.         return VLC_AUDIOSCROBBLER_EFATAL;
  715.     }
  716.     p_buffer_pos = strstr( ( char* ) p_buffer, "BADTIME" );
  717.     if ( p_buffer_pos )
  718.     {
  719.         /* The system clock isn't good */
  720.         msg_Err( p_intf, "last.fm handshake failed because your clock is too "
  721.                          "much shifted. Please correct it, and relaunch VLC." );
  722.         return VLC_AUDIOSCROBBLER_EFATAL;
  723.     }
  724.     p_buffer_pos = strstr( ( char* ) p_buffer, "OK" );
  725.     if ( !p_buffer_pos )
  726.         goto proto;
  727.     p_buffer_pos = strstr( p_buffer_pos, "n" );
  728.     if( !p_buffer_pos || strlen( p_buffer_pos ) < 34 )
  729.         goto proto;
  730.     p_buffer_pos++; /* we skip the 'n' */
  731.     /* save the session ID */
  732.     snprintf( p_sys->psz_auth_token, 33, "%s", p_buffer_pos );
  733.     p_buffer_pos = strstr( p_buffer_pos, "http://" );
  734.     if( !p_buffer_pos || strlen( p_buffer_pos ) == 7 )
  735.         goto proto;
  736.     /* We need to read the nowplaying url */
  737.     p_buffer_pos += 7; /* we skip "http://" */
  738. #if 0 //NOT USED
  739.     psz_url = strndup( p_buffer_pos, strcspn( p_buffer_pos, "n" ) );
  740.     if( !psz_url )
  741.         goto oom;
  742.     switch( ParseURL( psz_url, &p_sys->psz_nowp_host,
  743.                 &p_sys->psz_nowp_file, &p_sys->i_nowp_port ) )
  744.     {
  745.         case VLC_ENOMEM:
  746.             goto oom;
  747.         case VLC_EGENERIC:
  748.             goto proto;
  749.         case VLC_SUCCESS:
  750.         default:
  751.             break;
  752.     }
  753. #endif
  754.     p_buffer_pos = strstr( p_buffer_pos, "http://" );
  755.     if( !p_buffer_pos || strlen( p_buffer_pos ) == 7 )
  756.         goto proto;
  757.     /* We need to read the submission url */
  758.     p_buffer_pos += 7; /* we skip "http://" */
  759.     psz_url = strndup( p_buffer_pos, strcspn( p_buffer_pos, "n" ) );
  760.     if( !psz_url )
  761.         goto oom;
  762.     switch( ParseURL( psz_url, &p_sys->psz_submit_host,
  763.                 &p_sys->psz_submit_file, &p_sys->i_submit_port ) )
  764.     {
  765.         case VLC_ENOMEM:
  766.             goto oom;
  767.         case VLC_EGENERIC:
  768.             goto proto;
  769.         case VLC_SUCCESS:
  770.         default:
  771.             break;
  772.     }
  773.     return VLC_SUCCESS;
  774. oom:
  775.     return VLC_ENOMEM;
  776. proto:
  777.     msg_Err( p_intf, "Handshake: can't recognize server protocol" );
  778.     return VLC_EGENERIC;
  779. }
  780. /*****************************************************************************
  781.  * DeleteSong : Delete the char pointers in a song
  782.  *****************************************************************************/
  783. static void DeleteSong( audioscrobbler_song_t* p_song )
  784. {
  785.     FREENULL( p_song->psz_a );
  786.     FREENULL( p_song->psz_b );
  787.     FREENULL( p_song->psz_t );
  788.     FREENULL( p_song->psz_m );
  789.     FREENULL( p_song->psz_n );
  790. }
  791. /*****************************************************************************
  792.  * ReadMetaData : Read meta data when parsed by vlc
  793.  *****************************************************************************/
  794. static int ReadMetaData( intf_thread_t *p_this )
  795. {
  796.     playlist_t          *p_playlist;
  797.     input_thread_t      *p_input;
  798.     input_item_t        *p_item;
  799.     intf_sys_t          *p_sys = p_this->p_sys;
  800.     p_playlist = pl_Hold( p_this );
  801.     p_input = playlist_CurrentInput( p_playlist );
  802.     if( !p_input )
  803.     {
  804.         pl_Release( p_this );
  805.         return( VLC_SUCCESS );
  806.     }
  807.     pl_Release( p_this );
  808.     p_item = input_GetItem( p_input );
  809.     if( !p_item )
  810.         return VLC_SUCCESS;
  811.     char *psz_meta;
  812. #define ALLOC_ITEM_META( a, b ) 
  813.     psz_meta = input_item_Get##b( p_item ); 
  814.     if( psz_meta && *psz_meta ) 
  815.     { 
  816.         a = encode_URI_component( psz_meta ); 
  817.         if( !a ) 
  818.         { 
  819.             vlc_mutex_unlock( &p_sys->lock ); 
  820.             vlc_object_release( p_input ); 
  821.             free( psz_meta ); 
  822.             return VLC_ENOMEM; 
  823.         } 
  824.     }
  825.     vlc_mutex_lock( &p_sys->lock );
  826.     p_sys->b_meta_read = true;
  827.     ALLOC_ITEM_META( p_sys->p_current_song.psz_a, Artist )
  828.     else
  829.     {
  830.         vlc_mutex_unlock( &p_sys->lock );
  831.         msg_Dbg( p_this, "No artist.." );
  832.         vlc_object_release( p_input );
  833.         free( psz_meta );
  834.         return VLC_EGENERIC;
  835.     }
  836.     free( psz_meta );
  837.     ALLOC_ITEM_META( p_sys->p_current_song.psz_t, Title )
  838.     else
  839.     {
  840.         vlc_mutex_unlock( &p_sys->lock );
  841.         msg_Dbg( p_this, "No track name.." );
  842.         vlc_object_release( p_input );
  843.         free( p_sys->p_current_song.psz_a );
  844.         free( psz_meta );
  845.         return VLC_EGENERIC;
  846.     }
  847.     free( psz_meta );
  848.     /* Now we have read the mandatory meta data, so we can submit that info */
  849.     p_sys->b_submit = true;
  850.     ALLOC_ITEM_META( p_sys->p_current_song.psz_b, Album )
  851.     else
  852.         p_sys->p_current_song.psz_b = calloc( 1, 1 );
  853.     free( psz_meta );
  854.     ALLOC_ITEM_META( p_sys->p_current_song.psz_m, TrackID )
  855.     else
  856.         p_sys->p_current_song.psz_m = calloc( 1, 1 );
  857.     free( psz_meta );
  858.     p_sys->p_current_song.i_l = input_item_GetDuration( p_item ) / 1000000;
  859.     ALLOC_ITEM_META( p_sys->p_current_song.psz_n, TrackNum )
  860.     else
  861.         p_sys->p_current_song.psz_n = calloc( 1, 1 );
  862.     free( psz_meta );
  863. #undef ALLOC_ITEM_META
  864.     msg_Dbg( p_this, "Meta data registered" );
  865.     vlc_mutex_unlock( &p_sys->lock );
  866.     vlc_object_release( p_input );
  867.     return VLC_SUCCESS;
  868. }
  869. static void HandleInterval( mtime_t *next, unsigned int *i_interval )
  870. {
  871.     if( *i_interval == 0 )
  872.     {
  873.         /* first interval is 1 minute */
  874.         *i_interval = 1;
  875.     }
  876.     else
  877.     {
  878.         /* else we double the previous interval, up to 120 minutes */
  879.         *i_interval <<= 1;
  880.         if( *i_interval > 120 )
  881.             *i_interval = 120;
  882.     }
  883.     *next = mdate() + ( *i_interval * 1000000 * 60 );
  884. }