|
What this is
This file is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn
Java by Example" TM.
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.modules.vcs.advanced.variables;
import java.util.*;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.text.MessageFormat;
import org.openide.util.NbBundle;
import org.openide.filesystems.FileObject;
import org.netbeans.modules.vcscore.VcsConfigVariable;
/**
* This class provides input of variables from property file for compatibility
* with old versions.
*
* @author Martin Entlicher
*/
public class VariableIOCompat extends Object {
public static final String CONFIG_FILE_EXT = "properties";
/** Creates new VariableIOCompat */
private VariableIOCompat() {
}
/** Read list of VCS variables from properties. Variables are stored as
* var..value and optionaly var..label, var..basic,
* var..localFile or var..localDir.
* If there is only value specified, label is empty string and basic, localFile
* and localDir are false.
*/
public static Vector readVariables(Properties props){
Vector result=new Vector(20);
String VAR_PREFIX = "var."; // NOI18N
for(Iterator iter=props.keySet().iterator(); iter.hasNext();){
String key=(String)iter.next();
if(key.startsWith(VAR_PREFIX) && key.endsWith(".value")) { // NOI18N
int startIndex = VAR_PREFIX.length ();
int endIndex = key.length() - ".value".length (); // NOI18N
String name = key.substring(startIndex, endIndex);
String value = (String) props.get(key);
String label = (String) props.get(VAR_PREFIX + name + ".label"); // NOI18N
if (label == null) label = ""; // NOI18N
String strBasic = (String) props.get(VAR_PREFIX + name + ".basic"); // NOI18N
boolean basic = (strBasic != null) && (strBasic.equalsIgnoreCase ("true")); // NOI18N
String strLocalFile = (String) props.get(VAR_PREFIX + name + ".localFile"); // NOI18N
boolean localFile = (strLocalFile != null) && (strLocalFile.equalsIgnoreCase ("true")); // NOI18N
String strLocalDir = (String) props.get(VAR_PREFIX + name + ".localDir"); // NOI18N
boolean localDir = (strLocalDir != null) && (strLocalDir.equalsIgnoreCase ("true")); // NOI18N
String strExec = (String) props.get(VAR_PREFIX + name + ".executable"); // NOI18N
boolean exec = (strExec != null) && (strExec.equalsIgnoreCase ("true")); // NOI18N
String customSelector=(String)props.get(VAR_PREFIX + name + ".selector"); // NOI18N
if (customSelector == null) customSelector = "";
String orderStr = (String) props.get(VAR_PREFIX + name + ".order"); // NOI18N
int order = -1;
if (orderStr != null) {
try {
order = Integer.parseInt(orderStr);
} catch (NumberFormatException e) {
// ignoring
order = -1;
}
}
VcsConfigVariable var = new VcsConfigVariable (name, label, value, basic, localFile, localDir, customSelector, order);
var.setExecutable(exec);
result.addElement(var);
}
}
result = VcsConfigVariable.sortVariables(result);
return result;
}
/** Open file and load properties from it.
* @param configRoot the directory which contains properties.
* @param name the name of properties to read.
*/
public static Properties readPredefinedProperties(FileObject configRoot, final String name){
Properties props=new Properties();
FileObject config = configRoot.getFileObject(name);
if (config == null) {
org.openide.ErrorManager.getDefault().notify(new FileNotFoundException("Problems while reading predefined properties.") {
public String getLocalizedMessage() {
return g("EXC_Problems_while_reading_predefined_properties", name);
}
});
return props;
}
try{
InputStream in = config.getInputStream();
props.load(in);
in.close();
}
catch(FileNotFoundException e) {
org.openide.ErrorManager.getDefault().notify(new FileNotFoundException("Problems while reading predefined properties.") {
public String getLocalizedMessage() {
return g("EXC_Problems_while_reading_predefined_properties", name);
}
});
}
catch(IOException e){
org.openide.ErrorManager.getDefault().notify(new IOException("Problems while reading predefined properties.") {
public String getLocalizedMessage() {
return g("EXC_Problems_while_reading_predefined_properties", name);
}
});
}
return props;
}
private static String g(String s) {
return NbBundle.getBundle(VariableIOCompat.class).getString (s);
}
private static String g(String s, Object obj) {
return MessageFormat.format (g(s), new Object[] { obj });
}
}
|