blob: ac34c86a5d09dd4c082f0776859a990996f4ad79 [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{
Jim Ingham34e9a982010-06-15 18:47:14 +000041 { LLDB_OPT_SET_1, false, "arch", 'a', required_argument, NULL, 0, "<arch>", "Specify the architecture to launch."},
Chris Lattner24943d22010-06-08 16:52:24 +000042 { 0, false, NULL, 0, 0, NULL, 0, NULL, NULL }
43};
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
88CommandObjectFile::CommandObjectFile() :
89 CommandObject ("file",
Caroline Ticec1ad82e2010-09-07 22:38:08 +000090 "Set the file to be used as the main executable by the debugger.",
Chris Lattner24943d22010-06-08 16:52:24 +000091 "file [<cmd-options>] <filename>")
92{
93}
94
95CommandObjectFile::~CommandObjectFile ()
96{
97}
98
99Options *
100CommandObjectFile::GetOptions ()
101{
102 return &m_options;
103}
104
105bool
106CommandObjectFile::Execute
107(
Greg Clayton63094e02010-06-23 01:19:29 +0000108 CommandInterpreter &interpreter,
Chris Lattner24943d22010-06-08 16:52:24 +0000109 Args& command,
Chris Lattner24943d22010-06-08 16:52:24 +0000110 CommandReturnObject &result
111)
112{
113 const char *file_path = command.GetArgumentAtIndex(0);
114 Timer scoped_timer(__PRETTY_FUNCTION__, "(dbg) file '%s'", file_path);
115 const int argc = command.GetArgumentCount();
116 if (argc == 1)
117 {
118 FileSpec file_spec (file_path);
119
120 if (! file_spec.Exists())
121 {
122 result.AppendErrorWithFormat ("File '%s' does not exist.\n", file_path);
123 result.SetStatus (eReturnStatusFailed);
124 return result.Succeeded();
125 }
126
127 TargetSP target_sp;
128
Jim Ingham7508e732010-08-09 23:31:02 +0000129 ArchSpec arch = m_options.m_arch;
Greg Clayton63094e02010-06-23 01:19:29 +0000130 Debugger &debugger = interpreter.GetDebugger();
Jim Ingham7508e732010-08-09 23:31:02 +0000131 Error error = debugger.GetTargetList().CreateTarget (debugger, file_spec, m_options.m_arch, NULL, true, target_sp);
Chris Lattner24943d22010-06-08 16:52:24 +0000132
133 if (target_sp)
134 {
Jim Inghamc8332952010-08-26 21:32:51 +0000135 debugger.GetTargetList().SetSelectedTarget(target_sp.get());
Jim Ingham7508e732010-08-09 23:31:02 +0000136 result.AppendMessageWithFormat ("Current executable set to '%s' (%s).\n", file_path, target_sp->GetArchitecture().AsCString());
Chris Lattner24943d22010-06-08 16:52:24 +0000137 result.SetStatus (eReturnStatusSuccessFinishNoResult);
138 }
139 else
140 {
141 result.AppendError(error.AsCString());
142 result.SetStatus (eReturnStatusFailed);
143 }
144 }
145 else
146 {
147 result.AppendErrorWithFormat("'%s' takes exactly one executable path argument.\n", m_cmd_name.c_str());
148 result.SetStatus (eReturnStatusFailed);
149 }
150 return result.Succeeded();
151
152}
Jim Ingham802f8b02010-06-30 05:02:46 +0000153
154int
155CommandObjectFile::HandleArgumentCompletion (CommandInterpreter &interpreter,
156 Args &input,
157 int &cursor_index,
158 int &cursor_char_position,
159 OptionElementVector &opt_element_vector,
160 int match_start_point,
161 int max_return_elements,
162 bool &word_complete,
163 StringList &matches)
164{
165 std::string completion_str (input.GetArgumentAtIndex(cursor_index));
166 completion_str.erase (cursor_char_position);
167
168 CommandCompletions::InvokeCommonCompletionCallbacks (interpreter,
169 CommandCompletions::eDiskFileCompletion,
170 completion_str.c_str(),
171 match_start_point,
172 max_return_elements,
173 NULL,
174 word_complete,
175 matches);
176 return matches.GetSize();
177
Caroline Ticec1ad82e2010-09-07 22:38:08 +0000178}