Let abstract base class implement the base interface.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / AbstractBase.java
1 /*
2  * DemosceneMusic - Base.java - Copyright © 2012 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.demoscenemusic.data;
19
20 import java.util.HashMap;
21 import java.util.Map;
22
23 /**
24  * TODO
25  *
26  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
27  */
28 public abstract class AbstractBase implements Base {
29
30         private final String id;
31
32         private final Map<String, Value<?>> attributes = new HashMap<String, Value<?>>();
33
34         protected AbstractBase(String id) {
35                 this.id = id;
36         }
37
38         public String id() {
39                 return id;
40         }
41
42         @SuppressWarnings({ "synthetic-access", "unchecked" })
43         protected <T> Value<T> value(String name, Class<T> clazz) {
44                 if (!attributes.containsKey(name)) {
45                         attributes.put(name, new Value<T>());
46                 }
47                 return (Value<T>) attributes.get(name);
48         }
49
50         protected boolean dirty() {
51                 for (Value<?> value : attributes.values()) {
52                         if (value.dirty()) {
53                                 return true;
54                         }
55                 }
56                 return false;
57         }
58
59         protected static class Value<T> {
60
61                 private T original;
62
63                 private boolean originalSet;
64
65                 private T current;
66
67                 public T get() {
68                         return current;
69                 }
70
71                 public Value<T> set(T value) {
72                         if (!originalSet) {
73                                 original = value;
74                                 originalSet = true;
75                         }
76                         current = value;
77                         return this;
78                 }
79
80                 public boolean dirty() {
81                         return (original != null) ? !original.equals(current) : current != null;
82                 }
83
84                 public Value<T> commit() {
85                         original = current;
86                         return this;
87                 }
88
89         }
90
91 }