From 5beeabc96bebe1fe7173da4125ebaa6261ab2460 Mon Sep 17 00:00:00 2001 From: svollbehr Date: Fri, 26 Feb 2010 17:28:18 +0000 Subject: [PATCH] Add missing ID3 frame UFID git-svn-id: http://php-reader.googlecode.com/svn/branches/zend@164 51a70ab9-7547-0410-9469-37e369ee0574 --- src/Zend/Media/Id3/Frame/Ufid.php | 130 ++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 src/Zend/Media/Id3/Frame/Ufid.php diff --git a/src/Zend/Media/Id3/Frame/Ufid.php b/src/Zend/Media/Id3/Frame/Ufid.php new file mode 100644 index 0000000..90981e5 --- /dev/null +++ b/src/Zend/Media/Id3/Frame/Ufid.php @@ -0,0 +1,130 @@ +Unique File Identifier frame's purpose is to be able to identify + * the audio file in a database, that may provide more information relevant to + * the content. Since standardisation of such a database is beyond this document, + * all UFID frames begin with an 'owner identifier' field. It is a null- + * terminated string with a URL [URL] containing an email address, or a link to + * a location where an email address can be found, that belongs to the + * organisation responsible for this specific database implementation. + * Questions regarding the database should be sent to the indicated email + * address. The URL should not be used for the actual database queries. The + * string "http://www.id3.org/dummy/ufid.html" should be used for tests. The + * 'Owner identifier' must be non-empty (more than just a termination). The + * 'Owner identifier' is then followed by the actual identifier, which may be + * up to 64 bytes. There may be more than one "UFID" frame in a tag, but only + * one with the same 'Owner identifier'. + * + * @category Zend + * @package Zend_Media + * @subpackage ID3 + * @author Sven Vollbehr + * @author Arlo Kleijweg + * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id$ + */ +final class Zend_Media_Id3_Frame_Ufid extends Zend_Media_Id3_Frame +{ + /** @var string */ + private $_owner; + + /** @var string */ + private $_fileIdentifier; + + /** + * Constructs the class with given parameters and parses object related + * data. + * + * @param Zend_Io_Reader $reader The reader object. + * @param Array $options The options array. + */ + public function __construct($reader = null, &$options = array()) + { + parent::__construct($reader, $options); + + if ($this->_reader === null) { + return; + } + + list($this->_owner, $this->_fileIdentifier) = + $this->_explodeString8($this->_data, 2); + } + + /** + * Returns the owner identifier string. + * + * @return string + */ + public function getOwner() + { + return $this->_owner; + } + + /** + * Sets the owner identifier string. + * + * @param string $owner The owner identifier string. + */ + public function setOwner($owner) + { + $this->_owner = $owner; + } + + /** + * Returns the identifier binary data associated with the frame. + * + * @return string + */ + public function getFileIdentifier() + { + return $this->_fileIdentifier; + } + + /** + * Sets the identifier binary data associated with the frame. + * + * @param string $fileIdentifier The file identifier binary data string. + */ + public function setFileIdentifier($fileIdentifier) + { + $this->_fileIdentifier = $fileIdentifier; + } + + /** + * Writes the frame raw data without the header. + * + * @param Zend_Io_Writer $writer The writer object. + * @return void + */ + protected function _writeData($writer) + { + $writer->writeString8($this->_owner, 1) + ->write($this->_fileIdentifier); + } +}