blob: 737b0cb4ec8b04c26a6e983e11d3feed3152d90c [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandObjectFile.cpp -----------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "CommandObjectFile.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
Jim Ingham84cdc152010-06-15 19:49:27 +000016#include "lldb/Interpreter/Args.h"
Chris Lattner24943d22010-06-08 16:52:24 +000017#include "lldb/Core/Debugger.h"
18#include "lldb/Core/Timer.h"
Greg Clayton63094e02010-06-23 01:19:29 +000019#include "lldb/Core/Debugger.h"
Chris Lattner24943d22010-06-08 16:52:24 +000020#include "lldb/Interpreter/CommandInterpreter.h"
21#include "lldb/Interpreter/CommandReturnObject.h"
Jim Ingham802f8b02010-06-30 05:02:46 +000022#include "lldb/Interpreter/CommandCompletions.h"
Chris Lattner24943d22010-06-08 16:52:24 +000023#include "lldb/Target/Process.h"
24
25using namespace lldb;
26using namespace lldb_private;
27
28CommandObjectFile::CommandOptions::CommandOptions() :
29 Options (),
30 m_arch () // Breakpoint info defaults to brief descriptions
31{
Chris Lattner24943d22010-06-08 16:52:24 +000032}
33
34CommandObjectFile::CommandOptions::~CommandOptions ()
35{
36}
37
38lldb::OptionDefinition
39CommandObjectFile::CommandOptions::g_option_table[] =
40{
Caroline Tice4d6675c2010-10-01 19:59:14 +000041 { LLDB_OPT_SET_1, false, "arch", 'a', required_argument, NULL, 0, eArgTypeArchitecture, "Specify the architecture to be used when the process is launched."},
42 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
Chris Lattner24943d22010-06-08 16:52:24 +000043};
44
45const lldb::OptionDefinition *
46CommandObjectFile::CommandOptions::GetDefinitions ()
47{
48 return g_option_table;
49}
50
51Error
52CommandObjectFile::CommandOptions::SetOptionValue (int option_idx, const char *option_arg)
53{
54 Error error;
55 char short_option = (char) m_getopt_table[option_idx].val;
56
57 switch (short_option)
58 {
59 case 'a':
60 {
61 ArchSpec option_arch (option_arg);
62 if (option_arch.IsValid())
63 m_arch = option_arch;
64 else
65 error.SetErrorStringWithFormat ("Invalid arch string '%s'.\n", optarg);
66 }
67 break;
68
69 default:
70 error.SetErrorStringWithFormat ("Unrecognized option '%c'.\n", short_option);
71 break;
72 }
73
74 return error;
75}
76
77void
78CommandObjectFile::CommandOptions::ResetOptionValues ()
79{
80 Options::ResetOptionValues();
81 m_arch.Clear();
82}
83
84//-------------------------------------------------------------------------
85// CommandObjectFile
86//-------------------------------------------------------------------------
87
Greg Clayton238c0a12010-09-18 01:14:36 +000088CommandObjectFile::CommandObjectFile(CommandInterpreter &interpreter) :
89 CommandObject (interpreter,
90 "file",
Caroline Ticec1ad82e2010-09-07 22:38:08 +000091 "Set the file to be used as the main executable by the debugger.",
Caroline Tice43b014a2010-10-04 22:28:36 +000092 NULL)
Chris Lattner24943d22010-06-08 16:52:24 +000093{
Caroline Tice43b014a2010-10-04 22:28:36 +000094 CommandArgumentEntry arg;
95 CommandArgumentData file_arg;
96
97 // Define the first (and only) variant of this arg.
98 file_arg.arg_type = eArgTypeFilename;
99 file_arg.arg_repetition = eArgRepeatPlain;
100
101 // There is only one variant this argument could be; put it into the argument entry.
102 arg.push_back (file_arg);
103
104 // Push the data for the first argument into the m_arguments vector.
105 m_arguments.push_back (arg);
Chris Lattner24943d22010-06-08 16:52:24 +0000106}
107
108CommandObjectFile::~CommandObjectFile ()
109{
110}
111
112Options *
113CommandObjectFile::GetOptions ()
114{
115 return &m_options;
116}
117
118bool
119CommandObjectFile::Execute
120(
121 Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +0000122 CommandReturnObject &result
123)
124{
125 const char *file_path = command.GetArgumentAtIndex(0);
Caroline Tice31fbb642010-09-08 22:08:58 +0000126 Timer scoped_timer(__PRETTY_FUNCTION__, "(lldb) file '%s'", file_path);
Chris Lattner24943d22010-06-08 16:52:24 +0000127 const int argc = command.GetArgumentCount();
128 if (argc == 1)
129 {
130 FileSpec file_spec (file_path);
131
Caroline Ticeeddffe92010-09-10 04:48:55 +0000132 if (! file_spec.Exists() && !file_spec.ResolveExecutableLocation())
Chris Lattner24943d22010-06-08 16:52:24 +0000133 {
134 result.AppendErrorWithFormat ("File '%s' does not exist.\n", file_path);
135 result.SetStatus (eReturnStatusFailed);
136 return result.Succeeded();
137 }
138
139 TargetSP target_sp;
140
Jim Ingham7508e732010-08-09 23:31:02 +0000141 ArchSpec arch = m_options.m_arch;
Greg Clayton238c0a12010-09-18 01:14:36 +0000142 Debugger &debugger = m_interpreter.GetDebugger();
Jim Ingham7508e732010-08-09 23:31:02 +0000143 Error error = debugger.GetTargetList().CreateTarget (debugger, file_spec, m_options.m_arch, NULL, true, target_sp);
Chris Lattner24943d22010-06-08 16:52:24 +0000144
145 if (target_sp)
146 {
Jim Inghamc8332952010-08-26 21:32:51 +0000147 debugger.GetTargetList().SetSelectedTarget(target_sp.get());
Jim Ingham7508e732010-08-09 23:31:02 +0000148 result.AppendMessageWithFormat ("Current executable set to '%s' (%s).\n", file_path, target_sp->GetArchitecture().AsCString());
Chris Lattner24943d22010-06-08 16:52:24 +0000149 result.SetStatus (eReturnStatusSuccessFinishNoResult);
150 }
151 else
152 {
153 result.AppendError(error.AsCString());
154 result.SetStatus (eReturnStatusFailed);
155 }
156 }
157 else
158 {
159 result.AppendErrorWithFormat("'%s' takes exactly one executable path argument.\n", m_cmd_name.c_str());
160 result.SetStatus (eReturnStatusFailed);
161 }
162 return result.Succeeded();
163
164}
Jim Ingham802f8b02010-06-30 05:02:46 +0000165
166int
Greg Clayton238c0a12010-09-18 01:14:36 +0000167CommandObjectFile::HandleArgumentCompletion
168(
169 Args &input,
170 int &cursor_index,
171 int &cursor_char_position,
172 OptionElementVector &opt_element_vector,
173 int match_start_point,
174 int max_return_elements,
175 bool &word_complete,
176 StringList &matches
177)
Jim Ingham802f8b02010-06-30 05:02:46 +0000178{
Greg Clayton238c0a12010-09-18 01:14:36 +0000179 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
180 completion_str.erase (cursor_char_position);
Jim Ingham802f8b02010-06-30 05:02:46 +0000181
Greg Clayton238c0a12010-09-18 01:14:36 +0000182 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
183 CommandCompletions::eDiskFileCompletion,
184 completion_str.c_str(),
185 match_start_point,
186 max_return_elements,
187 NULL,
188 word_complete,
189 matches);
190 return matches.GetSize();
Caroline Ticec1ad82e2010-09-07 22:38:08 +0000191}