forked from External/mage
88 lines
No EOL
3.8 KiB
Java
88 lines
No EOL
3.8 KiB
Java
package mage.util;
|
|
|
|
/**
|
|
* Devs only: enable or disable debug features
|
|
* <p>
|
|
* WARNING, don't forget to disable it before release/commit
|
|
*
|
|
* @author JayDi85
|
|
*/
|
|
public class DebugUtil {
|
|
|
|
public static boolean NETWORK_SHOW_CLIENT_CALLBACK_MESSAGES_LOG = false; // show all callback messages (server commands)
|
|
|
|
// cards basic (card panels)
|
|
public static boolean GUI_CARD_DRAW_OUTER_BORDER = false;
|
|
public static boolean GUI_CARD_DRAW_INNER_BORDER = false;
|
|
public static boolean GUI_CARD_ICONS_DRAW_PANEL_BORDER = false;
|
|
public static boolean GUI_CARD_ICONS_DRAW_ICON_BORDER = false;
|
|
public static boolean GUI_CARD_DRAW_MOUSE_CONTAINS_BOUNDS = false;
|
|
|
|
// cards renders (inner card panel)
|
|
public static boolean GUI_RENDER_IMAGE_DRAW_IMAGE_BORDER = false;
|
|
public static boolean GUI_RENDER_CENTERED_TEXT_DRAW_DEBUG_LINES = false;
|
|
|
|
// popup container (example: popup with card info)
|
|
public static boolean GUI_POPUP_CONTAINER_DRAW_DEBUG_BORDER = false;
|
|
|
|
// deck editor
|
|
public static boolean GUI_DECK_EDITOR_DRAW_DRAGGING_PANE_BORDER = false;
|
|
public static boolean GUI_DECK_EDITOR_DRAW_COUNT_LABEL_BORDER = false;
|
|
|
|
// game
|
|
public static boolean GUI_GAME_DRAW_BATTLEFIELD_BORDER = false;
|
|
public static boolean GUI_GAME_DRAW_HAND_AND_STACK_BORDER = false;
|
|
public static boolean GUI_GAME_DRAW_PLAYER_PANEL_BORDER = false;
|
|
public static boolean GUI_GAME_DRAW_SKIP_BUTTONS_PANEL_BORDER = false;
|
|
public static boolean GUI_GAME_DRAW_PHASE_BUTTONS_PANEL_BORDER = false;
|
|
public static boolean GUI_GAME_DRAW_COMMANDS_PANEL_BORDER = false;
|
|
|
|
// game dialogs
|
|
public static boolean GUI_GAME_DIALOGS_DRAW_CARDS_AREA_BORDER = false;
|
|
|
|
// database - show additional info about cache and memory settings
|
|
public static boolean DATABASE_SHOW_CACHE_AND_MEMORY_STATS_ON_STARTUP = false;
|
|
|
|
// database - collect sql queries and stats
|
|
// how-to use:
|
|
// - clean db folders or delete all *.trace.db files
|
|
// - run tests or real server to collect some stats
|
|
// - download h2 files for ver 1.4.197 from https://h2database.com/h2-2018-03-18.zip and open tools folder like xxx\H2\bin
|
|
// - execute command: java -cp "h2-1.4.196.jar;%H2DRIVERS%;%CLASSPATH%" org.h2.tools.ConvertTraceFile -traceFile "xxx\Mage.Tests\db\cards.h2.trace.db" -script "xxx\Mage.Tests\db\cards.h2.trace.sql"
|
|
// - open *.sql file for all sql-queries and exec stats
|
|
public static boolean DATABASE_PROFILE_SQL_QUERIES_TO_FILE = false;
|
|
|
|
// network
|
|
public static boolean NETWORK_PROFILE_REQUESTS = false; // collect diff time between requests, http status and url into special log file
|
|
public static String NETWORK_PROFILE_REQUESTS_DUMP_FILE_NAME = "httpRequests.log";
|
|
|
|
/**
|
|
* Return method and source line number like "secondMethod - DebugUtilTest.java:21"
|
|
*
|
|
* @param skipMethodsAmount use 0 to return current method info, use 1 for prev method, use 2 for prev-prev method
|
|
*/
|
|
public static String getMethodNameWithSource(final int skipMethodsAmount) {
|
|
// 3 is default methods amount to skip:
|
|
// - getMethodNameWithSource
|
|
// - TraceHelper.getMethodNameWithSource
|
|
// - Thread.currentThread().getStackTrace()
|
|
return TraceHelper.getMethodNameWithSource(3 + skipMethodsAmount);
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Debug: allows to find a caller's method name, compatible with java 8 and 9+
|
|
* <a href="https://stackoverflow.com/a/10992439">Original code</a>
|
|
*/
|
|
class TraceHelper {
|
|
|
|
public static String getMethodNameWithSource(final int depth) {
|
|
StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
|
|
if (stackTrace.length == 0) {
|
|
return "[no access to stack]";
|
|
} else {
|
|
return String.format("%s - %s:%d", stackTrace[depth].getMethodName(), stackTrace[depth].getFileName(), stackTrace[depth].getLineNumber());
|
|
}
|
|
}
|
|
} |