-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathLocalSettings.java
314 lines (269 loc) · 6.84 KB
/
LocalSettings.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
// Copyright © 2016-2024 Andy Goryachev <[email protected]>
package goryachev.fx.settings;
import goryachev.common.util.ASettingsStore;
import goryachev.common.util.CMap;
import goryachev.common.util.SStream;
import goryachev.fx.Converters;
import goryachev.fx.FxAction;
import goryachev.fx.FxDouble;
import goryachev.fx.FxInt;
import goryachev.fx.HasSettings;
import goryachev.fx.SSConverter;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.Property;
import javafx.scene.Node;
import javafx.stage.Window;
import javafx.util.StringConverter;
/**
* Local Settings: specific to a Node or a Window.
*
* Supports chaining of calls, i.e.:
*
* <pre>
* LocalSettings.get(this).
* add(...).
* add(...);
*/
// FIX must be a part of FxSettings and use their storage provider!
public class LocalSettings
{
protected abstract class Entry
{
public abstract void saveValue(String prefix, ASettingsStore store);
public abstract void loadValue(String prefix, ASettingsStore store);
}
//
private final CMap<String,Entry> entries = new CMap<>();
private static final Object PROP_BINDINGS = new Object();
public LocalSettings()
{
}
/** returns a Node-specific instance, or null if not found. This method should not be called from the client code normally. */
public static LocalSettings getOrNull(Node n)
{
return (LocalSettings)n.getProperties().get(PROP_BINDINGS);
}
/** returns a Window-specific instance, or null if not found. This method should not be called from the client code normally. */
public static LocalSettings getOrNull(Window w)
{
return (LocalSettings)w.getProperties().get(PROP_BINDINGS);
}
/** returns a Node-specific instance, creating it within the Node's properties when necessary */
public static LocalSettings get(Node n)
{
LocalSettings s = getOrNull(n);
if(s == null)
{
s = new LocalSettings();
n.getProperties().put(PROP_BINDINGS, s);
}
return s;
}
/** returns a Window-specific instance, creating it within the Window's properties when necessary */
public static LocalSettings get(Window w)
{
LocalSettings s = getOrNull(w);
if(s == null)
{
s = new LocalSettings();
w.getProperties().put(PROP_BINDINGS, s);
}
return s;
}
public <T> LocalSettings add(String subKey, Property<T> p, StringConverter<T> c)
{
StringConverter<T> conv = (c == null) ? Converters.get(p) : c;
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
T v = p.getValue();
String s = (v == null ? null : conv.toString(v));
store.setString(prefix + "." + subKey, s);
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
String s = store.getString(prefix + "." + subKey);
if(s != null)
{
T v = conv.fromString(s);
p.setValue(v);
}
}
});
return this;
}
public <T> LocalSettings add(String subKey, SSConverter<T> c, Property<T> p)
{
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
T v = p.getValue();
SStream s = (v == null ? null : c.toStream(v));
store.setStream(prefix + "." + subKey, s);
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
SStream s = store.getStream(prefix + "." + subKey);
if(s != null)
{
T v = c.fromStream(s);
p.setValue(v);
}
}
});
return this;
}
public LocalSettings add(String subKey, Property<String> p)
{
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
String v = p.getValue();
if(v != null)
{
store.setString(prefix + "." + subKey, v);
}
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
String v = store.getString(prefix + "." + subKey);
if(v != null)
{
p.setValue(v);
}
}
});
return this;
}
public LocalSettings add(String subKey, FxDouble p)
{
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
double v = p.getValue();
store.setString(prefix + "." + subKey, String.valueOf(v));
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
String s = store.getString(prefix + "." + subKey);
if(s != null)
{
try
{
double v = Double.parseDouble(s);
p.setValue(v);
}
catch(Exception ignore)
{ }
}
}
});
return this;
}
public LocalSettings add(String subKey, FxInt p)
{
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
int v = p.getValue();
store.setString(prefix + "." + subKey, String.valueOf(v));
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
String s = store.getString(prefix + "." + subKey);
if(s != null)
{
try
{
int v = Integer.parseInt(s);
p.setValue(v);
}
catch(Exception ignore)
{ }
}
}
});
return this;
}
public LocalSettings add(String subKey, BooleanProperty p)
{
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
boolean v = p.getValue();
store.setString(prefix + "." + subKey, v ? "true" : "false");
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
String v = store.getString(prefix + "." + subKey);
boolean on = Boolean.parseBoolean(v);
p.setValue(on);
}
});
return this;
}
public LocalSettings add(String subKey, FxAction a)
{
return add(subKey, a.selectedProperty());
}
public <T> LocalSettings add(String subKey, HasSettings x)
{
entries.put(subKey, new Entry()
{
@Override
public void saveValue(String prefix, ASettingsStore store)
{
x.storeSettings(prefix + "." + subKey);
}
@Override
public void loadValue(String prefix, ASettingsStore store)
{
x.restoreSettings(prefix + "." + subKey);
}
});
return this;
}
protected static String encode(Object x)
{
if(x == null)
{
return null;
}
// TODO hex, base64, or random
return x.toString();
}
public void loadValues(String prefix, ASettingsStore store)
{
for(String k: entries.keySet())
{
Entry en = entries.get(k);
en.loadValue(prefix, store);
}
}
public void saveValues(String prefix, ASettingsStore store)
{
for(String k: entries.keySet())
{
Entry en = entries.get(k);
en.saveValue(prefix, store);
}
}
}