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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
* Copyright 2004-2005 Cendio AB.
* Copyright 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.
*/
//
// Configuration - class for dealing with configuration parameters.
//
package com.tigervnc.rfb;
import java.io.FileInputStream;
import java.io.PrintWriter;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.*;
public class Configuration {
static LogWriter vlog = new LogWriter("Configuration");
public enum ConfigurationObject { ConfGlobal, ConfServer, ConfViewer };
// -=- The Global/server/viewer Configuration objects
private static Configuration global_ = null;
private static Configuration server_ = null;
private static Configuration viewer_ = null;
public static Configuration global() {
if (global_ == null)
global_ = new Configuration("Global");
return global_;
}
public static Configuration server() {
if (server_ == null)
server_ = new Configuration("Server");
return server_;
}
public static Configuration viewer() {
if (viewer_ == null)
viewer_ = new Configuration("Viewer");
return viewer_;
}
// Enable server/viewer specific parameters
public static void enableServerParams() { global().appendConfiguration(server()); }
public static void enableViewerParams() { global().appendConfiguration(viewer()); }
// Append configuration object to this instance.
// NOTE: conf instance can be only one configuration object
public void appendConfiguration(Configuration conf) {
conf._next = _next; _next = conf;
}
// -=- Configuration implementation
public Configuration(String name_, Configuration attachToGroup) {
name = name_; head = null; _next = null;
if (attachToGroup != null) {
_next = attachToGroup._next;
attachToGroup._next = this;
}
}
public Configuration(String name_) {
this(name_, null);
}
// - Return the buffer containing the Configuration's name
final public String getName() { return name; }
// - Assignment operator. For every Parameter in this Configuration's
// group, get()s the corresponding source parameter and copies its
// content.
public Configuration assign(Configuration src) {
VoidParameter current = head;
while (current != null) {
VoidParameter srcParam = ((Configuration)src).get(current.getName());
if (srcParam != null) {
current.immutable = false;
String value = srcParam.getValueStr();
vlog.debug("operator=("+current.getName()+", "+value+")");
current.setParam(value);
}
current = current._next;
}
if (_next != null)
_next = src;
return this;
}
// - Set named parameter to value
public boolean set(String n, String v, boolean immutable) {
return set(n, n.length(), v, immutable);
}
public boolean set(String n, String v) {
return set(n, n.length(), v, false);
}
// - Set parameter to value (separated by "=")
public boolean set(String name, int len,
String val, boolean immutable)
{
VoidParameter current = head;
while (current != null) {
if (current.getName().length() == len &&
current.getName().equalsIgnoreCase(name.substring(0, len)))
{
boolean b = current.setParam(val);
current.setHasBeenSet();
if (b && immutable)
current.setImmutable();
return b;
}
current = current._next;
}
return (_next != null) ? _next.set(name, len, val, immutable) : false;
}
// - Set named parameter to value, with name truncated at len
boolean set(String config, boolean immutable) {
boolean hyphen = false;
if (config.charAt(0) == '-') {
hyphen = true;
config = config.substring(1);
if (config.charAt(0) == '-') config = config.substring(1); // allow gnu-style --<option>
}
int equal = config.indexOf('=');
if (equal > -1) {
return set(config, equal, config.substring(equal+1), immutable);
} else if (hyphen) {
VoidParameter current = head;
while (current != null) {
if (current.getName().equalsIgnoreCase(config)) {
boolean b = current.setParam();
current.setHasBeenSet();
if (b && immutable)
current.setImmutable();
return b;
}
current = current._next;
}
}
return (_next != null) ? _next.set(config, immutable) : false;
}
boolean set(String config) {
return set(config, false);
}
// - Container for process-wide Global parameters
public static boolean setParam(String param, String value, boolean immutable) {
return global().set(param, value, immutable);
}
public static boolean setParam(String param, String value) {
return setParam(param, value, false);
}
public static boolean setParam(String config, boolean immutable) {
return global().set(config, immutable);
}
public static boolean setParam(String config) {
return setParam(config, false);
}
public static boolean setParam(String name, int len,
String val, boolean immutable) {
return global().set(name, len, val, immutable);
}
// - Get named parameter
public VoidParameter get(String param)
{
VoidParameter current = head;
while (current != null) {
if (current.getName().equalsIgnoreCase(param))
return current;
current = current._next;
}
return (_next != null) ? _next.get(param) : null;
}
public static VoidParameter getParam(String param) { return global().get(param); }
public static void listParams(int width, int nameWidth) {
global().list(width, nameWidth);
}
public static void listParams() {
listParams(79, 10);
}
public void list(int width, int nameWidth) {
VoidParameter current = head;
System.err.format("%s Parameters:%n", name);
while (current != null) {
String def_str = current.getDefaultStr();
String desc = current.getDescription().trim();
String format = " %-"+nameWidth+"s -";
System.err.format(format, current.getName());
int column = current.getName().length();
if (column < nameWidth) column = nameWidth;
column += 4;
while (true) {
int s = desc.indexOf(' ');
int wordLen;
if (s > -1) wordLen = s;
else wordLen = desc.length();
if (column + wordLen + 1 > width) {
format = "%n%"+(nameWidth+4)+"s";
System.err.format(format, "");
column = nameWidth+4;
}
format = " %"+wordLen+"s";
System.err.format(format, desc.substring(0, wordLen));
column += wordLen + 1;
if (s == -1) break;
desc = desc.substring(wordLen+1);
}
if (def_str != null) {
if (column + def_str.length() + 11 > width)
System.err.format("%n%"+(nameWidth+4)+"s","");
System.err.format(" (default=%s)%n",def_str);
def_str = null;
} else {
System.err.format("%n");
}
current = current._next;
}
if (_next != null)
_next.list(width, nameWidth);
}
public void list() {
list(79, 10);
}
public void readAppletParams(java.applet.Applet applet) {
VoidParameter current = head;
while (current != null) {
String str = applet.getParameter(current.getName());
if (str != null)
current.setParam(str);
current = current._next;
}
}
public static void load(String filename) {
if (filename == null)
return;
/* Read parameters from file */
Properties props = new Properties();
try {
props.load(new FileInputStream(filename));
} catch(java.security.AccessControlException e) {
vlog.error("Cannot access system properties:"+e.getMessage());
return;
} catch (java.lang.Exception e) {
vlog.error("Error opening config file:"+e.getMessage());
return;
}
for (Iterator<String> i = props.stringPropertyNames().iterator(); i.hasNext();) {
String name = (String)i.next();
if (name.startsWith("[")) {
// skip the section delimiters
continue;
} else if (name.equals("host")) {
setParam("Server", props.getProperty(name));
} else if (name.equals("disableclipboard")) {
setParam("RecvClipboard", props.getProperty(name));
setParam("SendClipboard", props.getProperty(name));
} else if (name.equals("localcursor")) {
setParam("UseLocalCursor", props.getProperty(name));
} else {
if (!setParam(name, props.getProperty(name)))
vlog.debug("Cannot set parameter: "+name);
}
}
}
public static void save(String filename) {
PrintWriter pw = null;
try {
pw = new PrintWriter(filename, "UTF-8");
} catch (java.lang.Exception e) {
vlog.error("Error opening config file:"+e.getMessage());
return;
}
pw.println("# TigerVNC viewer configuration");
DateFormat dateFormat = new SimpleDateFormat("E MMM d k:m:s z yyyy");
Date date = new Date();
pw.println("# "+dateFormat.format(date));
VoidParameter current = Configuration.global().head;
while (current != null) {
String name = current.getName();
String value = current.getValueStr();
if (!name.equals("Server") && !name.equals("Port") &&
value != null && value != current.getDefaultStr())
pw.println(name+"="+current.getValueStr());
current = current._next;
}
pw.flush();
pw.close();
}
// Name for this Configuration
private String name;
// - Pointer to first Parameter in this group
public VoidParameter head;
// Pointer to next Configuration in this group
public Configuration _next;
}
|