7a0d2d962e
The documentation and help for the set command was pretty useless. Made it convey what is possible. Also added and option for the maximum length allowed by the = command. Increased the print level from 3 to 5 since 3 seems too small for real life debugging examples. Differential Revision: D953805
66 linhas
2.8 KiB
C++
66 linhas
2.8 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef incl_HPHP_EVAL_DEBUGGER_CLIENT_SETTINGS_H_
|
|
#define incl_HPHP_EVAL_DEBUGGER_CLIENT_SETTINGS_H_
|
|
|
|
#define HPHPD_CLIENT_SETTINGS \
|
|
HPHPD_CLIENT_SETTING(BypassCheck, bool, false) \
|
|
HPHPD_CLIENT_SETTING(PrintLevel, int, -1) \
|
|
HPHPD_CLIENT_SETTING(StackArgs, bool, true) \
|
|
HPHPD_CLIENT_SETTING(MaxCodeLines, int, -1) \
|
|
HPHPD_CLIENT_SETTING(SmallStep, bool, false) \
|
|
HPHPD_CLIENT_SETTING(ShortPrintCharCount, int, -1) \
|
|
|
|
class DebuggerClientSettings {
|
|
public:
|
|
#define HPHPD_CLIENT_SETTING(name, type, defval) type m_s##name;
|
|
HPHPD_CLIENT_SETTINGS
|
|
#undef HPHPD_CLIENT_SETTING
|
|
bool dummy;
|
|
|
|
DebuggerClientSettings() :
|
|
#define HPHPD_CLIENT_SETTING(name, type, defval) m_s##name(defval),
|
|
HPHPD_CLIENT_SETTINGS
|
|
#undef HPHPD_CLIENT_SETTING
|
|
dummy(false) {}
|
|
};
|
|
|
|
#define DECLARE_DBG_CLIENT_SETTING \
|
|
DebuggerClientSettings m_dbgClientSettings; \
|
|
|
|
#define HPHPD_CLIENT_SETTING(name, type, defval) \
|
|
type getDebuggerClient##name () const { \
|
|
return m_dbgClientSettings.m_s##name; \
|
|
} \
|
|
void setDebuggerClient##name (type in##name) { \
|
|
m_dbgClientSettings.m_s##name = in##name; \
|
|
m_config[#name] = m_dbgClientSettings.m_s##name; \
|
|
saveConfig(); \
|
|
} \
|
|
|
|
|
|
#define DECLARE_DBG_CLIENT_SETTING_ACCESSORS \
|
|
HPHPD_CLIENT_SETTINGS
|
|
|
|
|
|
// leaving HPHPD_CLIENT_SETTING defined so that DECLARE_DBG_SETTING_ACCESSORS is
|
|
// effective
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // incl_HPHP_EVAL_DEBUGGER_CLIENT_SETTINGS_H_
|