130fdc8d8SChris Lattner //===-- CommandObjectBreakpointCommand.cpp ----------------------*- C++ -*-===//
230fdc8d8SChris Lattner //
330fdc8d8SChris Lattner //                     The LLVM Compiler Infrastructure
430fdc8d8SChris Lattner //
530fdc8d8SChris Lattner // This file is distributed under the University of Illinois Open Source
630fdc8d8SChris Lattner // License. See LICENSE.TXT for details.
730fdc8d8SChris Lattner //
830fdc8d8SChris Lattner //===----------------------------------------------------------------------===//
930fdc8d8SChris Lattner 
1030fdc8d8SChris Lattner // C Includes
1130fdc8d8SChris Lattner // C++ Includes
1230fdc8d8SChris Lattner 
1330fdc8d8SChris Lattner 
1430fdc8d8SChris Lattner #include "CommandObjectBreakpointCommand.h"
1530fdc8d8SChris Lattner #include "CommandObjectBreakpoint.h"
1630fdc8d8SChris Lattner 
1730fdc8d8SChris Lattner #include "lldb/Interpreter/CommandInterpreter.h"
1830fdc8d8SChris Lattner #include "lldb/Interpreter/CommandReturnObject.h"
1930fdc8d8SChris Lattner #include "lldb/Target/Target.h"
2030fdc8d8SChris Lattner #include "lldb/Target/Thread.h"
2130fdc8d8SChris Lattner #include "lldb/Breakpoint/BreakpointIDList.h"
2230fdc8d8SChris Lattner #include "lldb/Breakpoint/Breakpoint.h"
2330fdc8d8SChris Lattner #include "lldb/Breakpoint/BreakpointLocation.h"
2430fdc8d8SChris Lattner #include "lldb/Breakpoint/StoppointCallbackContext.h"
2530fdc8d8SChris Lattner #include "lldb/Core/State.h"
2630fdc8d8SChris Lattner 
2730fdc8d8SChris Lattner using namespace lldb;
2830fdc8d8SChris Lattner using namespace lldb_private;
2930fdc8d8SChris Lattner 
3030fdc8d8SChris Lattner //-------------------------------------------------------------------------
3130fdc8d8SChris Lattner // CommandObjectBreakpointCommandAdd::CommandOptions
3230fdc8d8SChris Lattner //-------------------------------------------------------------------------
3330fdc8d8SChris Lattner 
34eb0103f2SGreg Clayton CommandObjectBreakpointCommandAdd::CommandOptions::CommandOptions (CommandInterpreter &interpreter) :
35eb0103f2SGreg Clayton     Options (interpreter),
3639d7d4f0SJohnny Chen     m_use_commands (false),
3739d7d4f0SJohnny Chen     m_use_script_language (false),
3839d7d4f0SJohnny Chen     m_script_language (eScriptLanguageNone),
3939d7d4f0SJohnny Chen     m_use_one_liner (false),
408d4a8010SEnrico Granata     m_one_liner(),
418d4a8010SEnrico Granata     m_function_name()
4230fdc8d8SChris Lattner {
4330fdc8d8SChris Lattner }
4430fdc8d8SChris Lattner 
4530fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::CommandOptions::~CommandOptions ()
4630fdc8d8SChris Lattner {
4730fdc8d8SChris Lattner }
4830fdc8d8SChris Lattner 
49e16c50a1SJim Ingham // FIXME: "script-type" needs to have its contents determined dynamically, so somebody can add a new scripting
50e16c50a1SJim Ingham // language to lldb and have it pickable here without having to change this enumeration by hand and rebuild lldb proper.
51e16c50a1SJim Ingham 
52e0d378b3SGreg Clayton static OptionEnumValueElement
53e16c50a1SJim Ingham g_script_option_enumeration[4] =
54e16c50a1SJim Ingham {
55e16c50a1SJim Ingham     { eScriptLanguageNone,    "command",         "Commands are in the lldb command interpreter language"},
56e16c50a1SJim Ingham     { eScriptLanguagePython,  "python",          "Commands are in the Python language."},
57e16c50a1SJim Ingham     { eSortOrderByName,       "default-script",  "Commands are in the default scripting language."},
58e16c50a1SJim Ingham     { 0,                      NULL,              NULL }
59e16c50a1SJim Ingham };
60e16c50a1SJim Ingham 
61e0d378b3SGreg Clayton OptionDefinition
6230fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::CommandOptions::g_option_table[] =
6330fdc8d8SChris Lattner {
648d4a8010SEnrico Granata     { LLDB_OPT_SET_1, false, "one-liner", 'o', required_argument, NULL, NULL, eArgTypeOneLiner,
65867b185dSCaroline Tice         "Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
6639d7d4f0SJohnny Chen 
67e16c50a1SJim Ingham     { LLDB_OPT_SET_ALL, false, "stop-on-error", 'e', required_argument, NULL, NULL, eArgTypeBoolean,
68e16c50a1SJim Ingham         "Specify whether breakpoint command execution should terminate on error." },
6930fdc8d8SChris Lattner 
70e16c50a1SJim Ingham     { LLDB_OPT_SET_ALL,   false, "script-type",     's', required_argument, g_script_option_enumeration, NULL, eArgTypeNone,
71e16c50a1SJim Ingham         "Specify the language for the commands - if none is specified, the lldb command interpreter will be used."},
7230fdc8d8SChris Lattner 
738d4a8010SEnrico Granata     { LLDB_OPT_SET_2,   false, "python-function",     'F', required_argument, NULL, NULL, eArgTypePythonFunction,
748d4a8010SEnrico Granata         "Give the name of a Python function to run as command for this breakpoint. Be sure to give a module name if appropriate."},
758d4a8010SEnrico Granata 
76deaab222SCaroline Tice     { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
7730fdc8d8SChris Lattner };
7830fdc8d8SChris Lattner 
79e0d378b3SGreg Clayton const OptionDefinition*
8030fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::CommandOptions::GetDefinitions ()
8130fdc8d8SChris Lattner {
8230fdc8d8SChris Lattner     return g_option_table;
8330fdc8d8SChris Lattner }
8430fdc8d8SChris Lattner 
8530fdc8d8SChris Lattner 
8630fdc8d8SChris Lattner Error
8730fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::CommandOptions::SetOptionValue
8830fdc8d8SChris Lattner (
89f6b8b581SGreg Clayton     uint32_t option_idx,
9030fdc8d8SChris Lattner     const char *option_arg
9130fdc8d8SChris Lattner )
9230fdc8d8SChris Lattner {
9330fdc8d8SChris Lattner     Error error;
9430fdc8d8SChris Lattner     char short_option = (char) m_getopt_table[option_idx].val;
9530fdc8d8SChris Lattner 
9630fdc8d8SChris Lattner     switch (short_option)
9730fdc8d8SChris Lattner     {
9839d7d4f0SJohnny Chen     case 'o':
9939d7d4f0SJohnny Chen         m_use_one_liner = true;
10039d7d4f0SJohnny Chen         m_one_liner = option_arg;
10139d7d4f0SJohnny Chen         break;
102cf0e4f0dSGreg Clayton 
10330fdc8d8SChris Lattner     case 's':
104e16c50a1SJim Ingham         m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
105e16c50a1SJim Ingham                                                                              g_option_table[option_idx].enum_values,
106e16c50a1SJim Ingham                                                                              eScriptLanguageNone,
107cf0e4f0dSGreg Clayton                                                                              error);
108e16c50a1SJim Ingham 
109e16c50a1SJim Ingham         if (m_script_language == eScriptLanguagePython || m_script_language == eScriptLanguageDefault)
110e16c50a1SJim Ingham         {
11130fdc8d8SChris Lattner             m_use_script_language = true;
112e16c50a1SJim Ingham         }
113e16c50a1SJim Ingham         else
114e16c50a1SJim Ingham         {
11530fdc8d8SChris Lattner             m_use_script_language = false;
116e16c50a1SJim Ingham         }
117cf0e4f0dSGreg Clayton         break;
118cf0e4f0dSGreg Clayton 
119cf0e4f0dSGreg Clayton     case 'e':
120cf0e4f0dSGreg Clayton         {
121cf0e4f0dSGreg Clayton             bool success = false;
122cf0e4f0dSGreg Clayton             m_stop_on_error = Args::StringToBoolean(option_arg, false, &success);
123cf0e4f0dSGreg Clayton             if (!success)
12486edbf41SGreg Clayton                 error.SetErrorStringWithFormat("invalid value for stop-on-error: \"%s\"", option_arg);
125e16c50a1SJim Ingham         }
126e16c50a1SJim Ingham         break;
127cf0e4f0dSGreg Clayton 
1288d4a8010SEnrico Granata     case 'F':
1298d4a8010SEnrico Granata         {
1308d4a8010SEnrico Granata             m_use_one_liner = false;
1318d4a8010SEnrico Granata             m_use_script_language = true;
1328d4a8010SEnrico Granata             m_function_name.assign(option_arg);
1338d4a8010SEnrico Granata         }
1348d4a8010SEnrico Granata         break;
1358d4a8010SEnrico Granata 
13630fdc8d8SChris Lattner     default:
13730fdc8d8SChris Lattner         break;
13830fdc8d8SChris Lattner     }
13930fdc8d8SChris Lattner     return error;
14030fdc8d8SChris Lattner }
14130fdc8d8SChris Lattner 
14230fdc8d8SChris Lattner void
143f6b8b581SGreg Clayton CommandObjectBreakpointCommandAdd::CommandOptions::OptionParsingStarting ()
14430fdc8d8SChris Lattner {
145e16c50a1SJim Ingham     m_use_commands = true;
14630fdc8d8SChris Lattner     m_use_script_language = false;
14730fdc8d8SChris Lattner     m_script_language = eScriptLanguageNone;
14839d7d4f0SJohnny Chen 
14939d7d4f0SJohnny Chen     m_use_one_liner = false;
150e16c50a1SJim Ingham     m_stop_on_error = true;
15139d7d4f0SJohnny Chen     m_one_liner.clear();
1528d4a8010SEnrico Granata     m_function_name.clear();
15330fdc8d8SChris Lattner }
15430fdc8d8SChris Lattner 
15530fdc8d8SChris Lattner //-------------------------------------------------------------------------
15630fdc8d8SChris Lattner // CommandObjectBreakpointCommandAdd
15730fdc8d8SChris Lattner //-------------------------------------------------------------------------
15830fdc8d8SChris Lattner 
15930fdc8d8SChris Lattner 
160a7015092SGreg Clayton CommandObjectBreakpointCommandAdd::CommandObjectBreakpointCommandAdd (CommandInterpreter &interpreter) :
161a7015092SGreg Clayton     CommandObject (interpreter,
162a7015092SGreg Clayton                    "add",
163e3d26315SCaroline Tice                    "Add a set of commands to a breakpoint, to be executed whenever the breakpoint is hit.",
164eb0103f2SGreg Clayton                    NULL),
165eb0103f2SGreg Clayton     m_options (interpreter)
16630fdc8d8SChris Lattner {
16730fdc8d8SChris Lattner     SetHelpLong (
16830fdc8d8SChris Lattner "\nGeneral information about entering breakpoint commands \n\
16930fdc8d8SChris Lattner ------------------------------------------------------ \n\
17030fdc8d8SChris Lattner  \n\
17130fdc8d8SChris Lattner This command will cause you to be prompted to enter the command or set \n\
17230fdc8d8SChris Lattner of commands you wish to be executed when the specified breakpoint is \n\
17330fdc8d8SChris Lattner hit.  You will be told to enter your command(s), and will see a '> ' \n\
17430fdc8d8SChris Lattner prompt. Because you can enter one or many commands to be executed when \n\
17530fdc8d8SChris Lattner a breakpoint is hit, you will continue to be prompted after each \n\
17630fdc8d8SChris Lattner new-line that you enter, until you enter the word 'DONE', which will \n\
17730fdc8d8SChris Lattner cause the commands you have entered to be stored with the breakpoint \n\
17830fdc8d8SChris Lattner and executed when the breakpoint is hit. \n\
17930fdc8d8SChris Lattner  \n\
18030fdc8d8SChris Lattner Syntax checking is not necessarily done when breakpoint commands are \n\
18130fdc8d8SChris Lattner entered.  An improperly written breakpoint command will attempt to get \n\
18230fdc8d8SChris Lattner executed when the breakpoint gets hit, and usually silently fail.  If \n\
18330fdc8d8SChris Lattner your breakpoint command does not appear to be getting executed, go \n\
18430fdc8d8SChris Lattner back and check your syntax. \n\
18530fdc8d8SChris Lattner  \n\
18630fdc8d8SChris Lattner  \n\
18730fdc8d8SChris Lattner Special information about PYTHON breakpoint commands                            \n\
18830fdc8d8SChris Lattner ----------------------------------------------------                            \n\
18930fdc8d8SChris Lattner                                                                                 \n\
19030fdc8d8SChris Lattner You may enter either one line of Python or multiple lines of Python             \n\
19130fdc8d8SChris Lattner (including defining whole functions, if desired).  If you enter a               \n\
19230fdc8d8SChris Lattner single line of Python, that will be passed to the Python interpreter            \n\
19330fdc8d8SChris Lattner 'as is' when the breakpoint gets hit.  If you enter function                    \n\
19430fdc8d8SChris Lattner definitions, they will be passed to the Python interpreter as soon as           \n\
19530fdc8d8SChris Lattner you finish entering the breakpoint command, and they can be called              \n\
19630fdc8d8SChris Lattner later (don't forget to add calls to them, if you want them called when          \n\
19730fdc8d8SChris Lattner the breakpoint is hit).  If you enter multiple lines of Python that             \n\
19830fdc8d8SChris Lattner are not function definitions, they will be collected into a new,                \n\
19930fdc8d8SChris Lattner automatically generated Python function, and a call to the newly                \n\
200*c9efdbb0SJim Ingham generated function will be attached to the breakpoint.                          \n\
201*c9efdbb0SJim Ingham                                                                                 \n\
202*c9efdbb0SJim Ingham This auto-generated function is passed in two arguments:                        \n\
203*c9efdbb0SJim Ingham                                                                                 \n\
204*c9efdbb0SJim Ingham     frame:  an SBFrame object representing the frame which hit the breakpoint.  \n\
205*c9efdbb0SJim Ingham             From the frame you can get back to the thread and process.          \n\
206*c9efdbb0SJim Ingham     bp_loc: the number of the breakpoint location that was hit.                 \n\
207*c9efdbb0SJim Ingham             This is useful since one breakpoint can have many locations.        \n\
208*c9efdbb0SJim Ingham                                                                                 \n\
209*c9efdbb0SJim Ingham Important Note: Because loose Python code gets collected into functions,        \n\
210*c9efdbb0SJim Ingham if you want to access global variables in the 'loose' code, you need to         \n\
21130fdc8d8SChris Lattner specify that they are global, using the 'global' keyword.  Be sure to           \n\
21230fdc8d8SChris Lattner use correct Python syntax, including indentation, when entering Python          \n\
213*c9efdbb0SJim Ingham breakpoint commands.                                                            \n\
214*c9efdbb0SJim Ingham                                                                                 \n\
215*c9efdbb0SJim Ingham As a third option, you can pass the name of an already existing Python function \n\
216*c9efdbb0SJim Ingham and that function will be attached to the breakpoint. It will get passed the    \n\
217*c9efdbb0SJim Ingham frame and bp_loc arguments mentioned above.                                     \n\
21830fdc8d8SChris Lattner                                                                                 \n\
21930fdc8d8SChris Lattner Example Python one-line breakpoint command: \n\
22030fdc8d8SChris Lattner  \n\
221e16c50a1SJim Ingham (lldb) breakpoint command add -s python 1 \n\
22230fdc8d8SChris Lattner Enter your Python command(s). Type 'DONE' to end. \n\
22330fdc8d8SChris Lattner > print \"Hit this breakpoint!\" \n\
22430fdc8d8SChris Lattner > DONE \n\
22530fdc8d8SChris Lattner  \n\
2263495f25aSJohnny Chen As a convenience, this also works for a short Python one-liner: \n\
227e16c50a1SJim Ingham (lldb) breakpoint command add -s python 1 -o \"import time; print time.asctime()\" \n\
2283495f25aSJohnny Chen (lldb) run \n\
2293495f25aSJohnny Chen Launching '.../a.out'  (x86_64) \n\
2303495f25aSJohnny Chen (lldb) Fri Sep 10 12:17:45 2010 \n\
2313495f25aSJohnny Chen Process 21778 Stopped \n\
2323495f25aSJohnny Chen * thread #1: tid = 0x2e03, 0x0000000100000de8 a.out`c + 7 at main.c:39, stop reason = breakpoint 1.1, queue = com.apple.main-thread \n\
2333495f25aSJohnny Chen   36   	\n\
2343495f25aSJohnny Chen   37   	int c(int val)\n\
2353495f25aSJohnny Chen   38   	{\n\
2363495f25aSJohnny Chen   39 ->	    return val + 3;\n\
2373495f25aSJohnny Chen   40   	}\n\
2383495f25aSJohnny Chen   41   	\n\
2393495f25aSJohnny Chen   42   	int main (int argc, char const *argv[])\n\
2403495f25aSJohnny Chen (lldb) \n\
2413495f25aSJohnny Chen  \n\
24230fdc8d8SChris Lattner Example multiple line Python breakpoint command, using function definition: \n\
24330fdc8d8SChris Lattner  \n\
244e16c50a1SJim Ingham (lldb) breakpoint command add -s python 1 \n\
24530fdc8d8SChris Lattner Enter your Python command(s). Type 'DONE' to end. \n\
24630fdc8d8SChris Lattner > def breakpoint_output (bp_no): \n\
24730fdc8d8SChris Lattner >     out_string = \"Hit breakpoint number \" + repr (bp_no) \n\
24830fdc8d8SChris Lattner >     print out_string \n\
24930fdc8d8SChris Lattner >     return True \n\
25030fdc8d8SChris Lattner > breakpoint_output (1) \n\
25130fdc8d8SChris Lattner > DONE \n\
25230fdc8d8SChris Lattner  \n\
25330fdc8d8SChris Lattner  \n\
25430fdc8d8SChris Lattner Example multiple line Python breakpoint command, using 'loose' Python: \n\
25530fdc8d8SChris Lattner  \n\
256e16c50a1SJim Ingham (lldb) breakpoint command add -s p 1 \n\
25730fdc8d8SChris Lattner Enter your Python command(s). Type 'DONE' to end. \n\
25830fdc8d8SChris Lattner > global bp_count \n\
25930fdc8d8SChris Lattner > bp_count = bp_count + 1 \n\
26030fdc8d8SChris Lattner > print \"Hit this breakpoint \" + repr(bp_count) + \" times!\" \n\
26130fdc8d8SChris Lattner > DONE \n\
26230fdc8d8SChris Lattner  \n\
26330fdc8d8SChris Lattner In this case, since there is a reference to a global variable, \n\
26430fdc8d8SChris Lattner 'bp_count', you will also need to make sure 'bp_count' exists and is \n\
26530fdc8d8SChris Lattner initialized: \n\
26630fdc8d8SChris Lattner  \n\
26730fdc8d8SChris Lattner (lldb) script \n\
26830fdc8d8SChris Lattner >>> bp_count = 0 \n\
26930fdc8d8SChris Lattner >>> quit() \n\
27030fdc8d8SChris Lattner  \n\
27130fdc8d8SChris Lattner (lldb)  \n\
27230fdc8d8SChris Lattner  \n\
273650b9268SCaroline Tice  \n\
274650b9268SCaroline Tice Final Note:  If you get a warning that no breakpoint command was generated, \n\
275650b9268SCaroline Tice but you did not get any syntax errors, you probably forgot to add a call \n\
276650b9268SCaroline Tice to your functions. \n\
277650b9268SCaroline Tice  \n\
278e3d26315SCaroline Tice Special information about debugger command breakpoint commands \n\
279e3d26315SCaroline Tice -------------------------------------------------------------- \n\
28030fdc8d8SChris Lattner  \n\
28130fdc8d8SChris Lattner You may enter any debugger command, exactly as you would at the \n\
28230fdc8d8SChris Lattner debugger prompt.  You may enter as many debugger commands as you like, \n\
28330fdc8d8SChris Lattner but do NOT enter more than one command per line. \n" );
284405fe67fSCaroline Tice 
285405fe67fSCaroline Tice 
286405fe67fSCaroline Tice     CommandArgumentEntry arg;
287405fe67fSCaroline Tice     CommandArgumentData bp_id_arg;
288405fe67fSCaroline Tice 
289405fe67fSCaroline Tice     // Define the first (and only) variant of this arg.
290405fe67fSCaroline Tice     bp_id_arg.arg_type = eArgTypeBreakpointID;
291405fe67fSCaroline Tice     bp_id_arg.arg_repetition = eArgRepeatPlain;
292405fe67fSCaroline Tice 
293405fe67fSCaroline Tice     // There is only one variant this argument could be; put it into the argument entry.
294405fe67fSCaroline Tice     arg.push_back (bp_id_arg);
295405fe67fSCaroline Tice 
296405fe67fSCaroline Tice     // Push the data for the first argument into the m_arguments vector.
297405fe67fSCaroline Tice     m_arguments.push_back (arg);
29830fdc8d8SChris Lattner }
29930fdc8d8SChris Lattner 
30030fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::~CommandObjectBreakpointCommandAdd ()
30130fdc8d8SChris Lattner {
30230fdc8d8SChris Lattner }
30330fdc8d8SChris Lattner 
30430fdc8d8SChris Lattner bool
30530fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::Execute
30630fdc8d8SChris Lattner (
30730fdc8d8SChris Lattner     Args& command,
30830fdc8d8SChris Lattner     CommandReturnObject &result
30930fdc8d8SChris Lattner )
31030fdc8d8SChris Lattner {
311a7015092SGreg Clayton     Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
31230fdc8d8SChris Lattner 
31330fdc8d8SChris Lattner     if (target == NULL)
31430fdc8d8SChris Lattner     {
31530fdc8d8SChris Lattner         result.AppendError ("There is not a current executable; there are no breakpoints to which to add commands");
31630fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
31730fdc8d8SChris Lattner         return false;
31830fdc8d8SChris Lattner     }
31930fdc8d8SChris Lattner 
32030fdc8d8SChris Lattner     const BreakpointList &breakpoints = target->GetBreakpointList();
32130fdc8d8SChris Lattner     size_t num_breakpoints = breakpoints.GetSize();
32230fdc8d8SChris Lattner 
32330fdc8d8SChris Lattner     if (num_breakpoints == 0)
32430fdc8d8SChris Lattner     {
32530fdc8d8SChris Lattner         result.AppendError ("No breakpoints exist to have commands added");
32630fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
32730fdc8d8SChris Lattner         return false;
32830fdc8d8SChris Lattner     }
32930fdc8d8SChris Lattner 
3308d4a8010SEnrico Granata     if (m_options.m_use_script_language == false && m_options.m_function_name.size())
3318d4a8010SEnrico Granata     {
3328d4a8010SEnrico Granata         result.AppendError ("need to enable scripting to have a function run as a breakpoint command");
3338d4a8010SEnrico Granata         result.SetStatus (eReturnStatusFailed);
3348d4a8010SEnrico Granata         return false;
3358d4a8010SEnrico Granata     }
3368d4a8010SEnrico Granata 
33730fdc8d8SChris Lattner     BreakpointIDList valid_bp_ids;
33830fdc8d8SChris Lattner     CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids);
33930fdc8d8SChris Lattner 
34030fdc8d8SChris Lattner     if (result.Succeeded())
34130fdc8d8SChris Lattner     {
342c982c768SGreg Clayton         const size_t count = valid_bp_ids.GetSize();
343c982c768SGreg Clayton         for (size_t i = 0; i < count; ++i)
34430fdc8d8SChris Lattner         {
34530fdc8d8SChris Lattner             BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
34630fdc8d8SChris Lattner             if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID)
34730fdc8d8SChris Lattner             {
34830fdc8d8SChris Lattner                 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get();
34939d7d4f0SJohnny Chen                 BreakpointOptions *bp_options = NULL;
35039d7d4f0SJohnny Chen                 if (cur_bp_id.GetLocationID() == LLDB_INVALID_BREAK_ID)
35139d7d4f0SJohnny Chen                 {
35239d7d4f0SJohnny Chen                     // This breakpoint does not have an associated location.
35339d7d4f0SJohnny Chen                     bp_options = bp->GetOptions();
35439d7d4f0SJohnny Chen                 }
35539d7d4f0SJohnny Chen                 else
35630fdc8d8SChris Lattner                 {
35730fdc8d8SChris Lattner                     BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID()));
35839d7d4f0SJohnny Chen                     // This breakpoint does have an associated location.
35939d7d4f0SJohnny Chen                     // Get its breakpoint options.
36030fdc8d8SChris Lattner                     if (bp_loc_sp)
36139d7d4f0SJohnny Chen                         bp_options = bp_loc_sp->GetLocationOptions();
36239d7d4f0SJohnny Chen                 }
36339d7d4f0SJohnny Chen 
364e16c50a1SJim Ingham                 // Skip this breakpoint if bp_options is not good.
36539d7d4f0SJohnny Chen                 if (bp_options == NULL) continue;
36639d7d4f0SJohnny Chen 
36739d7d4f0SJohnny Chen                 // If we are using script language, get the script interpreter
36839d7d4f0SJohnny Chen                 // in order to set or collect command callback.  Otherwise, call
36939d7d4f0SJohnny Chen                 // the methods associated with this object.
37030fdc8d8SChris Lattner                 if (m_options.m_use_script_language)
37130fdc8d8SChris Lattner                 {
37239d7d4f0SJohnny Chen                     // Special handling for one-liner specified inline.
37339d7d4f0SJohnny Chen                     if (m_options.m_use_one_liner)
3748d4a8010SEnrico Granata                     {
375a7015092SGreg Clayton                         m_interpreter.GetScriptInterpreter()->SetBreakpointCommandCallback (bp_options,
37639d7d4f0SJohnny Chen                                                                                             m_options.m_one_liner.c_str());
3778d4a8010SEnrico Granata                     }
3788d4a8010SEnrico Granata                     // Special handling for using a Python function by name
3798d4a8010SEnrico Granata                     // instead of extending the breakpoint callback data structures, we just automatize
3808d4a8010SEnrico Granata                     // what the user would do manually: make their breakpoint command be a function call
3818d4a8010SEnrico Granata                     else if (m_options.m_function_name.size())
3828d4a8010SEnrico Granata                     {
3838d4a8010SEnrico Granata                         std::string oneliner(m_options.m_function_name);
3848d4a8010SEnrico Granata                         oneliner += "(frame, bp_loc, dict)";
3858d4a8010SEnrico Granata                         m_interpreter.GetScriptInterpreter()->SetBreakpointCommandCallback (bp_options,
3868d4a8010SEnrico Granata                                                                                             oneliner.c_str());
3878d4a8010SEnrico Granata                     }
38894de55d5SJohnny Chen                     else
3898d4a8010SEnrico Granata                     {
390a7015092SGreg Clayton                         m_interpreter.GetScriptInterpreter()->CollectDataForBreakpointCommandCallback (bp_options,
39130fdc8d8SChris Lattner                                                                                                        result);
39230fdc8d8SChris Lattner                     }
3938d4a8010SEnrico Granata                 }
39430fdc8d8SChris Lattner                 else
39530fdc8d8SChris Lattner                 {
39639d7d4f0SJohnny Chen                     // Special handling for one-liner specified inline.
39739d7d4f0SJohnny Chen                     if (m_options.m_use_one_liner)
398a7015092SGreg Clayton                         SetBreakpointCommandCallback (bp_options,
39939d7d4f0SJohnny Chen                                                       m_options.m_one_liner.c_str());
40039d7d4f0SJohnny Chen                     else
401a7015092SGreg Clayton                         CollectDataForBreakpointCommandCallback (bp_options,
402b132097bSGreg Clayton                                                                  result);
40330fdc8d8SChris Lattner                 }
40430fdc8d8SChris Lattner             }
40530fdc8d8SChris Lattner         }
40630fdc8d8SChris Lattner     }
40730fdc8d8SChris Lattner 
40830fdc8d8SChris Lattner     return result.Succeeded();
40930fdc8d8SChris Lattner }
41030fdc8d8SChris Lattner 
41130fdc8d8SChris Lattner Options *
41230fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::GetOptions ()
41330fdc8d8SChris Lattner {
41430fdc8d8SChris Lattner     return &m_options;
41530fdc8d8SChris Lattner }
41630fdc8d8SChris Lattner 
41730fdc8d8SChris Lattner const char *g_reader_instructions = "Enter your debugger command(s).  Type 'DONE' to end.";
41830fdc8d8SChris Lattner 
41930fdc8d8SChris Lattner void
42030fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::CollectDataForBreakpointCommandCallback
42130fdc8d8SChris Lattner (
42230fdc8d8SChris Lattner     BreakpointOptions *bp_options,
42330fdc8d8SChris Lattner     CommandReturnObject &result
42430fdc8d8SChris Lattner )
42530fdc8d8SChris Lattner {
426a7015092SGreg Clayton     InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
42730fdc8d8SChris Lattner     std::auto_ptr<BreakpointOptions::CommandData> data_ap(new BreakpointOptions::CommandData());
42830fdc8d8SChris Lattner     if (reader_sp && data_ap.get())
42930fdc8d8SChris Lattner     {
43030fdc8d8SChris Lattner         BatonSP baton_sp (new BreakpointOptions::CommandBaton (data_ap.release()));
43130fdc8d8SChris Lattner         bp_options->SetCallback (CommandObjectBreakpointCommand::BreakpointOptionsCallbackFunction, baton_sp);
43230fdc8d8SChris Lattner 
43330fdc8d8SChris Lattner         Error err (reader_sp->Initialize (CommandObjectBreakpointCommandAdd::GenerateBreakpointCommandCallback,
43430fdc8d8SChris Lattner                                           bp_options,                   // baton
43530fdc8d8SChris Lattner                                           eInputReaderGranularityLine,  // token size, to pass to callback function
43630fdc8d8SChris Lattner                                           "DONE",                       // end token
43730fdc8d8SChris Lattner                                           "> ",                         // prompt
43830fdc8d8SChris Lattner                                           true));                       // echo input
43930fdc8d8SChris Lattner         if (err.Success())
44030fdc8d8SChris Lattner         {
441a7015092SGreg Clayton             m_interpreter.GetDebugger().PushInputReader (reader_sp);
44230fdc8d8SChris Lattner             result.SetStatus (eReturnStatusSuccessFinishNoResult);
44330fdc8d8SChris Lattner         }
44430fdc8d8SChris Lattner         else
44530fdc8d8SChris Lattner         {
44630fdc8d8SChris Lattner             result.AppendError (err.AsCString());
44730fdc8d8SChris Lattner             result.SetStatus (eReturnStatusFailed);
44830fdc8d8SChris Lattner         }
44930fdc8d8SChris Lattner     }
45030fdc8d8SChris Lattner     else
45130fdc8d8SChris Lattner     {
45230fdc8d8SChris Lattner         result.AppendError("out of memory");
45330fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
45430fdc8d8SChris Lattner     }
45530fdc8d8SChris Lattner 
45630fdc8d8SChris Lattner }
45730fdc8d8SChris Lattner 
4584550154dSJohnny Chen // Set a one-liner as the callback for the breakpoint.
45939d7d4f0SJohnny Chen void
460a7015092SGreg Clayton CommandObjectBreakpointCommandAdd::SetBreakpointCommandCallback (BreakpointOptions *bp_options,
46139d7d4f0SJohnny Chen                                                                  const char *oneliner)
46239d7d4f0SJohnny Chen {
46339d7d4f0SJohnny Chen     std::auto_ptr<BreakpointOptions::CommandData> data_ap(new BreakpointOptions::CommandData());
46439d7d4f0SJohnny Chen 
46539d7d4f0SJohnny Chen     // It's necessary to set both user_source and script_source to the oneliner.
46639d7d4f0SJohnny Chen     // The former is used to generate callback description (as in breakpoint command list)
46739d7d4f0SJohnny Chen     // while the latter is used for Python to interpret during the actual callback.
46839d7d4f0SJohnny Chen     data_ap->user_source.AppendString (oneliner);
469a73b7df7SEnrico Granata     data_ap->script_source.assign (oneliner);
470e16c50a1SJim Ingham     data_ap->stop_on_error = m_options.m_stop_on_error;
47139d7d4f0SJohnny Chen 
47239d7d4f0SJohnny Chen     BatonSP baton_sp (new BreakpointOptions::CommandBaton (data_ap.release()));
47339d7d4f0SJohnny Chen     bp_options->SetCallback (CommandObjectBreakpointCommand::BreakpointOptionsCallbackFunction, baton_sp);
47439d7d4f0SJohnny Chen 
47539d7d4f0SJohnny Chen     return;
47639d7d4f0SJohnny Chen }
47739d7d4f0SJohnny Chen 
47830fdc8d8SChris Lattner size_t
47930fdc8d8SChris Lattner CommandObjectBreakpointCommandAdd::GenerateBreakpointCommandCallback
48030fdc8d8SChris Lattner (
48130fdc8d8SChris Lattner     void *baton,
4826611103cSGreg Clayton     InputReader &reader,
48330fdc8d8SChris Lattner     lldb::InputReaderAction notification,
48430fdc8d8SChris Lattner     const char *bytes,
48530fdc8d8SChris Lattner     size_t bytes_len
48630fdc8d8SChris Lattner )
48730fdc8d8SChris Lattner {
488d61c10bcSCaroline Tice     StreamSP out_stream = reader.GetDebugger().GetAsyncOutputStream();
489d61c10bcSCaroline Tice     bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode();
49030fdc8d8SChris Lattner 
49130fdc8d8SChris Lattner     switch (notification)
49230fdc8d8SChris Lattner     {
49330fdc8d8SChris Lattner     case eInputReaderActivate:
494d61c10bcSCaroline Tice         if (!batch_mode)
495d61c10bcSCaroline Tice         {
496d61c10bcSCaroline Tice             out_stream->Printf ("%s\n", g_reader_instructions);
4976611103cSGreg Clayton             if (reader.GetPrompt())
498d61c10bcSCaroline Tice                 out_stream->Printf ("%s", reader.GetPrompt());
499d61c10bcSCaroline Tice             out_stream->Flush();
500d61c10bcSCaroline Tice         }
50130fdc8d8SChris Lattner         break;
50230fdc8d8SChris Lattner 
50330fdc8d8SChris Lattner     case eInputReaderDeactivate:
50430fdc8d8SChris Lattner         break;
50530fdc8d8SChris Lattner 
50630fdc8d8SChris Lattner     case eInputReaderReactivate:
507d61c10bcSCaroline Tice         if (reader.GetPrompt() && !batch_mode)
50804a339a0SCaroline Tice         {
509d61c10bcSCaroline Tice             out_stream->Printf ("%s", reader.GetPrompt());
510d61c10bcSCaroline Tice             out_stream->Flush();
51104a339a0SCaroline Tice         }
51230fdc8d8SChris Lattner         break;
51330fdc8d8SChris Lattner 
514969ed3d1SCaroline Tice     case eInputReaderAsynchronousOutputWritten:
515969ed3d1SCaroline Tice         break;
516969ed3d1SCaroline Tice 
51730fdc8d8SChris Lattner     case eInputReaderGotToken:
51830fdc8d8SChris Lattner         if (bytes && bytes_len && baton)
51930fdc8d8SChris Lattner         {
52030fdc8d8SChris Lattner             BreakpointOptions *bp_options = (BreakpointOptions *) baton;
52130fdc8d8SChris Lattner             if (bp_options)
52230fdc8d8SChris Lattner             {
52330fdc8d8SChris Lattner                 Baton *bp_options_baton = bp_options->GetBaton();
52430fdc8d8SChris Lattner                 if (bp_options_baton)
52530fdc8d8SChris Lattner                     ((BreakpointOptions::CommandData *)bp_options_baton->m_data)->user_source.AppendString (bytes, bytes_len);
52630fdc8d8SChris Lattner             }
52730fdc8d8SChris Lattner         }
528d61c10bcSCaroline Tice         if (!reader.IsDone() && reader.GetPrompt() && !batch_mode)
52904a339a0SCaroline Tice         {
530d61c10bcSCaroline Tice             out_stream->Printf ("%s", reader.GetPrompt());
531d61c10bcSCaroline Tice             out_stream->Flush();
53204a339a0SCaroline Tice         }
53330fdc8d8SChris Lattner         break;
53430fdc8d8SChris Lattner 
535efed6131SCaroline Tice     case eInputReaderInterrupt:
536efed6131SCaroline Tice         {
537efed6131SCaroline Tice             // Finish, and cancel the breakpoint command.
538efed6131SCaroline Tice             reader.SetIsDone (true);
539efed6131SCaroline Tice             BreakpointOptions *bp_options = (BreakpointOptions *) baton;
540efed6131SCaroline Tice             if (bp_options)
541efed6131SCaroline Tice             {
542efed6131SCaroline Tice                 Baton *bp_options_baton = bp_options->GetBaton ();
543efed6131SCaroline Tice                 if (bp_options_baton)
544efed6131SCaroline Tice                 {
545efed6131SCaroline Tice                     ((BreakpointOptions::CommandData *) bp_options_baton->m_data)->user_source.Clear();
546a73b7df7SEnrico Granata                     ((BreakpointOptions::CommandData *) bp_options_baton->m_data)->script_source.clear();
547efed6131SCaroline Tice                 }
548efed6131SCaroline Tice             }
549d61c10bcSCaroline Tice             if (!batch_mode)
550d61c10bcSCaroline Tice             {
551d61c10bcSCaroline Tice                 out_stream->Printf ("Warning: No command attached to breakpoint.\n");
552d61c10bcSCaroline Tice                 out_stream->Flush();
553d61c10bcSCaroline Tice             }
554efed6131SCaroline Tice         }
555efed6131SCaroline Tice         break;
556efed6131SCaroline Tice 
557efed6131SCaroline Tice     case eInputReaderEndOfFile:
558efed6131SCaroline Tice         reader.SetIsDone (true);
559efed6131SCaroline Tice         break;
560efed6131SCaroline Tice 
56130fdc8d8SChris Lattner     case eInputReaderDone:
56230fdc8d8SChris Lattner         break;
56330fdc8d8SChris Lattner     }
56430fdc8d8SChris Lattner 
56530fdc8d8SChris Lattner     return bytes_len;
56630fdc8d8SChris Lattner }
56730fdc8d8SChris Lattner 
56830fdc8d8SChris Lattner 
56930fdc8d8SChris Lattner //-------------------------------------------------------------------------
57093e0f19fSCaroline Tice // CommandObjectBreakpointCommandDelete
57130fdc8d8SChris Lattner //-------------------------------------------------------------------------
57230fdc8d8SChris Lattner 
57393e0f19fSCaroline Tice CommandObjectBreakpointCommandDelete::CommandObjectBreakpointCommandDelete (CommandInterpreter &interpreter) :
574a7015092SGreg Clayton     CommandObject (interpreter,
57593e0f19fSCaroline Tice                    "delete",
57693e0f19fSCaroline Tice                    "Delete the set of commands from a breakpoint.",
577405fe67fSCaroline Tice                    NULL)
57830fdc8d8SChris Lattner {
579405fe67fSCaroline Tice     CommandArgumentEntry arg;
580405fe67fSCaroline Tice     CommandArgumentData bp_id_arg;
581405fe67fSCaroline Tice 
582405fe67fSCaroline Tice     // Define the first (and only) variant of this arg.
583405fe67fSCaroline Tice     bp_id_arg.arg_type = eArgTypeBreakpointID;
584405fe67fSCaroline Tice     bp_id_arg.arg_repetition = eArgRepeatPlain;
585405fe67fSCaroline Tice 
586405fe67fSCaroline Tice     // There is only one variant this argument could be; put it into the argument entry.
587405fe67fSCaroline Tice     arg.push_back (bp_id_arg);
588405fe67fSCaroline Tice 
589405fe67fSCaroline Tice     // Push the data for the first argument into the m_arguments vector.
590405fe67fSCaroline Tice     m_arguments.push_back (arg);
59130fdc8d8SChris Lattner }
59230fdc8d8SChris Lattner 
59393e0f19fSCaroline Tice CommandObjectBreakpointCommandDelete::~CommandObjectBreakpointCommandDelete ()
59430fdc8d8SChris Lattner {
59530fdc8d8SChris Lattner }
59630fdc8d8SChris Lattner 
59730fdc8d8SChris Lattner bool
59893e0f19fSCaroline Tice CommandObjectBreakpointCommandDelete::Execute
5996611103cSGreg Clayton (
6006611103cSGreg Clayton     Args& command,
6016611103cSGreg Clayton     CommandReturnObject &result
6026611103cSGreg Clayton )
60330fdc8d8SChris Lattner {
604a7015092SGreg Clayton     Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
60530fdc8d8SChris Lattner 
60630fdc8d8SChris Lattner     if (target == NULL)
60730fdc8d8SChris Lattner     {
60893e0f19fSCaroline Tice         result.AppendError ("There is not a current executable; there are no breakpoints from which to delete commands");
60930fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
61030fdc8d8SChris Lattner         return false;
61130fdc8d8SChris Lattner     }
61230fdc8d8SChris Lattner 
61330fdc8d8SChris Lattner     const BreakpointList &breakpoints = target->GetBreakpointList();
61430fdc8d8SChris Lattner     size_t num_breakpoints = breakpoints.GetSize();
61530fdc8d8SChris Lattner 
61630fdc8d8SChris Lattner     if (num_breakpoints == 0)
61730fdc8d8SChris Lattner     {
61893e0f19fSCaroline Tice         result.AppendError ("No breakpoints exist to have commands deleted");
61930fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
62030fdc8d8SChris Lattner         return false;
62130fdc8d8SChris Lattner     }
62230fdc8d8SChris Lattner 
62330fdc8d8SChris Lattner     if (command.GetArgumentCount() == 0)
62430fdc8d8SChris Lattner     {
62593e0f19fSCaroline Tice         result.AppendError ("No breakpoint specified from which to delete the commands");
62630fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
62730fdc8d8SChris Lattner         return false;
62830fdc8d8SChris Lattner     }
62930fdc8d8SChris Lattner 
63030fdc8d8SChris Lattner     BreakpointIDList valid_bp_ids;
63130fdc8d8SChris Lattner     CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids);
63230fdc8d8SChris Lattner 
63330fdc8d8SChris Lattner     if (result.Succeeded())
63430fdc8d8SChris Lattner     {
635c982c768SGreg Clayton         const size_t count = valid_bp_ids.GetSize();
636c982c768SGreg Clayton         for (size_t i = 0; i < count; ++i)
63730fdc8d8SChris Lattner         {
63830fdc8d8SChris Lattner             BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
63930fdc8d8SChris Lattner             if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID)
64030fdc8d8SChris Lattner             {
64130fdc8d8SChris Lattner                 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get();
64230fdc8d8SChris Lattner                 if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID)
64330fdc8d8SChris Lattner                 {
64430fdc8d8SChris Lattner                     BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID()));
64530fdc8d8SChris Lattner                     if (bp_loc_sp)
64630fdc8d8SChris Lattner                         bp_loc_sp->ClearCallback();
64730fdc8d8SChris Lattner                     else
64830fdc8d8SChris Lattner                     {
64930fdc8d8SChris Lattner                         result.AppendErrorWithFormat("Invalid breakpoint ID: %u.%u.\n",
65030fdc8d8SChris Lattner                                                      cur_bp_id.GetBreakpointID(),
65130fdc8d8SChris Lattner                                                      cur_bp_id.GetLocationID());
65230fdc8d8SChris Lattner                         result.SetStatus (eReturnStatusFailed);
65330fdc8d8SChris Lattner                         return false;
65430fdc8d8SChris Lattner                     }
65530fdc8d8SChris Lattner                 }
65630fdc8d8SChris Lattner                 else
65730fdc8d8SChris Lattner                 {
65830fdc8d8SChris Lattner                     bp->ClearCallback();
65930fdc8d8SChris Lattner                 }
66030fdc8d8SChris Lattner             }
66130fdc8d8SChris Lattner         }
66230fdc8d8SChris Lattner     }
66330fdc8d8SChris Lattner     return result.Succeeded();
66430fdc8d8SChris Lattner }
66530fdc8d8SChris Lattner 
66630fdc8d8SChris Lattner 
66730fdc8d8SChris Lattner //-------------------------------------------------------------------------
66830fdc8d8SChris Lattner // CommandObjectBreakpointCommandList
66930fdc8d8SChris Lattner //-------------------------------------------------------------------------
67030fdc8d8SChris Lattner 
671a7015092SGreg Clayton CommandObjectBreakpointCommandList::CommandObjectBreakpointCommandList (CommandInterpreter &interpreter) :
672a7015092SGreg Clayton     CommandObject (interpreter,
673a7015092SGreg Clayton                    "list",
67430fdc8d8SChris Lattner                    "List the script or set of commands to be executed when the breakpoint is hit.",
675405fe67fSCaroline Tice                     NULL)
67630fdc8d8SChris Lattner {
677405fe67fSCaroline Tice     CommandArgumentEntry arg;
678405fe67fSCaroline Tice     CommandArgumentData bp_id_arg;
679405fe67fSCaroline Tice 
680405fe67fSCaroline Tice     // Define the first (and only) variant of this arg.
681405fe67fSCaroline Tice     bp_id_arg.arg_type = eArgTypeBreakpointID;
682405fe67fSCaroline Tice     bp_id_arg.arg_repetition = eArgRepeatPlain;
683405fe67fSCaroline Tice 
684405fe67fSCaroline Tice     // There is only one variant this argument could be; put it into the argument entry.
685405fe67fSCaroline Tice     arg.push_back (bp_id_arg);
686405fe67fSCaroline Tice 
687405fe67fSCaroline Tice     // Push the data for the first argument into the m_arguments vector.
688405fe67fSCaroline Tice     m_arguments.push_back (arg);
68930fdc8d8SChris Lattner }
69030fdc8d8SChris Lattner 
69130fdc8d8SChris Lattner CommandObjectBreakpointCommandList::~CommandObjectBreakpointCommandList ()
69230fdc8d8SChris Lattner {
69330fdc8d8SChris Lattner }
69430fdc8d8SChris Lattner 
69530fdc8d8SChris Lattner bool
6966611103cSGreg Clayton CommandObjectBreakpointCommandList::Execute
6976611103cSGreg Clayton (
6986611103cSGreg Clayton     Args& command,
6996611103cSGreg Clayton     CommandReturnObject &result
7006611103cSGreg Clayton )
70130fdc8d8SChris Lattner {
702a7015092SGreg Clayton     Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
70330fdc8d8SChris Lattner 
70430fdc8d8SChris Lattner     if (target == NULL)
70530fdc8d8SChris Lattner     {
70630fdc8d8SChris Lattner         result.AppendError ("There is not a current executable; there are no breakpoints for which to list commands");
70730fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
70830fdc8d8SChris Lattner         return false;
70930fdc8d8SChris Lattner     }
71030fdc8d8SChris Lattner 
71130fdc8d8SChris Lattner     const BreakpointList &breakpoints = target->GetBreakpointList();
71230fdc8d8SChris Lattner     size_t num_breakpoints = breakpoints.GetSize();
71330fdc8d8SChris Lattner 
71430fdc8d8SChris Lattner     if (num_breakpoints == 0)
71530fdc8d8SChris Lattner     {
71630fdc8d8SChris Lattner         result.AppendError ("No breakpoints exist for which to list commands");
71730fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
71830fdc8d8SChris Lattner         return false;
71930fdc8d8SChris Lattner     }
72030fdc8d8SChris Lattner 
72130fdc8d8SChris Lattner     if (command.GetArgumentCount() == 0)
72230fdc8d8SChris Lattner     {
72330fdc8d8SChris Lattner         result.AppendError ("No breakpoint specified for which to list the commands");
72430fdc8d8SChris Lattner         result.SetStatus (eReturnStatusFailed);
72530fdc8d8SChris Lattner         return false;
72630fdc8d8SChris Lattner     }
72730fdc8d8SChris Lattner 
72830fdc8d8SChris Lattner     BreakpointIDList valid_bp_ids;
72930fdc8d8SChris Lattner     CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids);
73030fdc8d8SChris Lattner 
73130fdc8d8SChris Lattner     if (result.Succeeded())
73230fdc8d8SChris Lattner     {
733c982c768SGreg Clayton         const size_t count = valid_bp_ids.GetSize();
734c982c768SGreg Clayton         for (size_t i = 0; i < count; ++i)
73530fdc8d8SChris Lattner         {
73630fdc8d8SChris Lattner             BreakpointID cur_bp_id = valid_bp_ids.GetBreakpointIDAtIndex (i);
73730fdc8d8SChris Lattner             if (cur_bp_id.GetBreakpointID() != LLDB_INVALID_BREAK_ID)
73830fdc8d8SChris Lattner             {
73930fdc8d8SChris Lattner                 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get();
74030fdc8d8SChris Lattner 
74130fdc8d8SChris Lattner                 if (bp)
74230fdc8d8SChris Lattner                 {
7431b54c88cSJim Ingham                     const BreakpointOptions *bp_options = NULL;
74430fdc8d8SChris Lattner                     if (cur_bp_id.GetLocationID() != LLDB_INVALID_BREAK_ID)
74530fdc8d8SChris Lattner                     {
74630fdc8d8SChris Lattner                         BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID()));
74730fdc8d8SChris Lattner                         if (bp_loc_sp)
74805407f6bSJim Ingham                             bp_options = bp_loc_sp->GetOptionsNoCreate();
74930fdc8d8SChris Lattner                         else
75030fdc8d8SChris Lattner                         {
75130fdc8d8SChris Lattner                             result.AppendErrorWithFormat("Invalid breakpoint ID: %u.%u.\n",
75230fdc8d8SChris Lattner                                                          cur_bp_id.GetBreakpointID(),
75330fdc8d8SChris Lattner                                                          cur_bp_id.GetLocationID());
75430fdc8d8SChris Lattner                             result.SetStatus (eReturnStatusFailed);
75530fdc8d8SChris Lattner                             return false;
75630fdc8d8SChris Lattner                         }
75730fdc8d8SChris Lattner                     }
75830fdc8d8SChris Lattner                     else
75930fdc8d8SChris Lattner                     {
76030fdc8d8SChris Lattner                         bp_options = bp->GetOptions();
76130fdc8d8SChris Lattner                     }
76230fdc8d8SChris Lattner 
76330fdc8d8SChris Lattner                     if (bp_options)
76430fdc8d8SChris Lattner                     {
76530fdc8d8SChris Lattner                         StreamString id_str;
766e16c50a1SJim Ingham                         BreakpointID::GetCanonicalReference (&id_str,
767e16c50a1SJim Ingham                                                              cur_bp_id.GetBreakpointID(),
768e16c50a1SJim Ingham                                                              cur_bp_id.GetLocationID());
7691b54c88cSJim Ingham                         const Baton *baton = bp_options->GetBaton();
77030fdc8d8SChris Lattner                         if (baton)
77130fdc8d8SChris Lattner                         {
77230fdc8d8SChris Lattner                             result.GetOutputStream().Printf ("Breakpoint %s:\n", id_str.GetData());
77330fdc8d8SChris Lattner                             result.GetOutputStream().IndentMore ();
77430fdc8d8SChris Lattner                             baton->GetDescription(&result.GetOutputStream(), eDescriptionLevelFull);
77530fdc8d8SChris Lattner                             result.GetOutputStream().IndentLess ();
77630fdc8d8SChris Lattner                         }
77730fdc8d8SChris Lattner                         else
77830fdc8d8SChris Lattner                         {
779e16c50a1SJim Ingham                             result.AppendMessageWithFormat ("Breakpoint %s does not have an associated command.\n",
780e16c50a1SJim Ingham                                                             id_str.GetData());
78130fdc8d8SChris Lattner                         }
78230fdc8d8SChris Lattner                     }
78330fdc8d8SChris Lattner                     result.SetStatus (eReturnStatusSuccessFinishResult);
78430fdc8d8SChris Lattner                 }
78530fdc8d8SChris Lattner                 else
78630fdc8d8SChris Lattner                 {
78730fdc8d8SChris Lattner                     result.AppendErrorWithFormat("Invalid breakpoint ID: %u.\n", cur_bp_id.GetBreakpointID());
78830fdc8d8SChris Lattner                     result.SetStatus (eReturnStatusFailed);
78930fdc8d8SChris Lattner                 }
79030fdc8d8SChris Lattner 
79130fdc8d8SChris Lattner             }
79230fdc8d8SChris Lattner         }
79330fdc8d8SChris Lattner     }
79430fdc8d8SChris Lattner 
79530fdc8d8SChris Lattner     return result.Succeeded();
79630fdc8d8SChris Lattner }
79730fdc8d8SChris Lattner 
79830fdc8d8SChris Lattner //-------------------------------------------------------------------------
79930fdc8d8SChris Lattner // CommandObjectBreakpointCommand
80030fdc8d8SChris Lattner //-------------------------------------------------------------------------
80130fdc8d8SChris Lattner 
8026611103cSGreg Clayton CommandObjectBreakpointCommand::CommandObjectBreakpointCommand (CommandInterpreter &interpreter) :
803a7015092SGreg Clayton     CommandObjectMultiword (interpreter,
804a7015092SGreg Clayton                             "command",
80530fdc8d8SChris Lattner                             "A set of commands for adding, removing and examining bits of code to be executed when the breakpoint is hit (breakpoint 'commmands').",
80630fdc8d8SChris Lattner                             "command <sub-command> [<sub-command-options>] <breakpoint-id>")
80730fdc8d8SChris Lattner {
80830fdc8d8SChris Lattner     bool status;
809a7015092SGreg Clayton     CommandObjectSP add_command_object (new CommandObjectBreakpointCommandAdd (interpreter));
81093e0f19fSCaroline Tice     CommandObjectSP delete_command_object (new CommandObjectBreakpointCommandDelete (interpreter));
811a7015092SGreg Clayton     CommandObjectSP list_command_object (new CommandObjectBreakpointCommandList (interpreter));
81230fdc8d8SChris Lattner 
81330fdc8d8SChris Lattner     add_command_object->SetCommandName ("breakpoint command add");
81493e0f19fSCaroline Tice     delete_command_object->SetCommandName ("breakpoint command delete");
81530fdc8d8SChris Lattner     list_command_object->SetCommandName ("breakpoint command list");
81630fdc8d8SChris Lattner 
817a7015092SGreg Clayton     status = LoadSubCommand ("add",    add_command_object);
81893e0f19fSCaroline Tice     status = LoadSubCommand ("delete", delete_command_object);
819a7015092SGreg Clayton     status = LoadSubCommand ("list",   list_command_object);
82030fdc8d8SChris Lattner }
82130fdc8d8SChris Lattner 
82230fdc8d8SChris Lattner 
82330fdc8d8SChris Lattner CommandObjectBreakpointCommand::~CommandObjectBreakpointCommand ()
82430fdc8d8SChris Lattner {
82530fdc8d8SChris Lattner }
82630fdc8d8SChris Lattner 
82730fdc8d8SChris Lattner bool
82830fdc8d8SChris Lattner CommandObjectBreakpointCommand::BreakpointOptionsCallbackFunction
82930fdc8d8SChris Lattner (
83030fdc8d8SChris Lattner     void *baton,
83130fdc8d8SChris Lattner     StoppointCallbackContext *context,
83230fdc8d8SChris Lattner     lldb::user_id_t break_id,
83330fdc8d8SChris Lattner     lldb::user_id_t break_loc_id
83430fdc8d8SChris Lattner )
83530fdc8d8SChris Lattner {
83630fdc8d8SChris Lattner     bool ret_value = true;
83730fdc8d8SChris Lattner     if (baton == NULL)
83830fdc8d8SChris Lattner         return true;
83930fdc8d8SChris Lattner 
84030fdc8d8SChris Lattner 
84130fdc8d8SChris Lattner     BreakpointOptions::CommandData *data = (BreakpointOptions::CommandData *) baton;
84230fdc8d8SChris Lattner     StringList &commands = data->user_source;
84330fdc8d8SChris Lattner 
84430fdc8d8SChris Lattner     if (commands.GetSize() > 0)
84530fdc8d8SChris Lattner     {
8461ac04c30SGreg Clayton         ExecutionContext exe_ctx (context->exe_ctx_ref);
8471ac04c30SGreg Clayton         Target *target = exe_ctx.GetTargetPtr();
848c14ee32dSGreg Clayton         if (target)
8496611103cSGreg Clayton         {
85085e8b814SJim Ingham             CommandReturnObject result;
851c14ee32dSGreg Clayton             Debugger &debugger = target->GetDebugger();
85285e8b814SJim Ingham             // Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
85385e8b814SJim Ingham             // if the debugger is set up that way.
85485e8b814SJim Ingham 
8555b52f0c7SJim Ingham             StreamSP output_stream (debugger.GetAsyncOutputStream());
8565b52f0c7SJim Ingham             StreamSP error_stream (debugger.GetAsyncErrorStream());
857b5059accSCaroline Tice             result.SetImmediateOutputStream (output_stream);
858b5059accSCaroline Tice             result.SetImmediateErrorStream (error_stream);
85930fdc8d8SChris Lattner 
860e16c50a1SJim Ingham             bool stop_on_continue = true;
861e16c50a1SJim Ingham             bool echo_commands    = false;
862e16c50a1SJim Ingham             bool print_results    = true;
86330fdc8d8SChris Lattner 
864e16c50a1SJim Ingham             debugger.GetCommandInterpreter().HandleCommands (commands,
8651ac04c30SGreg Clayton                                                              &exe_ctx,
866e16c50a1SJim Ingham                                                              stop_on_continue,
867e16c50a1SJim Ingham                                                              data->stop_on_error,
868e16c50a1SJim Ingham                                                              echo_commands,
869e16c50a1SJim Ingham                                                              print_results,
870e16c50a1SJim Ingham                                                              result);
871b5059accSCaroline Tice             result.GetImmediateOutputStream()->Flush();
872b5059accSCaroline Tice             result.GetImmediateErrorStream()->Flush();
87330fdc8d8SChris Lattner        }
8746611103cSGreg Clayton     }
87530fdc8d8SChris Lattner     return ret_value;
87630fdc8d8SChris Lattner }
87730fdc8d8SChris Lattner 
878