blob: af7e2fed943a54c1ba4da222d9b076ed7730db3e [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"
19#include "lldb/Interpreter/CommandContext.h"
20#include "lldb/Interpreter/CommandInterpreter.h"
21#include "lldb/Interpreter/CommandReturnObject.h"
22#include "lldb/Target/Process.h"
23
24using namespace lldb;
25using namespace lldb_private;
26
27CommandObjectFile::CommandOptions::CommandOptions() :
28 Options (),
29 m_arch () // Breakpoint info defaults to brief descriptions
30{
Chris Lattner24943d22010-06-08 16:52:24 +000031}
32
33CommandObjectFile::CommandOptions::~CommandOptions ()
34{
35}
36
37lldb::OptionDefinition
38CommandObjectFile::CommandOptions::g_option_table[] =
39{
Jim Ingham34e9a982010-06-15 18:47:14 +000040 { LLDB_OPT_SET_1, false, "arch", 'a', required_argument, NULL, 0, "<arch>", "Specify the architecture to launch."},
Chris Lattner24943d22010-06-08 16:52:24 +000041 { 0, false, NULL, 0, 0, NULL, 0, NULL, NULL }
42};
43
44const lldb::OptionDefinition *
45CommandObjectFile::CommandOptions::GetDefinitions ()
46{
47 return g_option_table;
48}
49
50Error
51CommandObjectFile::CommandOptions::SetOptionValue (int option_idx, const char *option_arg)
52{
53 Error error;
54 char short_option = (char) m_getopt_table[option_idx].val;
55
56 switch (short_option)
57 {
58 case 'a':
59 {
60 ArchSpec option_arch (option_arg);
61 if (option_arch.IsValid())
62 m_arch = option_arch;
63 else
64 error.SetErrorStringWithFormat ("Invalid arch string '%s'.\n", optarg);
65 }
66 break;
67
68 default:
69 error.SetErrorStringWithFormat ("Unrecognized option '%c'.\n", short_option);
70 break;
71 }
72
73 return error;
74}
75
76void
77CommandObjectFile::CommandOptions::ResetOptionValues ()
78{
79 Options::ResetOptionValues();
80 m_arch.Clear();
81}
82
83//-------------------------------------------------------------------------
84// CommandObjectFile
85//-------------------------------------------------------------------------
86
87CommandObjectFile::CommandObjectFile() :
88 CommandObject ("file",
89 "Sets the file to be used as the main executable by the debugger.",
90 "file [<cmd-options>] <filename>")
91{
92}
93
94CommandObjectFile::~CommandObjectFile ()
95{
96}
97
98Options *
99CommandObjectFile::GetOptions ()
100{
101 return &m_options;
102}
103
104bool
105CommandObjectFile::Execute
106(
107 Args& command,
108 CommandContext *context,
109 CommandInterpreter *interpreter,
110 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
129 ArchSpec arch;
130 if (m_options.m_arch.IsValid())
131 arch = m_options.m_arch;
132 else
133 {
134 arch = lldb_private::GetDefaultArchitecture ();
135 if (!arch.IsValid())
136 arch = LLDB_ARCH_DEFAULT;
137 }
138
139 Error error = Debugger::GetSharedInstance().GetTargetList().CreateTarget (file_spec, arch, NULL, true, target_sp);
140
141 if (error.Fail() && !m_options.m_arch.IsValid())
142 {
143 if (arch == LLDB_ARCH_DEFAULT_32BIT)
144 arch = LLDB_ARCH_DEFAULT_64BIT;
145 else
146 arch = LLDB_ARCH_DEFAULT_32BIT;
147 error = Debugger::GetSharedInstance().GetTargetList().CreateTarget (file_spec, arch, NULL, true, target_sp);
148 }
149
150 if (target_sp)
151 {
152 Debugger::GetSharedInstance().GetTargetList().SetCurrentTarget(target_sp.get());
153 result.AppendMessageWithFormat ("Current executable set to '%s' (%s).\n", file_path, arch.AsCString());
154 result.SetStatus (eReturnStatusSuccessFinishNoResult);
155 }
156 else
157 {
158 result.AppendError(error.AsCString());
159 result.SetStatus (eReturnStatusFailed);
160 }
161 }
162 else
163 {
164 result.AppendErrorWithFormat("'%s' takes exactly one executable path argument.\n", m_cmd_name.c_str());
165 result.SetStatus (eReturnStatusFailed);
166 }
167 return result.Succeeded();
168
169}