From 7039a05147b8bbfc829babea1c65bd436450b505 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Mon, 8 Jan 2007 23:53:00 +0000 Subject: Splitting out songdbj git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11953 a1c6a512-1295-4272-9138-f99709370657 --- songdbj/SongEntry.java | 167 ------------------------------------------------- 1 file changed, 167 deletions(-) delete mode 100644 songdbj/SongEntry.java (limited to 'songdbj/SongEntry.java') diff --git a/songdbj/SongEntry.java b/songdbj/SongEntry.java deleted file mode 100644 index cf6f887a7b..0000000000 --- a/songdbj/SongEntry.java +++ /dev/null @@ -1,167 +0,0 @@ -import java.util.*; -import java.io.*; -import javax.sound.sampled.UnsupportedAudioFileException; -import java.lang.NumberFormatException; -import net.shredzone.ifish.ltr.LTR; - -public class SongEntry extends Entry implements Comparable { - protected TagInfo info; - protected LTR tag; - protected ArtistEntry artist; - protected AlbumEntry album; - protected FileEntry file; - - public SongEntry(FileEntry f) { - file=f; - file.setSongEntry(this); - readTagInfo(); - } - - public void setAlbum(AlbumEntry a) { album=a; } - public void setArtist(ArtistEntry a) { artist=a; } - public AlbumEntry getAlbum() { return album; } - public ArtistEntry getArtist() { return artist; } - public FileEntry getFile() { return file; } - - public int compareTo(Object o) { - return String.CASE_INSENSITIVE_ORDER.compare(getName(),((SongEntry)o).getName()); - } - - public String getName() { - String title=tag.getTitle(); - if(title==null) - title = stripExt(file.getFile().getName()); - title=title.trim(); - if(title.equals("")) - title = stripExt(file.getFile().getName()); - return title; - } - - public static String stripExt(String t) { - return t.substring(0,t.lastIndexOf('.')); - } - - public String getAlbumTag() { - String album=tag.getAlbum(); - if(album==null) - album = ""; - album=album.trim(); - if(album.equals("")) - album = ""; - if(TagDatabase.getInstance().dirisalbumname&&album.equals("")) { - album = file.getFile().getParentFile().getName(); - } - return album; - } - - public String getArtistTag() { - String artist=tag.getArtist(); - if(artist==null) - artist = ""; - artist=artist.trim(); - if(artist.equals("")) - artist = ""; - return artist; - } - - public String getGenreTag() { - String genre=tag.getGenre(); - if(genre==null) - genre = ""; - genre=genre.trim(); - if(genre.equals("")) - genre = ""; - return genre; - } - - public int getYear() { - try { - return Integer.parseInt(tag.getYear()); - } catch(NumberFormatException e) { - return 0; - } - } - - public int getTrack() { - try { - return Integer.parseInt(tag.getTrack()); - } catch(NumberFormatException e) { - return 0; - } - } - - public int getBitRate() { if(info==null) return -1; return info.getBitRate()/1000; } - - public int getPlayTime() { if(info==null) return -1; return (int)info.getPlayTime(); } - - public int getSamplingRate() { if(info==null) return -1; return info.getSamplingRate(); } - - public int getFirstFrameOffset() { if(info==null) return 0; return info.getFirstFrameOffset(); } - - public boolean gotTagInfo() { return tag!=null; } - - protected void readTagInfo() { - // Check Mpeg format. - try - { - info = new MpegInfo(); - info.load(file.getFile()); - } -/* catch (IOException ex) - { - //ex.printStackTrace(); - System.out.println(ex); - info = null; - }*/ - catch (Exception ex) - { - // Error.. - info = null; - } - - if (info == null) - { - // Check Ogg Vorbis format. - try - { - info = new OggVorbisInfo(); - info.load(file.getFile()); - } - /*catch (IOException ex) - { - //ex.printStackTrace(); - System.out.println(ex); - info = null; - }*/ - catch (Exception ex) - { - // Not Ogg Vorbis Format - //System.out.println("Failed reading tag for "+location.getAbsolutePath()+", tried mp3 and vorbis."); - info = null; - } - } - tag = LTR.create(file.getFile()); - } - - public void write(DataOutputStream w) throws IOException { - String name=getName(); - w.writeBytes(name); - for(int x=TagDatabase.getInstance().songlen-name.length();x>0;x--) - w.write(0); - w.writeInt(artist.getOffset()); - w.writeInt(album.getOffset()); - w.writeInt(file.getOffset()); - w.writeBytes(getGenreTag()); - for(int x=TagDatabase.getInstance().genrelen-getGenreTag().length();x>0;x--) - w.write(0); - w.writeShort(getBitRate()); - w.writeShort(getYear()); - w.writeInt(getPlayTime()); - w.writeShort(getTrack()); - w.writeShort(getSamplingRate()); - } - public static int entrySize() { - TagDatabase td=TagDatabase.getInstance(); - return td.songlen+12+td.genrelen+12; - } -} \ No newline at end of file -- cgit v1.2.3