Don’t store the style locally.
[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 T current;
55
56                 public T get() {
57                         return current;
58                 }
59
60                 public Value<T> set(T value) {
61                         current = value;
62                         return this;
63                 }
64
65                 public boolean dirty() {
66                         return (original != null) ? !original.equals(current) : current != null;
67                 }
68
69                 public Value<T> commit() {
70                         original = current;
71                         return this;
72                 }
73
74         }
75
76 }