1 //===-- CompletionRequest.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 "lldb/Utility/CompletionRequest.h"
11 
12 using namespace lldb;
13 using namespace lldb_private;
14 
15 CompletionRequest::CompletionRequest(llvm::StringRef command_line,
16                                      unsigned raw_cursor_pos,
17                                      int match_start_point,
18                                      int max_return_elements,
19                                      StringList &matches)
20     : m_command(command_line), m_raw_cursor_pos(raw_cursor_pos),
21       m_match_start_point(match_start_point),
22       m_max_return_elements(max_return_elements), m_matches(&matches) {
23 
24   // We parse the argument up to the cursor, so the last argument in
25   // parsed_line is the one containing the cursor, and the cursor is after the
26   // last character.
27   m_parsed_line = Args(command_line);
28   m_partial_parsed_line = Args(command_line.substr(0, raw_cursor_pos));
29 
30   m_cursor_index = m_partial_parsed_line.GetArgumentCount() - 1;
31 
32   if (m_cursor_index == -1)
33     m_cursor_char_position = 0;
34   else
35     m_cursor_char_position =
36         strlen(m_partial_parsed_line.GetArgumentAtIndex(m_cursor_index));
37 
38   matches.Clear();
39 
40   const char *cursor = command_line.data() + raw_cursor_pos;
41   if (raw_cursor_pos > 0 && cursor[-1] == ' ') {
42     // We are just after a space.  If we are in an argument, then we will
43     // continue parsing, but if we are between arguments, then we have to
44     // complete whatever the next element would be. We can distinguish the two
45     // cases because if we are in an argument (e.g. because the space is
46     // protected by a quote) then the space will also be in the parsed
47     // argument...
48 
49     const char *current_elem =
50         m_partial_parsed_line.GetArgumentAtIndex(m_cursor_index);
51     if (m_cursor_char_position == 0 ||
52         current_elem[m_cursor_char_position - 1] != ' ') {
53       m_parsed_line.InsertArgumentAtIndex(m_cursor_index + 1, llvm::StringRef(),
54                                           '\0');
55       m_cursor_index++;
56       m_cursor_char_position = 0;
57     }
58   }
59 }
60