2021-06-21 09:45:31 +00:00
|
|
|
package the.bytecode.club.bytecodeviewer;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
/**
|
2021-06-26 01:13:46 +00:00
|
|
|
* General program constants, to use this class include everything as a wildcard static import:
|
|
|
|
* import static the.bytecode.club.bytecodeviewer.Constants.*;
|
|
|
|
*
|
2021-06-21 09:45:31 +00:00
|
|
|
* @author Konloch
|
|
|
|
* @since 6/21/2021
|
|
|
|
*/
|
|
|
|
public class Constants
|
|
|
|
{
|
|
|
|
/*per version*/
|
2021-07-01 21:56:30 +00:00
|
|
|
public static final String VERSION = "2.10.13"; //could be loaded from the pom
|
2021-06-21 09:45:31 +00:00
|
|
|
public static String krakatauVersion = "12";
|
|
|
|
public static String enjarifyVersion = "4";
|
|
|
|
public static final boolean BLOCK_TAB_MENU = true;
|
|
|
|
public static final boolean PREVIEW_COPY = false;
|
|
|
|
public static final boolean FAT_JAR = true; //could be automatic by checking if it's loaded a class named whatever for a library
|
|
|
|
public static final boolean OFFLINE_MODE = true; //disables the automatic updater
|
|
|
|
|
|
|
|
public static final int maxRecentFiles = 25;
|
|
|
|
public static final String fs = System.getProperty("file.separator");
|
|
|
|
public static final String nl = System.getProperty("line.separator");
|
|
|
|
public static final File BCVDir = new File(System.getProperty("user.home") + fs + ".Bytecode-Viewer");
|
|
|
|
public static final File RT_JAR = new File(System.getProperty("java.home") + fs + "lib" + fs + "rt.jar");
|
|
|
|
public static final File RT_JAR_DUMPED = new File(getBCVDirectory() + fs + "rt.jar");
|
|
|
|
public static final String filesName = getBCVDirectory() + fs + "recentfiles.json";
|
|
|
|
public static final String pluginsName = getBCVDirectory() + fs + "recentplugins.json";
|
|
|
|
public static final String settingsName = getBCVDirectory() + fs + "settings.bcv";
|
|
|
|
public static final String tempDirectory = getBCVDirectory() + fs + "bcv_temp" + fs;
|
|
|
|
public static final String libsDirectory = getBCVDirectory() + fs + "libs" + fs;
|
|
|
|
public static String krakatauWorkingDirectory = getBCVDirectory() + fs + "krakatau_" + krakatauVersion;
|
|
|
|
public static String enjarifyWorkingDirectory = getBCVDirectory() + fs + "enjarify_" + enjarifyVersion;
|
2021-06-29 18:25:46 +00:00
|
|
|
public static final String[] SUPPORTED_FILE_EXTENSIONS = new String[]{"jar", "zip", "class", "apk", "xapk", "dex", "war", "jsp"};
|
2021-06-21 09:45:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the BCV directory
|
|
|
|
*
|
|
|
|
* @return the static BCV directory
|
|
|
|
*/
|
2021-06-26 05:25:50 +00:00
|
|
|
public static String getBCVDirectory()
|
|
|
|
{
|
2021-06-21 09:45:31 +00:00
|
|
|
while (!BCVDir.exists())
|
|
|
|
BCVDir.mkdirs();
|
|
|
|
|
|
|
|
if (!BCVDir.isHidden() && isWindows())
|
|
|
|
hideFile(BCVDir);
|
|
|
|
|
|
|
|
return BCVDir.getAbsolutePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the OS contains 'win'
|
|
|
|
*
|
|
|
|
* @return true if the os.name property contains 'win'
|
|
|
|
*/
|
2021-06-26 05:25:50 +00:00
|
|
|
private static boolean isWindows()
|
|
|
|
{
|
2021-06-21 09:45:31 +00:00
|
|
|
return System.getProperty("os.name").toLowerCase().contains("win");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs the windows command to hide files
|
|
|
|
*
|
|
|
|
* @param f file you want hidden
|
|
|
|
*/
|
2021-06-26 05:25:50 +00:00
|
|
|
private static void hideFile(File f)
|
|
|
|
{
|
2021-07-07 03:42:48 +00:00
|
|
|
BytecodeViewer.sm.pauseBlocking();
|
2021-06-21 09:45:31 +00:00
|
|
|
try {
|
|
|
|
// Hide file by running attrib system command (on Windows)
|
|
|
|
Runtime.getRuntime().exec("attrib +H " + f.getAbsolutePath());
|
|
|
|
} catch (Exception e) {
|
2021-07-07 02:51:10 +00:00
|
|
|
BytecodeViewer.handleException(e);
|
2021-06-21 09:45:31 +00:00
|
|
|
}
|
2021-07-07 03:42:48 +00:00
|
|
|
BytecodeViewer.sm.resumeBlocking();
|
2021-06-21 09:45:31 +00:00
|
|
|
}
|
|
|
|
}
|