Your IP : 216.73.216.48


Current Path : /usr/include/lastfm/
Upload File :
Current File : //usr/include/lastfm/Fingerprint.h

/*
   Copyright 2009 Last.fm Ltd. 
      - Primarily authored by Max Howell, Jono Cole and Doug Mansell

   This file is part of liblastfm.

   liblastfm is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   liblastfm is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with liblastfm.  If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LASTFM_FINGERPRINT_H
#define LASTFM_FINGERPRINT_H

#include "global.h"

#include "FingerprintId.h"

namespace lastfm
{
    class FingerprintableSource;
    class Track;

    class LASTFM_FINGERPRINT_DLLEXPORT Fingerprint
    {
    protected:
        class FingerprintPrivate * const d;

    public:
        /** represents a partial fingerprint of 20 seconds of music, this is 
          * considered 99.9999...9999% unique and so we use it for most stuff as 
          * it is much quicker than a complete fingerprint, still though, you
          * should do the generate step in a thread. */
        Fingerprint( const lastfm::Track& );
        ~Fingerprint();
    
        /** if the id isNull(), then you'll need to do generate, submit and decode */
        FingerprintId id() const;

        /** The actual data that is the fingerprint, this is about 70kB or so,
          * there isn't anything in it until you call generate. */
        QByteArray data() const;

        enum Error
        {
            ReadError = 0,

            /** failed to extract samplerate, bitrate, channels, duration etc */
            HeadersError,

            DecodeError,
        
            /** there is a minimum track duration for fingerprinting */
            TrackTooShortError,
            
            /** the fingerprint service went wrong, or we submitted bad data, 
              * or myabe the request failed, whatever, we couldn't parse the 
              * result */
            BadResponseError,
        
            /** sorry, liblastfm sucks, report bug with log! */
            InternalError            
        };

        /** This is CPU intensive, do it in a thread in your GUI application */
        void generate( FingerprintableSource* ) throw( Error );

        /** Submits the fingerprint data to Last.fm in order to get a FingerprintId
          * back. You need to wait for the QNetworkReply to finish before you can
          * pass it to decode clearly. */
        QNetworkReply* submit() const;

        /** Pass a finished reply from submit(), if the response is sound, id()
          * will be valid. Otherwise we will throw. You always get a valid id
          * or a throw.
          */
        void decode( QNetworkReply*, bool* lastfm_needs_a_complete_fingerprint = 0 ) throw( Error );
    };


    class LASTFM_FINGERPRINT_DLLEXPORT CompleteFingerprint : public Fingerprint
    {
        CompleteFingerprint( const lastfm::Track& t );
        ~CompleteFingerprint();
    };
}


QDebug LASTFM_FINGERPRINT_DLLEXPORT operator<<( QDebug d, lastfm::Fingerprint::Error e );

#endif