2 * Sone - Album.java - Copyright © 2011–2013 David Roden
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.
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.
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/>.
18 package net.pterodactylus.sone.data;
20 import static java.util.Arrays.asList;
21 import static java.util.Collections.emptyList;
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;
29 import net.pterodactylus.sone.database.AlbumBuilder;
30 import net.pterodactylus.sone.database.ImageBuilder;
32 import com.google.common.base.Function;
33 import com.google.common.base.Optional;
34 import com.google.common.base.Predicate;
35 import com.google.common.collect.FluentIterable;
36 import com.google.common.collect.ImmutableList;
39 * Container for images that can also contain nested {@link Album}s.
41 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43 public interface Album extends Identified, Fingerprintable {
45 /** Compares two {@link Album}s by {@link #getTitle()}. */
46 Comparator<Album> TITLE_COMPARATOR = new Comparator<Album>() {
49 public int compare(Album leftAlbum, Album rightAlbum) {
50 return leftAlbum.getTitle().compareToIgnoreCase(rightAlbum.getTitle());
54 /** Function that flattens the given album and all albums beneath it. */
55 Function<Album, List<Album>> FLATTENER = new Function<Album, List<Album>>() {
59 public List<Album> apply(Album album) {
63 List<Album> albums = new ArrayList<Album>();
65 for (Album subAlbum : album.getAlbums()) {
66 albums.addAll(FluentIterable.from(ImmutableList.of(subAlbum)).transformAndConcat(FLATTENER).toList());
72 /** Function that transforms an album into the images it contains. */
73 Function<Album, List<Image>> IMAGES = new Function<Album, List<Image>>() {
77 public List<Image> apply(Album album) {
78 return (album != null) ? album.getImages() : Collections.<Image>emptyList();
83 * Filter that removes all albums that do not have any images in any album
86 Predicate<Album> NOT_EMPTY = new Predicate<Album>() {
89 public boolean apply(Album album) {
90 /* so, we flatten all albums below the given one and check whether at least one album… */
91 return FluentIterable.from(asList(album)).transformAndConcat(FLATTENER).anyMatch(new Predicate<Album>() {
94 public boolean apply(Album album) {
95 /* …contains any inserted images. */
96 return !album.getImages().isEmpty() && FluentIterable.from(album.getImages()).allMatch(new Predicate<Image>() {
99 public boolean apply(Image input) {
100 return input.isInserted();
109 * Returns the ID of this album.
111 * @return The ID of this album
116 * Returns the Sone this album belongs to.
118 * @return The Sone this album belongs to
122 List<Album> getAlbums();
125 * Returns the images in this album.
127 * @return The images in this album
129 List<Image> getImages();
131 Optional<Image> getAlbumImage();
134 * Returns whether this album contains any other albums or images.
136 * @return {@code true} if this album is empty, {@code false} otherwise
141 * Returns whether this album is an identitiy’s root album.
143 * @return {@code true} if this album is an identity’s root album, {@code
149 * Returns the parent album of this album.
151 * @return The parent album of this album, or {@code null} if this album does
157 * Returns the title of this album.
159 * @return The title of this album
164 * Returns the description of this album.
166 * @return The description of this album
168 String getDescription();
170 AlbumBuilder newAlbumBuilder() throws IllegalStateException;
172 ImageBuilder newImageBuilder() throws IllegalStateException;
175 * Returns a modifier for this album.
177 * @return A modifier for this album
178 * @throws IllegalStateException
179 * if this album can not be modified
181 Modifier modify() throws IllegalStateException;
187 void remove() throws IllegalStateException;
190 * Allows modifying an album. Modifications are only performed once {@link
191 * #update()} has succesfully returned a new album with the modifications
194 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
198 Modifier setTitle(String title);
200 Modifier setDescription(String description);
202 Modifier setAlbumImage(String imageId);
204 Album update() throws IllegalStateException;