blob: ec2c7a287dfc0959e0045eecc2d92010d9a67db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/*
* Copyright (c) 2013 Remko Tronçon
* Licensed under the GNU General Public License.
* See the COPYING file for more information.
*/
#include <Sluift/EditlineTerminal.h>
#include <boost/optional.hpp>
#include <iostream>
#include <editline/readline.h>
#include <boost/numeric/conversion/cast.hpp>
#include <cassert>
#include <vector>
#include <cstring>
#include <Swiften/Base/Platform.h>
#include <Sluift/Completer.h>
using namespace Swift;
static EditlineTerminal* globalInstance = NULL;
static int completionStart = -1;
static int completionEnd = -1;
#if defined(SWIFTEN_PLATFORM_WINDOWS)
static char* getEmptyCompletions(const char*, int) {
#else
static int getEmptyCompletions(const char*, int) {
#endif
return 0;
}
static char* getCompletions(const char*, int state) {
rl_completion_append_character = 0;
#if RL_READLINE_VERSION >= 0x0600
rl_completion_suppress_append = 1;
#endif
static std::vector<std::string> completions;
if (state == 0) {
assert(globalInstance);
completions.clear();
if (globalInstance->getCompleter()) {
completions = globalInstance->getCompleter()->getCompletions(rl_line_buffer, completionStart, completionEnd);
}
}
if (boost::numeric_cast<size_t>(state) >= completions.size()) {
return 0;
}
return strdup(completions[boost::numeric_cast<size_t>(state)].c_str());
}
static char** getAttemptedCompletions(const char* text, int start, int end) {
completionStart = start;
completionEnd = end;
return rl_completion_matches(text, getCompletions);
}
EditlineTerminal& EditlineTerminal::getInstance() {
static EditlineTerminal instance;
globalInstance = &instance;
return instance;
}
EditlineTerminal::EditlineTerminal() {
rl_attempted_completion_function = getAttemptedCompletions;
rl_completion_entry_function = getEmptyCompletions; // Fallback. Do nothing.
#if defined(SWIFTEN_PLATFORM_WINDOWS)
// rl_basic_word_break is a cons char[] in MinGWEditLine.
// This one seems to work, although it doesn't on OS X for some reason.
rl_completer_word_break_characters = strdup(" \t\n.:+-*/><=;|&()[]{}");
#else
rl_basic_word_break_characters = strdup(" \t\n.:+-*/><=;|&()[]{}");
#endif
}
EditlineTerminal::~EditlineTerminal() {
}
void EditlineTerminal::printError(const std::string& message) {
std::cout << message << std::endl;
}
boost::optional<std::string> EditlineTerminal::readLine(const std::string& prompt) {
const char* line = readline(prompt.c_str());
return line ? std::string(line) : boost::optional<std::string>();
}
void EditlineTerminal::addToHistory(const std::string& line) {
#if defined(SWIFTEN_PLATFORM_WINDOWS)
// MinGWEditLine copies the string, so this is safe
add_history(const_cast<char*>(line.c_str()));
#else
add_history(line.c_str());
#endif
}
|