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
|
/* Copyright (C) 2012 Brian P. Hinz
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
//
// For storing user preferences not specified as configuration parameters.
//
package com.tigervnc.vncviewer;
import java.util.prefs.Preferences;
import java.util.prefs.BackingStoreException;
import com.tigervnc.rfb.*;
public class UserPreferences {
private static Preferences root = Preferences.userRoot().node("TigerVNC");
public static void set(String nName, String key, String val) {
Preferences node = root.node(nName);
node.put(key, val);
}
public static void set(String nName, String key, int val) {
Preferences node = root.node(nName);
node.putInt(key, val);
}
public static void set(String nName, String key, boolean val) {
Preferences node = root.node(nName);
node.putBoolean(key, val);
}
public static String get(String nName, String key) {
Preferences node = root.node(nName);
VoidParameter p = Configuration.getParam(key);
if (p != null)
return node.get(key, p.getDefaultStr());
return node.get(key, null);
}
public static boolean getBool(String nName, String key, boolean defval) {
Preferences node = root.node(nName);
VoidParameter p = Configuration.getParam(key);
if (p != null && p.isBool())
return node.getBoolean(key, ((p.getDefaultStr() == "1") ? true : false));
// for non-parameter preferences
return node.getBoolean(key, defval);
}
public static boolean getBool(String nName, String key) {
// default value of "false" arbitrarily chosen
return getBool(nName, key, false);
}
public static int getInt(String nName, String key) {
Preferences node = root.node(nName);
VoidParameter p = Configuration.getParam(key);
if (p != null && !p.isBool())
return node.getInt(key, Integer.parseInt(p.getDefaultStr()));
// FIXME
return -1;
}
public static void save() {
try {
root.sync();
String[] keys = root.keys();
for (int i = 0; i < keys.length; i++)
vlog.debug(keys[i]+" = "+root.get(keys[i], null));
} catch (BackingStoreException e) {
vlog.error(e.getMessage());
}
}
public static void save(String nName) {
try {
Preferences node = root.node(nName);
node.sync();
String[] keys = root.keys();
for (int i = 0; i < keys.length; i++)
vlog.debug(keys[i]+" = "+node.get(keys[i], null));
} catch (BackingStoreException e) {
vlog.error(e.getMessage());
}
}
public static void clear() {
try {
root.clear();
String[] children = root.childrenNames();
for (int i = 0; i < children.length; i++) {
Preferences node = root.node(children[i]);
node.removeNode();
}
root.sync();
} catch (BackingStoreException e) {
vlog.error(e.getMessage());
}
}
public static void clear(String nName) {
try {
Preferences node = root.node(nName);
node.clear();
node.sync();
} catch (BackingStoreException e) {
vlog.error(e.getMessage());
}
}
public static void load(String nName) {
// Sets the value of any corresponding Configuration parameters
try {
Preferences node = root.node(nName);
String[] keys = node.keys();
for (int i = 0; i < keys.length; i++) {
String key = keys[i];
VoidParameter p = Configuration.getParam(key);
if (p == null)
continue;
String valueStr = node.get(key, null);
if (valueStr == null)
valueStr = p.getDefaultStr();
Configuration.setParam(key, valueStr);
}
} catch (BackingStoreException e) {
vlog.error(e.getMessage());
}
}
static LogWriter vlog = new LogWriter("UserPreferences");
}
|