r7138 - dumbhippo/trunk/server/src/com/dumbhippo/server/dm
- From: commits mugshot org
- To: online-desktop-list gnome org
- Subject: r7138 - dumbhippo/trunk/server/src/com/dumbhippo/server/dm
- Date: Mon, 7 Jan 2008 11:46:05 -0600 (CST)
Author: otaylor
Date: 2008-01-07 11:46:05 -0600 (Mon, 07 Jan 2008)
New Revision: 7138
Modified:
dumbhippo/trunk/server/src/com/dumbhippo/server/dm/TrackDMO.java
Log:
Remove comment about a property group API might be nice, and
replace it by using the property group API that we know have.
Modified: dumbhippo/trunk/server/src/com/dumbhippo/server/dm/TrackDMO.java
===================================================================
--- dumbhippo/trunk/server/src/com/dumbhippo/server/dm/TrackDMO.java 2008-01-07 17:39:18 UTC (rev 7137)
+++ dumbhippo/trunk/server/src/com/dumbhippo/server/dm/TrackDMO.java 2008-01-07 17:46:05 UTC (rev 7138)
@@ -4,6 +4,7 @@
import javax.persistence.EntityManager;
import com.dumbhippo.dm.DMObject;
+import com.dumbhippo.dm.annotations.DMInit;
import com.dumbhippo.dm.annotations.DMO;
import com.dumbhippo.dm.annotations.DMProperty;
import com.dumbhippo.dm.annotations.Inject;
@@ -30,6 +31,8 @@
private Track track;
private TrackView trackView;
+ private static final int TRACK_VIEW_GROUP = 1;
+
@Inject
private EntityManager em;
@@ -65,44 +68,29 @@
return null;
}
}
+
+ @DMInit(group=TRACK_VIEW_GROUP)
+ public void initTrackView() {
+ trackView = musicSystem.getTrackView(track);
+ }
- // Possible improvement:
- //
- // If we do anything that requires getting the trackView, we really want to make
- // sure that *all* of the work that we did to fetch the cover art, the download
- // links, etc, gets saved into the DM cache. That would probably require improvements
- // to the engine ... maybe something like @DMProperty(group=1) to mark a number
- // of properties that should be cached together.
-
- @DMProperty(defaultInclude=true)
+ @DMProperty(defaultInclude=true, group=TRACK_VIEW_GROUP)
public int getImageWidth() {
- ensureTrackView();
-
return trackView.getSmallImageWidth();
}
- @DMProperty(defaultInclude=true)
+ @DMProperty(defaultInclude=true, group=TRACK_VIEW_GROUP)
public int getImageHeight() {
- ensureTrackView();
-
return trackView.getSmallImageHeight();
}
- @DMProperty(type=PropertyType.URL, defaultInclude=true)
+ @DMProperty(type=PropertyType.URL, defaultInclude=true, group=TRACK_VIEW_GROUP)
public String getImageUrl() {
- ensureTrackView();
-
return trackView.getSmallImageUrl();
}
- @DMProperty(defaultInclude=true)
+ @DMProperty(defaultInclude=true, group=TRACK_VIEW_GROUP)
public long getDuration() {
- ensureTrackView();
-
return trackView.getDurationSeconds() * 1000;
}
-
- private void ensureTrackView() {
- trackView = musicSystem.getTrackView(track);
- }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]