Return an Optional for the album image.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / DefaultAlbum.java
1 /*
2  * Sone - Album.java - Copyright © 2011–2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.data.impl;
19
20 import static com.google.common.base.Optional.absent;
21 import static com.google.common.base.Optional.fromNullable;
22 import static com.google.common.base.Preconditions.checkState;
23
24 import java.util.ArrayList;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28 import java.util.UUID;
29
30 import net.pterodactylus.sone.data.Album;
31 import net.pterodactylus.sone.data.Image;
32 import net.pterodactylus.sone.data.Sone;
33 import net.pterodactylus.sone.database.AlbumBuilder;
34 import net.pterodactylus.sone.database.ImageBuilder;
35
36 import com.google.common.base.Function;
37 import com.google.common.base.Optional;
38 import com.google.common.base.Predicates;
39 import com.google.common.collect.Collections2;
40
41 /**
42  * Dumb, store-everything-in-memory implementation of an {@link Album}.
43  *
44  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
45  */
46 public class DefaultAlbum extends AbstractAlbum {
47
48         /** The Sone this album belongs to. */
49         private Sone sone;
50
51         /** The parent album. */
52         private final DefaultAlbum parent;
53
54         /** Nested albums. */
55         private final List<Album> albums = new ArrayList<Album>();
56
57         /** The image IDs in order. */
58         final List<String> imageIds = new ArrayList<String>();
59
60         /** The images in this album. */
61         final Map<String, Image> images = new HashMap<String, Image>();
62
63         /** Creates a new album with a random ID. */
64         public DefaultAlbum(Sone sone, DefaultAlbum parent) {
65                 this(UUID.randomUUID().toString(), sone, parent);
66         }
67
68         /**
69          * Creates a new album with the given ID.
70          *
71          * @param id
72          *              The ID of the album
73          */
74         public DefaultAlbum(String id, Sone sone, DefaultAlbum parent) {
75                 super(id);
76                 this.sone = sone;
77                 this.parent = parent;
78         }
79
80         //
81         // ACCESSORS
82         //
83
84         @Override
85         public Sone getSone() {
86                 return sone;
87         }
88
89         @Override
90         public List<Album> getAlbums() {
91                 return new ArrayList<Album>(albums);
92         }
93
94         @Override
95         public List<Image> getImages() {
96                 return new ArrayList<Image>(Collections2.filter(Collections2.transform(imageIds, new Function<String, Image>() {
97
98                         @Override
99                         @SuppressWarnings("synthetic-access")
100                         public Image apply(String imageId) {
101                                 return images.get(imageId);
102                         }
103                 }), Predicates.notNull()));
104         }
105
106         @Override
107         public Optional<Image> getAlbumImage() {
108                 if (albumImage == null) {
109                         return absent();
110                 }
111                 return fromNullable(fromNullable(images.get(albumImage)).or(images.values().iterator().next()));
112         }
113
114         @Override
115         public Album getParent() {
116                 return parent;
117         }
118
119         @Override
120         public AlbumBuilder newAlbumBuilder() {
121                 return new DefaultAlbumBuilder(sone, this) {
122                         @Override
123                         public Album build() throws IllegalStateException {
124                                 Album album = super.build();
125                                 albums.add(album);
126                                 return album;
127                         }
128                 };
129         }
130
131         @Override
132         public ImageBuilder newImageBuilder() throws IllegalStateException {
133                 return new DefaultImageBuilder(sone, this) {
134                         @Override
135                         public Image build() throws IllegalStateException {
136                                 Image image = super.build();
137                                 if (images.isEmpty() && (albumImage == null)) {
138                                         albumImage = image.getId();
139                                 }
140                                 images.put(image.getId(), image);
141                                 imageIds.add(image.getId());
142                                 return image;
143                         }
144                 };
145         }
146
147         @Override
148         public void moveUp() {
149                 int oldIndex = parent.albums.indexOf(this);
150                 parent.albums.remove(this);
151                 parent.albums.add(Math.max(0, oldIndex - 1), this);
152         }
153
154         @Override
155         public void moveDown() {
156                 int oldIndex = parent.albums.indexOf(this);
157                 parent.albums.remove(this);
158                 parent.albums.add(Math.min(parent.albums.size(), oldIndex + 1), this);
159         }
160
161         @Override
162         public void remove() throws IllegalStateException {
163                 checkState(!isRoot(), "can not remove root album");
164                 removeAllAlbums();
165                 removeAllImages();
166                 parent.albums.remove(this);
167         }
168
169         private void removeAllImages() {
170                 for (Image image : images.values()) {
171                         image.remove();
172                 }
173         }
174
175         private void removeAllAlbums() {
176                 for (Album album: albums) {
177                         album.remove();
178                 }
179         }
180
181 }