Only rely on the database interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / memory / MemoryImage.java
1 /*
2  * Sone - MemoryImage.java - Copyright © 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.database.memory;
19
20 import net.pterodactylus.sone.data.Album;
21 import net.pterodactylus.sone.data.Image;
22 import net.pterodactylus.sone.data.Sone;
23 import net.pterodactylus.sone.data.impl.AbstractImage;
24 import net.pterodactylus.sone.database.Database;
25
26 /**
27  * In-memory implementation of an {@link Image}.
28  *
29  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
30  */
31 public class MemoryImage extends AbstractImage {
32
33         private final Database database;
34         private final Sone sone; /* TODO - store sone ID only. */
35         private final String albumId;
36
37         public MemoryImage(Database database, String id, Sone sone, String albumId, String key, long creationTime, int width, int height) {
38                 super(id, key, creationTime, width, height);
39                 this.database = database;
40                 this.sone = sone;
41                 this.albumId = albumId;
42         }
43
44         @Override
45         public Sone getSone() {
46                 return sone;
47         }
48
49         @Override
50         public Album getAlbum() {
51                 return database.getAlbum(albumId).get();
52         }
53
54         @Override
55         public void moveUp() throws IllegalStateException {
56                 database.moveUp(this);
57         }
58
59         @Override
60         public void moveDown() throws IllegalStateException {
61                 database.moveDown(this);
62         }
63
64         @Override
65         public void remove() throws IllegalStateException {
66                 database.removeImage(this);
67         }
68
69 }