diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2010-10-15 23:26:14 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2010-10-15 23:26:14 -0700 |
commit | 47a9063391ca7207484f31025ecd4969dc0a740a (patch) | |
tree | a32cc22b9fdb769624435027cbc6b87b5437033c /omptagger | |
parent | 33b3a92c25cb7f1826e9ba290e5a5360ffcb2de3 (diff) | |
download | omptagger-47a9063391ca7207484f31025ecd4969dc0a740a.tar.gz omptagger-47a9063391ca7207484f31025ecd4969dc0a740a.tar.xz |
Refactor subclassing code.
Diffstat (limited to 'omptagger')
-rwxr-xr-x | omptagger | 40 |
1 files changed, 25 insertions, 15 deletions
@@ -80,6 +80,9 @@ class Metadata @filename = File.expand_path(file) @write = false + + @file = open(file) + @tags = read end def view @@ -115,35 +118,42 @@ class VorbisComment < Metadata end class FLAC < VorbisComment - def initialize(file) - super + private - @file = TagLib::FLAC::File.new(file) - @tags = @file.xiphComment.fieldListMap.hash + def open(file) + return TagLib::FLAC::File.new(file) + end + + def read + return @file.xiphComment.fieldListMap.hash end end class Vorbis < VorbisComment - def initialize(file) - super + private - @file = TagLib::Vorbis::File.new(file) - @tags = @file.tag.fieldListMap.hash + def open(file) + return TagLib::Vorbis::File.new(file) + end + + def read + return @file.tag.fieldListMap.hash end end class MP3 < Metadata - def initialize(file) - super + private - @file = TagLib::MPEG::File.new(file) - @tags = @file.ID3v2Tag.frameListMap.hash + def open(file) + return TagLib::MPEG::File.new(file) end - def output(tag, val, padding = 0) - val = val.to_s + def read + metadata = @file.ID3v2Tag.frameListMap.hash - super + return metadata.each do |field, value| + metadata[field] = value.collect do |x| x.to_s end + end end end |