-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/.classpath | ||
/.project | ||
/.settings/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
package autoderiv; | ||
|
||
import static autoderiv.Debug.*; | ||
import java.io.BufferedReader; | ||
import java.io.File; | ||
import java.io.FileInputStream; | ||
import java.io.FileNotFoundException; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
import org.eclipse.core.resources.ResourcesPlugin; | ||
|
||
/** Plugin-wide constants goes here. */ | ||
public class Cst { | ||
public static final String PLUGIN_ID = "net.nodj.AutoDerivPlugin"; | ||
public static final String PLUGIN_NAME = "AutoDeriv"; | ||
public static final String CONF_FILE_NAME = ".derived"; | ||
public static final String PLUGIN_CONF_FILE_NAME = "autoderiv.ini"; | ||
|
||
public static String TRACE_LOG_STR = "/trace/logfile/enable"; | ||
public static String TRACE_STD_STR = "/trace/stdout/enable"; | ||
public static String TRACE_WARN_STR = "/trace/warn/enable"; | ||
public static String TRACE_INFO_STR = "/trace/info/enable"; | ||
public static String TRACE_DBG_STR = "/trace/debug/enable"; | ||
public static boolean TRACE_LOG = true; | ||
public static boolean TRACE_STD = false; | ||
public static boolean ENABLE_WARN = true; | ||
public static boolean ENABLE_INFO = false; | ||
public static boolean ENABLE_DBG = false; | ||
|
||
public static boolean DECORATION_SUFFIX_ENABLED = true; | ||
public static String DECORATION_SUFFIX_STR = "/decoration/suffix"; | ||
public static String DECORATION_SUFFIX = " <deriv>"; | ||
|
||
public static boolean DECORATION_PREFIX_ENABLED = false; | ||
public static String DECORATION_PREFIX_STR = "/decoration/prefix"; | ||
public static String DECORATION_PREFIX = ""; | ||
|
||
public static String DECORATION_FOREGROUND_R_STR = "/decoration/foreground/r"; | ||
public static String DECORATION_FOREGROUND_G_STR = "/decoration/foreground/g"; | ||
public static String DECORATION_FOREGROUND_B_STR = "/decoration/foreground/b"; | ||
public static int DECORATION_FOREGROUND_R = -1; | ||
public static int DECORATION_FOREGROUND_G = -1; | ||
public static int DECORATION_FOREGROUND_B = -1; | ||
public static boolean DECORATION_FOREGROUND_ENABLED = false; | ||
|
||
public static String DECORATION_BACKGROUND_R_STR = "/decoration/background/r"; | ||
public static String DECORATION_BACKGROUND_G_STR = "/decoration/background/g"; | ||
public static String DECORATION_BACKGROUND_B_STR = "/decoration/background/b"; | ||
public static int DECORATION_BACKGROUND_R = -1; | ||
public static int DECORATION_BACKGROUND_G = -1; | ||
public static int DECORATION_BACKGROUND_B = -1; | ||
public static boolean DECORATION_BACKGROUND_ENABLED = false; | ||
|
||
|
||
public static void readConf() { | ||
File f = ResourcesPlugin.getWorkspace().getRoot().getLocation().append(".metadata").append(PLUGIN_CONF_FILE_NAME).toFile(); | ||
if(f==null || !f.exists()){ | ||
f = ResourcesPlugin.getWorkspace().getRoot().getLocation().append(PLUGIN_CONF_FILE_NAME).toFile(); | ||
if(f==null || !f.exists()) | ||
return; | ||
} | ||
|
||
dbg("found plugin conf file at "+f.getAbsolutePath()); | ||
|
||
FileInputStream fis; | ||
try { | ||
fis = new FileInputStream(f); | ||
} catch (FileNotFoundException e) { | ||
e.printStackTrace(); | ||
return; | ||
} | ||
|
||
BufferedReader br = new BufferedReader(new InputStreamReader(fis)); | ||
try { | ||
String line = null; | ||
int i = 0; | ||
while ((line = br.readLine()) != null){ | ||
try { | ||
parseConfLine(line, ++i); | ||
} catch (Exception e) { | ||
warn("bad pluging conf parsing at line "+i); | ||
} | ||
} | ||
br.close(); | ||
} catch (IOException e) { | ||
e.printStackTrace(); | ||
} | ||
|
||
DECORATION_FOREGROUND_ENABLED = | ||
( DECORATION_FOREGROUND_R>0 | ||
& DECORATION_FOREGROUND_G>0 | ||
& DECORATION_FOREGROUND_B>0); | ||
|
||
DECORATION_BACKGROUND_ENABLED = | ||
( DECORATION_BACKGROUND_R > 0 | ||
& DECORATION_BACKGROUND_G > 0 | ||
& DECORATION_BACKGROUND_B > 0); | ||
|
||
} | ||
|
||
|
||
private static void parseConfLine(String line, int i) throws NumberFormatException { | ||
// filter out comments (after #char) | ||
int commentLocation = line.indexOf('#'); | ||
if(commentLocation != -1) | ||
line = line.substring(0, commentLocation); | ||
if(line.trim().isEmpty()) return; // comments | ||
|
||
dbg("parse line ["+i+"]: "+ line); | ||
|
||
// check that its an affectation line | ||
String[] a = line.split("="); | ||
if(a.length==2){ | ||
String key = a[0].trim(); | ||
String val = a[1]; | ||
String valt = a[1].trim(); | ||
dbg("parsed: [" + key +"] = "+ valt); | ||
if(key.equals(PLUGIN_ID+TRACE_LOG_STR)) | ||
Cst.TRACE_LOG = "true".equals(valt); | ||
if(key.equals(PLUGIN_ID+TRACE_STD_STR)) | ||
Cst.TRACE_STD = "true".equals(valt); | ||
else if(key.equals(PLUGIN_ID+TRACE_DBG_STR)) | ||
Cst.ENABLE_DBG = "true".equals(valt); | ||
else if(key.equals(PLUGIN_ID+TRACE_INFO_STR)) | ||
Cst.ENABLE_INFO = "true".equals(valt); | ||
else if(key.equals(PLUGIN_ID+TRACE_WARN_STR)) | ||
Cst.ENABLE_WARN = "true".equals(valt); | ||
|
||
|
||
else if(key.equals(PLUGIN_ID+DECORATION_SUFFIX_STR)){ | ||
DECORATION_SUFFIX_ENABLED = true; | ||
DECORATION_SUFFIX = val; | ||
} | ||
else if(key.equals(PLUGIN_ID+DECORATION_PREFIX_STR)){ | ||
DECORATION_PREFIX_ENABLED = true; | ||
DECORATION_PREFIX = val; | ||
} | ||
else if(key.equals(PLUGIN_ID+DECORATION_FOREGROUND_R_STR)) | ||
DECORATION_FOREGROUND_R = Integer.parseInt(valt); | ||
else if(key.equals(PLUGIN_ID+DECORATION_FOREGROUND_G_STR)) | ||
DECORATION_FOREGROUND_G = Integer.parseInt(valt); | ||
else if(key.equals(PLUGIN_ID+DECORATION_FOREGROUND_B_STR)) | ||
DECORATION_FOREGROUND_B = Integer.parseInt(valt); | ||
|
||
else if(key.equals(PLUGIN_ID+DECORATION_BACKGROUND_R_STR)) | ||
|
||
DECORATION_BACKGROUND_R = Integer.parseInt(valt); | ||
else if(key.equals(PLUGIN_ID+DECORATION_BACKGROUND_G_STR)) | ||
DECORATION_BACKGROUND_G = Integer.parseInt(valt); | ||
else if(key.equals(PLUGIN_ID+DECORATION_BACKGROUND_B_STR)) | ||
DECORATION_BACKGROUND_B = Integer.parseInt(valt); | ||
else | ||
warn("key not recognized at line: " + i); | ||
} | ||
else if(a.length==1){ | ||
// it like an affectation to nothing | ||
String key = a[0].trim(); | ||
|
||
if(key.equals(PLUGIN_ID+DECORATION_PREFIX_STR)) | ||
DECORATION_PREFIX_ENABLED = false; | ||
else if(key.equals(PLUGIN_ID+DECORATION_SUFFIX_STR)) | ||
DECORATION_SUFFIX_ENABLED = false; | ||
else | ||
warn("key not affected correctly: " + i); | ||
} | ||
else{ | ||
warn("bad line: " + i); | ||
} | ||
} | ||
} |