6a21081c6f6c727aae3b80fbf356ad64edcb3f66
[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 class AbstractBase {
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 static class Value<T> {
51
52                 private T original;
53
54                 private boolean originalSet;
55
56                 private T current;
57
58                 public T get() {
59                         return current;
60                 }
61
62                 public Value<T> set(T value) {
63                         if (!originalSet) {
64                                 original = value;
65                                 originalSet = true;
66                         }
67                         current = value;
68                         return this;
69                 }
70
71                 public boolean dirty() {
72                         return (original != null) ? !original.equals(current) : current != null;
73                 }
74
75                 public Value<T> commit() {
76                         original = current;
77                         return this;
78                 }
79
80         }
81
82 }