UserProperties.java
35.2 KB
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
/*
** Copyright (c) 1997 by Tim Endres
**
** This program is free software.
**
** You may redistribute it and/or modify it under the terms of the GNU
** General Public License as published by the Free Software Foundation.
** Version 2 of the license should be included with this distribution in
** the file LICENSE, as well as License.html. If the license is not
** included with this distribution, you may find a copy at the FSF web
** site at 'www.gnu.org' or 'www.fsf.org', or you may write to the
** Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139 USA.
**
** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND,
** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR
** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY
** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR
** REDISTRIBUTION OF THIS SOFTWARE.
**
*/
package com.sitech.ismp.ice.util;
import java.lang.reflect.*;
import java.io.*;
import java.awt.*;
import java.util.*;
import java.net.*;
/**
* The UserProperties class. This class is used to extend
* the concept of System.getProperty(). This class adds the
* following features:
*
* <ul>
* <li> A hierarchical property definition structure.
* <li> Typed property retrieval with default values.
* <li> Hierarchical overrides allowings properties to
* be overridden on a per user or per host or per host
* and user basis.
* <li> The ability to load from any valid resource, including
* files stored in JAR files, files located via the file system,
* which includes networked file systems, as well as any other
* resource that can be identified via a URL, including web pages,
* FTP-ed files, and more.
* </ul>
*
* <p>
* Here is how it works. We have <em>six</em> levels of
* properties which are loaded based on various settings.
* The levels look like this:
*
* <ol>
* <li> Hardwired defaults.
* <li> Application defined defaults.
* <li> Defaults resource.
* <li> System level resource list.
* <li> Application property file.
* <li> Application resource list.
* </ol>
*
* <p>
* Resource lists are colon (:) separated strings listing
* resource names to be loaded into the properties.
*
* <p>
* In a typical deployment, the developer will place the
* defaults resource in the JAR file containing the application's
* classes. This file will then define the application properties
* file, which will usually be left empty allowing the user to
* place all customizations in this local file. For distributed
* applications, system resources will typically be supplied via
* simple web pages, which allows for automatic updates of many
* properties. The application resource list is then typically
* reserved for specific user customizations, or for distributed
* customizations, or updates.
*
* <p>
* Typically, the System Resource List is defined in the
* Defaults Resource. However, it can also be defined by
* the application defaults, or can be hardwired into the
* code if desired. Further, the Application Resource List
* is typically defined by the Application Property File,
* although it can be defined in any of the previous loaded
* resources.
*
* <p>
* Also note that the application prefix can be set at any
* point up to and including the defaults resource. After
* the defaults resource is loaded, the prefix property is
* consulted, and if set, is used as the new application
* prefix. The prefix property is named by adding together
* the application's package name and the string 'propertyPrefix'.
* Thus, the prefix property for 'com.sitech.ismp.ice.jcvs' would be named
* 'com.sitech.ismp.ice.jcvs.propertyPrefix', and would typically be set
* in the defaults resource.
*
* <p>
* Things the application <strong>must</strong> do to use this class:
*
* <ul>
* <li> Set the property prefix via UserProperties.setPropertyPrefix()
* <li> Set the defaults resource via UserProperties.setDefaultsResource()
* <li> Process any arguments via UserProperties.processOptions()
* <li> Load all properties.
* </ul>
*
* <p>
* Here is an example from a typical main():
* <pre>
* UserProperties.setPropertyPrefix( "WebTool." );
*
* UserProperties.setDefaultsResource
* ( "/com/ice/webtool/defaults.txt" );
*
* // PROCESS PROPERTIES OPTIONS
* // The returned args are those not processed.
* args = UserProperties.processOptions( args );
*
* // Now app should process remaining arguments...
*
* // LOAD PROPERTIES
* UserProperties.loadProperties( "com.sitech.ismp.ice.webtool", null );
* </pre>
*
* <p>
* Properties are accessed via the getProperty() methods, which
* provide versions for String, int, double, and boolean values.
* Any property is looked for as follows:
*
* <ol>
* <li> fullname.osname.username
* <li> fullname.username
* <li> fullname.osname
* <li> fullname
* </ol>
*
* Whichever property is found first is returned.
* The <em>fullname</em> consists of the property name prefixed
* by the application's property prefix. The username and osname
* suffixes are used to override general properties by os or by
* user. These suffixes are printed at startup to System.err.
* The osname suffix is the osname with spaces replaced by
* underscores. The username suffix is the user's name with
* spaces replaced by underscores.
*
* <p>
* If the property name starts with a period
* (.), then the prefix is not added to get the full name.
* If the property name ends with a period (.), then none
* of the suffixes are applied, and only the name is used
* to search for a property.
*
* <p>
* Thus, while the property name "mainWindow.x" would match
* a property definition named "prefix.mainWindow.x.user", the
* property ".mainWindow.x." would match a property with only
* that name and no prefix or suffix, and the property
* "mainWindow.x." would match "prefix.mainWindow.x" only
* and not allow for suffix overrides.
*
* <p>
* The following parameters are understood by processOptions():
*
* <ul>
* <li> -propPrefix prefix -- sets the property prefix.
* <li> -propFile filename -- sets the application property file.
* <li> -propDefaults resource -- sets the defaults resource name.
* <li> -propDebug -- turns on debugging of property handling.
* <li> -propVerbose -- turns on verbosity.
* <li> -propOS osname -- set the property os suffix.
* <li> -propUser username -- set the property user name suffix.
* </ul>
*
* @version $Revision: 1.8 $
* @author Tim Endres,
* <a href="mailto:time@ice.com">time@ice.com</a>.
*/
public abstract class
UserProperties
{
private static final String PREFIX_PROPERTY = "propertyPrefix";
private static final String DEFAULTS_RSRC_NAME = ".com.sitech.ismp.ice.global.defaultsResource.";
private static final String GLOBAL_RSRCLIST_NAME = ".com.sitech.ismp.ice.global.propertyResourceList";
private static final String GLOBAL_RSRC_PREFIX = ".com.sitech.ismp.ice.global.propertyResource.";
private static final String APP_RSRCLIST_NAME = ".com.sitech.ismp.ice.local.propertyResourceList";
private static final String APP_RSRC_PREFIX = ".com.sitech.ismp.ice.local.propertyResource.";
private static final String LOCAL_PROPERTY = "global.localPropertyFile";
private static final String LOCAL_DEFAULT = null;
private static final String DYNAMIC_PROPERTY_VERSION = "1.0";
private static boolean debug;
private static boolean verbose;
private static String osname;
private static String userName;
private static String userHome;
private static String javaHome;
private static String prefix;
private static String osSuffix;
private static String userSuffix;
private static String defaultsResource;
private static String localPropertyFile;
/**
* This is a Hashtable of Vectors. The table keys are
* dynamic property package names. Each Vector contains
* the list of property names in the dynamic package.
*/
private static Hashtable dynKeysTable;
/**
* This is a Hashtable of Strings. The table keys are
* dynamic property package names. Each String is the
* pathname to the property file for the dynamic package.
*/
private static Hashtable dynPathTable;
/**
* Used for temporary working properties.
*/
private static Properties workingProps;
static
{
UserProperties.debug = false;
UserProperties.verbose = false;
UserProperties.prefix = null;
UserProperties.defaultsResource = null;
UserProperties.localPropertyFile = null;
UserProperties.dynKeysTable = new Hashtable();
UserProperties.dynPathTable = new Hashtable();
UserProperties.workingProps = new Properties();
UserProperties.osname = System.getProperty( "os.name" );
UserProperties.userName = System.getProperty( "user.name" );
UserProperties.userHome = System.getProperty( "user.home" );
UserProperties.javaHome = System.getProperty( "java.home" );
UserProperties.osSuffix =
UserProperties.osname.replace( ' ', '_' );
UserProperties.userSuffix =
UserProperties.userName.replace( ' ', '_' );
}
static public String
getOSName()
{
return UserProperties.osname;
}
static public String
getUserHome()
{
return UserProperties.userHome;
}
static public String
getUserName()
{
return UserProperties.userName;
}
static public void
setDebug( boolean debug )
{
UserProperties.debug = debug;
}
static public void
setVerbose( boolean verbose )
{
UserProperties.verbose = verbose;
}
static public void
setLocalPropertyFile( String fileName )
{
UserProperties.localPropertyFile = fileName;
}
static public void
setDefaultsResource( String rsrcName )
{
UserProperties.defaultsResource = rsrcName;
}
static public void
setOSSuffix( String suffix )
{
UserProperties.osSuffix = suffix;
}
static public void
setUserSuffix( String suffix )
{
UserProperties.userSuffix = suffix;
}
static public void
setPropertyPrefix( String prefix )
{
if ( prefix.endsWith( "." ) )
UserProperties.prefix = prefix;
else
UserProperties.prefix = prefix + ".";
}
static public String
getPropertyPrefix()
{
return UserProperties.prefix;
}
static public String
getLineSeparator()
{
return System.getProperty( "line.separator", "\n" );
}
static public Font
getFont( String name, Font defaultFont )
{
return
Font.getFont
( UserProperties.prefixedPropertyName( name ),
defaultFont );
}
static public Color
getColor( String name, Color defaultColor )
{
return
Color.getColor
( UserProperties.prefixedPropertyName( name ),
defaultColor );
}
static public String
prefixedPropertyName( String name )
{
return UserProperties.prefix + name;
}
public static String
normalizePropertyName( String name )
{
if ( name.startsWith( "." ) )
return name.substring(1);
else
return UserProperties.prefixedPropertyName( name );
}
/**
* Retrieve a system string property.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default string value.
* @return The string value of the named property.
*/
static private String
getOverridableProperty( String name, String defval )
{
String value = null;
String overName = null;
String fullName = null;
fullName = UserProperties.normalizePropertyName( name );
if ( fullName.endsWith( "." ) )
{
fullName = fullName.substring( 0, fullName.length() - 1 );
value = System.getProperty( fullName, defval );
if ( UserProperties.debug )
System.err.println
( "UserProperties.getOverridableProperty: "
+ fullName + " = '" + value + "'" );
return value;
}
if ( UserProperties.osSuffix != null
&& UserProperties.userSuffix != null )
{
overName =
fullName + "." + UserProperties.osSuffix
+ "." + UserProperties.userSuffix;
value = System.getProperty( overName, null );
if ( UserProperties.debug )
System.err.println
( "UserProperties.getOverridableProperty: "
+ overName + " = '" + value + "'" );
if ( value != null )
return value;
}
if ( UserProperties.userSuffix != null )
{
overName = fullName + "." + UserProperties.userSuffix;
value = System.getProperty( overName, null );
if ( UserProperties.debug )
System.err.println
( "UserProperties.getOverridableProperty: "
+ overName + " = '" + value + "'" );
if ( value != null )
return value;
}
if ( UserProperties.osSuffix != null )
{
overName = fullName + "." + UserProperties.osSuffix;
value = System.getProperty( overName, null );
if ( UserProperties.debug )
System.err.println
( "UserProperties.getOverridableProperty: "
+ overName + " = '" + value + "'" );
if ( value != null )
return value;
}
if ( value == null )
{
value = System.getProperty( fullName, null );
if ( UserProperties.debug )
System.err.println
( "UserProperties.getOverridableProperty: "
+ fullName + " = '" + value + "'" );
}
if ( value == null )
{
value = defval;
if ( UserProperties.debug )
System.err.println
( "UserProperties.getOverridableProperty: "
+ name + " defaulted to '" + value + "'" );
}
return value;
}
/**
* Retrieve a system string property.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default string value.
* @return The string value of the named property.
*/
static public String
getProperty( String name, String defval )
{
String result =
UserProperties.getOverridableProperty
( name, defval );
return result;
}
/**
* Retrieve a system integer property.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default integer value.
* @return The integer value of the named property.
*/
static public int
getProperty( String name, int defval )
{
int result = defval;
String val = UserProperties.getProperty( name, null );
if ( val != null )
{
try { result = Integer.parseInt( val ); }
catch ( NumberFormatException ex )
{ result = defval; }
}
return result;
}
/**
* Retrieve a system long property.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default integer value.
* @return The integer value of the named property.
*/
static public long
getProperty( String name, long defval )
{
long result = defval;
String val = UserProperties.getProperty( name, null );
if ( val != null )
{
try { result = Long.parseLong( val ); }
catch ( NumberFormatException ex )
{ result = defval; }
}
return result;
}
/**
* Retrieve a system double property.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default double value.
* @return The double value of the named property.
*/
static public double
getProperty( String name, double defval )
{
double result = defval;
String val = UserProperties.getProperty( name, null );
if ( val != null )
{
try { result = Double.valueOf( val ).doubleValue(); }
catch ( NumberFormatException ex )
{ result = defval; }
}
return result;
}
/**
* Retrieve a system boolean property.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default boolean value.
* @return The boolean value of the named property.
*/
static public boolean
getProperty( String name, boolean defval )
{
boolean result = defval;
String val = UserProperties.getProperty( name, null );
if ( val != null )
{
if ( val.equalsIgnoreCase( "T" )
|| val.equalsIgnoreCase( "TRUE" )
|| val.equalsIgnoreCase( "Y" )
|| val.equalsIgnoreCase( "YES" ) )
result = true;
else if ( val.equalsIgnoreCase( "F" )
|| val.equalsIgnoreCase( "FALSE" )
|| val.equalsIgnoreCase( "N" )
|| val.equalsIgnoreCase( "NO" ) )
result = false;
}
return result;
}
/**
* Retrieve a system string array property list. String
* arrays are represented by colon separated strings.
* Returns a provided default value if the property
* is not defined.
*
* @param name The name of the property to retrieve.
* @param defval A default boolean value.
* @return The string array value of the named property.
*/
static public String[]
getStringArray( String name, String[] defval )
{
String[] result = defval;
String val = UserProperties.getProperty( name, null );
if ( val != null )
{
result = StringUtilities.splitString( val, ":" );
}
return result;
}
static public Vector
getStringVector( String name, Vector defval )
{
Vector result = defval;
String[] sa =
UserProperties.getStringArray
( name, null );
if ( sa != null )
{
result = new Vector();
for ( int s = 0 ; s < sa.length ; ++s )
result.addElement( sa[s] );
}
return result;
}
/**
* Retrieve a system Class constant property.
*
* @param name The name of the property to retrieve.
* @param defval A default integer value.
* @return The integer value of the named property.
*/
static public int
getClassConstant( String name, int defval )
{
int result = defval;
String val = UserProperties.getProperty( name, null );
if ( val != null )
{
int index = val.lastIndexOf( "." );
if ( index > 0 )
{
try {
String className = val.substring( 0, index );
String constName = val.substring( index + 1);
Class cls = Class.forName( className );
Field fld = cls.getField( constName );
result = fld.getInt( null );
}
catch ( Exception ex )
{
result = defval;
ICETracer.traceWithStack
( "Exception getting constant." );
}
}
}
return result;
}
/**
* Establishes critical default properties.
*
* @param props The system properties to add properties into.
*/
static public void
defaultProperties( Properties props )
{
props.put( "com.sitech.ismp.ice.util.UserProperties.revision", "$Revision: 1.8 $" );
props.put( "copyright", "Copyright (c) by Tim Endres" );
//
// Define the following to create a global
// enterprise-wide defaults resource...
// e.g.
//
// props.put
// ( UserProperties.DEFAULTS_RSRC_NAME,
// "http://www.ice.com/properties/defaults.txt" );
//
}
static public void
includeProperties( Properties into, Properties from )
{
Enumeration enum1 = from.keys();
for ( ; enum1.hasMoreElements() ; )
{
Object key = null;
try { key = (String)enum1.nextElement(); }
catch ( NoSuchElementException ex )
{ key = null; }
if ( key != null )
{
into.put( key, from.get( key ) );
}
}
}
static public void
addDefaultProperties( Properties props, Properties defaultProps )
{
UserProperties.includeProperties( props, defaultProps );
}
/**
* Loads a properties stream into the System properties table.
*
* @param path The properties data's input stream.
* @param props The system properties to add properties into.
*/
static private boolean
loadPropertiesStream( InputStream in, Properties props )
throws IOException
{
props.load( in );
return true;
}
static private void
doLoadPropertiesFile( String path, Properties props, Properties loaded )
throws IOException
{
FileInputStream in;
boolean result = true;
try { in = new FileInputStream( path ); }
catch ( IOException ex )
{
throw new IOException
( "opening property file '" + path
+ "' - " + ex.getMessage() );
}
try {
if ( loaded != null )
{
UserProperties.loadPropertiesStream( in, loaded );
UserProperties.includeProperties( props, loaded );
}
else
{
UserProperties.loadPropertiesStream( in, props );
}
}
catch ( IOException ex )
{
throw new IOException
( "loading property file '" + path
+ "' - " + ex.getMessage() );
}
try { in.close(); }
catch ( IOException ex )
{
throw new IOException
( "closing property file '" + path
+ "' - " + ex.getMessage() );
}
}
/**
* Loads a named properties file into the System properties table.
*
* @param path The properties file's pathname.
* @param props The system properties to add properties into.
* @param loaded If not null, insert properties here before loading.
*/
static private boolean
loadPropertiesFile( String path, Properties props, Properties loaded )
{
FileInputStream in;
boolean result = true;
if ( UserProperties.debug )
System.err.println
( "Loading property file '" + path + "'." );
try {
UserProperties.doLoadPropertiesFile( path, props, loaded );
}
catch ( IOException ex )
{
System.err.println
( "ERROR " + ex.getMessage() );
result = false;
}
if ( result )
System.err.println
( "Loaded property file '" + path + "'." );
return result;
}
/**
* Loads a named properties file into the System properties table.
* This method fails <em>silently,</em>, as we do not care if the
* file is there, and it is a feature that the user can remove the
* file to <em>reset</em> their settings.
*
* @param path The properties file's pathname.
* @param props The system properties to add properties into.
*/
static private void
loadDynamicProperties( String name, String path )
{
Properties dynProps = new Properties();
Properties sysProps = System.getProperties();
if ( UserProperties.debug )
System.err.println
( "Loading '" + name
+ "' protperties from '" + path + "'." );
try {
UserProperties.doLoadPropertiesFile( path, sysProps, dynProps );
UserProperties.addDynamicPropertyKeys( name, dynProps );
System.err.println
( "Loaded '" + name + "' properties from '" + path + "'." );
}
catch ( IOException ex )
{
// Silently fail on dynamic property files!
}
}
static private boolean
loadPropertiesResource( String name, Properties props )
{
InputStream in;
boolean result = false;
if ( UserProperties.debug )
System.err.println
( "Load properties resource '" + name + "'" );
try {
in = ResourceUtilities.openNamedResource( name );
UserProperties.loadPropertiesStream( in, props );
in.close();
result = true;
}
catch ( java.io.IOException ex )
{
System.err.println
( "ERROR loading properties resource '"
+ name + "' - " + ex.getMessage() );
}
return result;
}
private static void
loadPropertyResourceList(
String listPropName, String rsrcPrefix, Properties props )
{
String rsrcListStr =
UserProperties.getProperty( listPropName, null );
if ( rsrcListStr != null )
{
String[] rsrcList =
StringUtilities.splitString( rsrcListStr, ":" );
for ( int rIdx = 0
; rsrcList != null && rIdx < rsrcList.length
; ++rIdx )
{
String rsrcTag = rsrcPrefix + rsrcList[rIdx];
String rsrcName =
UserProperties.getProperty( rsrcTag, null );
if ( rsrcName != null )
{
boolean result =
UserProperties.loadPropertiesResource
( rsrcName, props );
if ( ! result )
{
System.err.println
( "ERROR loading property resource '"
+ rsrcName + "'" );
}
}
}
}
}
// UNDONE
// This routine need to use JNDI (?) to get a 'global' property
// file name (typically on a network mounted volume) to read,
// which should in turn set the name of the local property file.
// JNDI should also set some 'critical' properties, such as
// the important OTA hostnames, service ports, etc.
// REVIEW
// UNDONE
// This routine should have a 'filter' that filters out all
// global properties that do not start with prefix?
/**
* Load all related properties for this application.
* This class method will look for a global properties
* file, loading it if found, then looks for a local
* properties file and loads that.
*/
static public void
loadProperties( String packageName, Properties appProps )
{
boolean result;
File propFile;
String propPath;
String propName;
String rsrcName;
if ( UserProperties.debug )
{
UserProperties.printContext( System.err );
}
Properties sysProps =
System.getProperties();
if ( sysProps == null )
return;
UserProperties.defaultProperties( sysProps );
//
// ---- PROCESS THE DEFAULT PROPERTIES RESOURCE
//
rsrcName = UserProperties.defaultsResource;
if ( rsrcName == null )
{
rsrcName =
UserProperties.getProperty
( UserProperties.DEFAULTS_RSRC_NAME, null );
}
if ( UserProperties.debug )
System.err.println
( "Default Properties Resource '" + rsrcName + "'" );
if ( rsrcName != null )
{
result =
UserProperties.loadPropertiesResource
( rsrcName, sysProps );
System.err.println
( "Loaded "
+ ( result ? "the " : "no " )
+ "default properties." );
}
//
// ---- PROCESS THE APPLICATION DEFAULT PROPERTIES
//
if ( appProps != null )
{
if ( UserProperties.debug )
System.err.println
( "Adding application default properties." );
UserProperties.addDefaultProperties
( sysProps, appProps );
}
//
// ---- PROCESS THE PREFIX PROPERTY
//
String newPrefix = UserProperties.prefix;
if ( UserProperties.debug )
System.err.println
( "Prefix '" + newPrefix + "'" );
if ( newPrefix == null )
{
UserProperties.getProperty
( packageName + "."
+ UserProperties.PREFIX_PROPERTY, null );
if ( newPrefix != null )
{
if ( UserProperties.debug )
System.err.println
( "Prefix via property '" + newPrefix + "'" );
UserProperties.setPropertyPrefix( newPrefix );
if ( UserProperties.verbose )
System.err.println
( "Property prefix set to '" + newPrefix + "'" );
}
}
//
// ---- PROCESS THE GLOBAL PROPERTIES RESOURCES
//
UserProperties.loadPropertyResourceList
( UserProperties.GLOBAL_RSRCLIST_NAME,
UserProperties.GLOBAL_RSRC_PREFIX, sysProps );
//
// ---- PROCESS THE GLOBAL DYNAMIC PROPERTY REGISTRATIONS
//
UserProperties.processDynamicProperties();
//
// ---- PROCESS THE LOCAL PROPERTIES FILE
//
propPath = UserProperties.localPropertyFile;
if ( propPath == null )
{
propPath =
UserProperties.getProperty
( UserProperties.LOCAL_PROPERTY,
UserProperties.LOCAL_DEFAULT );
}
if ( UserProperties.debug )
System.err.println
( "Local property file '" + propPath + "'" );
if ( propPath != null )
{
propFile = new File( propPath );
if ( propFile.exists() )
{
result =
UserProperties.loadPropertiesFile
( propPath, sysProps, null );
if ( ! result )
{
System.err.println
( "ERROR loading local property file '"
+ propPath + "'" );
}
}
}
//
// ---- PROCESS THE GLOBAL PROPERTIES RESOURCES
//
UserProperties.loadPropertyResourceList
( UserProperties.APP_RSRCLIST_NAME,
UserProperties.APP_RSRC_PREFIX, sysProps );
}
private static void
processDynamicProperties()
{
//
// First, register any dynamic property definitions
// defined by global properties.
//
Properties sysProps = System.getProperties();
String dynPropList =
sysProps.getProperty( "global.dynamicPropList", null );
if ( dynPropList != null )
{
String[] dynList =
StringUtilities.splitString( dynPropList, ":" );
for ( int sIdx = 0 ; sIdx < dynList.length ; ++sIdx )
{
String dynName = dynList[sIdx];
String pathPropName =
"global.dynamicPropFile." + dynName;
String dynPath =
sysProps.getProperty( pathPropName, null );
if ( dynPath != null )
{
if ( dynPath.startsWith( "~" + File.separator ) )
{
dynPath =
sysProps.getProperty( "user.home", "" )
+ dynPath.substring( 2 );
}
UserProperties.registerDynamicProperties
( dynName, dynPath, new Properties() );
}
}
}
// Now, we do the actual loading of dynamic properties.
Enumeration names = UserProperties.dynKeysTable.keys();
for ( ; names.hasMoreElements() ; )
{
String name = (String) names.nextElement();
String path = (String)
UserProperties.dynPathTable.get( name );
UserProperties.loadDynamicProperties( name, path );
}
}
public static void
registerDynamicProperties( String name, String path, Properties props )
{
UserProperties.dynPathTable.put( name, path );
UserProperties.addDynamicPropertyKeys( name, props );
}
private static void
addDynamicPropertyKeys( String name, Properties dynProps )
{
Vector dynKeys = (Vector)
UserProperties.dynKeysTable.get( name );
if ( dynKeys == null )
{
dynKeys =
( dynProps == null )
? new Vector( 0 )
: new Vector( dynProps.size() );
UserProperties.dynKeysTable.put( name, dynKeys );
}
if ( dynProps != null )
{
// Ensure all key names are
Enumeration keys = dynProps.keys();
for ( ; keys.hasMoreElements() ; )
{
String keyName = (String)keys.nextElement();
if ( ! dynKeys.contains( keyName ) )
dynKeys.addElement( keyName );
}
}
}
/**
* This method expects the property keys to be
* <strong>normalized</strong>, meaning that they are
* the full property name with the prefix added on.
*/
private static void
copyDynamicProperties( String name, Properties props )
{
String path = (String) UserProperties.dynPathTable.get( name );
Vector keys = (Vector) UserProperties.dynKeysTable.get( name );
if ( keys == null || path == null )
throw new NoSuchElementException
( "you have not registered the dynamic property "
+ "package named '" + name + "'" );
Properties sysProps = System.getProperties();
try {
Enumeration enum1 = props.keys();
for ( ; enum1.hasMoreElements() ; )
{
String key = (String)enum1.nextElement();
if ( key != null )
{
String normalKey =
UserProperties.normalizePropertyName( key );
sysProps.put( normalKey, props.get( key ) );
if ( ! keys.contains( normalKey ) )
keys.addElement( normalKey );
}
}
}
catch ( NoSuchElementException ex )
{ }
}
public static void
setDynamicProperties( String name, Properties props )
{
UserProperties.copyDynamicProperties( name, props );
}
/**
* This method expects the property keys to be <strong>not</strong>
* <em>normalized</em>, meaning that they are the full
* property name with the prefix added on.
*/
public static void
setDynamicProperty( String name, String propName, String propValue )
{
UserProperties.workingProps.clear();
UserProperties.workingProps.put( propName, propValue );
UserProperties.setDynamicProperties
( name, UserProperties.workingProps );
}
/**
* This method removes a property from the dynamic properties.
*/
public static void
removeDynamicProperty( String name, String propName )
{
String path = (String) UserProperties.dynPathTable.get( name );
Vector keys = (Vector) UserProperties.dynKeysTable.get( name );
if ( keys == null || path == null )
throw new NoSuchElementException
( "you have not registered the dynamic property "
+ "package named '" + name + "'" );
String normalKey =
UserProperties.normalizePropertyName( propName );
if ( keys.contains( normalKey ) )
{
keys.removeElement( normalKey );
System.getProperties().remove( normalKey );
}
}
public static void
saveDynamicProperties( String name )
throws IOException
{
String path = (String) UserProperties.dynPathTable.get( name );
Vector keys = (Vector) UserProperties.dynKeysTable.get( name );
if ( keys == null || path == null )
throw new NoSuchElementException
( "you have not registered the dynamic property "
+ "package named '" + name + "'" );
Properties dynProps = new Properties();
Properties sysProps = System.getProperties();
int count = keys.size();
for ( int idx = 0 ; idx < count ; ++idx )
{
String pName = (String) keys.elementAt(idx);
dynProps.put( pName, sysProps.get( pName ) );
}
UserProperties.saveDynamicPropFile( name, path, dynProps );
}
private static void
saveDynamicPropFile( String name, String path, Properties dynProps )
throws IOException
{
String eol = System.getProperty( "line.separator", "\n" );
String comment = eol +
"## -------------------- W A R N I N G -------------------- " + eol +
"# This file is automatically generated." + eol +
"# Any changes you make to this file will be overwritten." + eol +
"## ---------------------------------------------------------" + eol +
"#";
FileOutputStream out =
new FileOutputStream( path );
dynProps.put(
"global.dynPropVersion." + name,
UserProperties.DYNAMIC_PROPERTY_VERSION );
dynProps.save( out, comment );
out.close();
}
public static void
printContext( PrintStream out )
{
out.println
( "os.name = '" + UserProperties.osname + "'" );
out.println
( "user.name = '" + UserProperties.userName + "'" );
out.println
( "user.home = '" + UserProperties.userHome + "'" );
out.println
( "java.home = '" + UserProperties.javaHome + "'" );
out.println( "" );
out.println
( "prefix = '" + UserProperties.prefix + "'" );
out.println
( "osSuffix = '" + UserProperties.osSuffix + "'" );
out.println
( "userSuffix = '" + UserProperties.userSuffix + "'" );
out.println( "" );
}
public static void
printUsage( PrintStream out )
{
out.println
( "Properties options:" );
out.println
( " -propDebug -- "
+ "turns on debugging of property loading" );
out.println
( " -propVerbose -- "
+ "turns on verbose messages during loading" );
out.println
( " -propDefaults rsrcName -- "
+ "sets default properties resource name" );
out.println
( " -propFile path -- "
+ "sets application property file path" );
out.println
( " -propOS suffix -- "
+ "sets the os suffix" );
out.println
( " -propUser suffix -- "
+ "sets the user suffix" );
out.println
( " -propPrefix prefix -- "
+ "sets application property prefix" );
}
static public String []
processOptions( String [] args )
{
Vector newArgs = new Vector( args.length );
for ( int iArg = 0 ; iArg < args.length ; ++iArg )
{
if ( args[iArg].equals( "-propPrefix" )
&& (iArg + 1) < args.length )
{
UserProperties.setPropertyPrefix( args[++iArg] );
}
else if ( args[iArg].equals( "-propFile" )
&& (iArg + 1) < args.length )
{
UserProperties.setLocalPropertyFile( args[++iArg] );
}
else if ( args[iArg].equals( "-propDefaults" )
&& (iArg + 1) < args.length )
{
UserProperties.setDefaultsResource( args[++iArg] );
}
else if ( args[iArg].equals( "-propDebug" ) )
{
UserProperties.setDebug( true );
}
else if ( args[iArg].equals( "-propVerbose" ) )
{
UserProperties.setVerbose( true );
}
else if ( args[iArg].equals( "-propOS" )
&& (iArg + 1) < args.length )
{
UserProperties.setOSSuffix( args[++iArg] );
}
else if ( args[iArg].equals( "-propUser" )
&& (iArg + 1) < args.length )
{
UserProperties.setUserSuffix( args[++iArg] );
}
else
{
newArgs.addElement( args[iArg] );
}
}
String[] result = new String[ newArgs.size() ];
for ( int i = 0 ; i < newArgs.size() ; ++i )
result[i] = (String) newArgs.elementAt(i);
return result;
}
}