Simplify album removal.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Album.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;
19
20 import static java.util.Arrays.asList;
21 import static java.util.Collections.emptyList;
22
23 import java.util.ArrayList;
24 import java.util.Collections;
25 import java.util.Comparator;
26 import java.util.List;
27 import javax.annotation.Nonnull;
28
29 import net.pterodactylus.sone.database.AlbumBuilder;
30 import net.pterodactylus.sone.database.ImageBuilder;
31
32 import com.google.common.base.Function;
33 import com.google.common.base.Predicate;
34 import com.google.common.collect.FluentIterable;
35 import com.google.common.collect.ImmutableList;
36
37 /**
38  * Container for images that can also contain nested {@link Album}s.
39  *
40  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
41  */
42 public interface Album extends Identified, Fingerprintable {
43
44         /** Compares two {@link Album}s by {@link #getTitle()}. */
45         Comparator<Album> TITLE_COMPARATOR = new Comparator<Album>() {
46
47                 @Override
48                 public int compare(Album leftAlbum, Album rightAlbum) {
49                         return leftAlbum.getTitle().compareToIgnoreCase(rightAlbum.getTitle());
50                 }
51         };
52
53         /** Function that flattens the given album and all albums beneath it. */
54         Function<Album, List<Album>> FLATTENER = new Function<Album, List<Album>>() {
55
56                 @Override
57                 @Nonnull
58                 public List<Album> apply(Album album) {
59                         if (album == null) {
60                                 return emptyList();
61                         }
62                         List<Album> albums = new ArrayList<Album>();
63                         albums.add(album);
64                         for (Album subAlbum : album.getAlbums()) {
65                                 albums.addAll(FluentIterable.from(ImmutableList.of(subAlbum)).transformAndConcat(FLATTENER).toList());
66                         }
67                         return albums;
68                 }
69         };
70
71         /** Function that transforms an album into the images it contains. */
72         Function<Album, List<Image>> IMAGES = new Function<Album, List<Image>>() {
73
74                 @Override
75                 @Nonnull
76                 public List<Image> apply(Album album) {
77                         return (album != null) ? album.getImages() : Collections.<Image>emptyList();
78                 }
79         };
80
81         /**
82          * Filter that removes all albums that do not have any images in any album
83          * below it.
84          */
85         Predicate<Album> NOT_EMPTY = new Predicate<Album>() {
86
87                 @Override
88                 public boolean apply(Album album) {
89                         /* so, we flatten all albums below the given one and check whether at least one album… */
90                         return FluentIterable.from(asList(album)).transformAndConcat(FLATTENER).anyMatch(new Predicate<Album>() {
91
92                                 @Override
93                                 public boolean apply(Album album) {
94                                         /* …contains any inserted images. */
95                                         return !album.getImages().isEmpty() && FluentIterable.from(album.getImages()).allMatch(new Predicate<Image>() {
96
97                                                 @Override
98                                                 public boolean apply(Image input) {
99                                                         return input.isInserted();
100                                                 }
101                                         });
102                                 }
103                         });
104                 }
105         };
106
107         /**
108          * Returns the ID of this album.
109          *
110          * @return The ID of this album
111          */
112         String getId();
113
114         /**
115          * Returns the Sone this album belongs to.
116          *
117          * @return The Sone this album belongs to
118          */
119         Sone getSone();
120
121         List<Album> getAlbums();
122
123         /**
124          * Moves the given album up in this album’s albums. If the album is already the
125          * first album, nothing happens.
126          *
127          * @param album
128          *              The album to move up
129          * @return The album that the given album swapped the place with, or
130          *         <code>null</code> if the album did not change its place
131          */
132         Album moveAlbumUp(Album album);
133
134         /**
135          * Moves the given album down in this album’s albums. If the album is already
136          * the last album, nothing happens.
137          *
138          * @param album
139          *              The album to move down
140          * @return The album that the given album swapped the place with, or
141          *         <code>null</code> if the album did not change its place
142          */
143         Album moveAlbumDown(Album album);
144
145         /**
146          * Returns the images in this album.
147          *
148          * @return The images in this album
149          */
150         List<Image> getImages();
151
152         /**
153          * Moves the given image up in this album’s images. If the image is already the
154          * first image, nothing happens.
155          *
156          * @param image
157          *              The image to move up
158          * @return The image that the given image swapped the place with, or
159          *         <code>null</code> if the image did not change its place
160          */
161         Image moveImageUp(Image image);
162
163         /**
164          * Moves the given image down in this album’s images. If the image is already
165          * the last image, nothing happens.
166          *
167          * @param image
168          *              The image to move down
169          * @return The image that the given image swapped the place with, or
170          *         <code>null</code> if the image did not change its place
171          */
172         Image moveImageDown(Image image);
173
174         /**
175          * Returns the album image of this album, or {@code null} if no album image has
176          * been set.
177          *
178          * @return The image to show when this album is listed
179          */
180         Image getAlbumImage();
181
182         /**
183          * Returns whether this album contains any other albums or images.
184          *
185          * @return {@code true} if this album is empty, {@code false} otherwise
186          */
187         boolean isEmpty();
188
189         /**
190          * Returns whether this album is an identitiy’s root album.
191          *
192          * @return {@code true} if this album is an identity’s root album, {@code
193          *         false} otherwise
194          */
195         boolean isRoot();
196
197         /**
198          * Returns the parent album of this album.
199          *
200          * @return The parent album of this album, or {@code null} if this album does
201          *         not have a parent
202          */
203         Album getParent();
204
205         /**
206          * Returns the title of this album.
207          *
208          * @return The title of this album
209          */
210         String getTitle();
211
212         /**
213          * Returns the description of this album.
214          *
215          * @return The description of this album
216          */
217         String getDescription();
218
219         AlbumBuilder newAlbumBuilder() throws IllegalStateException;
220
221         ImageBuilder newImageBuilder() throws IllegalStateException;
222
223         /**
224          * Returns a modifier for this album.
225          *
226          * @return A modifier for this album
227          * @throws IllegalStateException
228          *              if this album can not be modified
229          */
230         Modifier modify() throws IllegalStateException;
231
232         void remove() throws IllegalStateException;
233
234         /**
235          * Allows modifying an album. Modifications are only performed once {@link
236          * #update()} has succesfully returned a new album with the modifications
237          * made.
238          *
239          * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
240          */
241         interface Modifier {
242
243                 Modifier setTitle(String title);
244
245                 Modifier setDescription(String description);
246
247                 Modifier setAlbumImage(String imageId);
248
249                 Album update() throws IllegalStateException;
250
251         }
252
253 }