forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContextRust.cpp
More file actions
251 lines (205 loc) · 8.25 KB
/
ContextRust.cpp
File metadata and controls
251 lines (205 loc) · 8.25 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2021 Eran Ifrah
// file name : ContextRust.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "commentconfigdata.h"
#include "ContextRust.hpp"
#include "cl_editor.h"
#include "cl_editor_tip_window.h"
#include "editor_config.h"
#include <unordered_set>
#include <wx/xrc/xmlres.h>
ContextRust::ContextRust(clEditor* editor)
: ContextGeneric(editor, "rust")
{
editor->SetWordChars("!abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$");
m_completionTriggerStrings.insert(".");
m_completionTriggerStrings.insert("::");
Bind(wxEVT_MENU, &ContextRust::OnCommentSelection, this, XRCID("comment_selection"));
Bind(wxEVT_MENU, &ContextRust::OnCommentLine, this, XRCID("comment_line"));
m_eventsBound = true;
SetName("rust");
}
ContextRust::ContextRust()
: ContextGeneric("rust")
{
}
ContextRust::~ContextRust()
{
if (m_eventsBound) {
Unbind(wxEVT_MENU, &ContextRust::OnCommentSelection, this, XRCID("comment_selection"));
Unbind(wxEVT_MENU, &ContextRust::OnCommentLine, this, XRCID("comment_line"));
}
}
void ContextRust::AddMenuDynamicContent(wxMenu* menu) { wxUnusedVar(menu); }
void ContextRust::ApplySettings()
{
SetName(wxT("rust"));
LexerConf::Ptr_t lexPtr;
if (EditorConfigST::Get()->IsOk()) {
lexPtr = EditorConfigST::Get()->GetLexer(GetName());
}
clEditor& rCtrl = GetCtrl();
if (lexPtr) {
rCtrl.SetLexer(lexPtr->GetLexerId());
for (int i = 0; i <= 4; ++i) {
wxString keyWords = lexPtr->GetKeyWords(i);
keyWords.Replace(wxT("\n"), wxT(" "));
keyWords.Replace(wxT("\r"), wxT(" "));
rCtrl.SetKeyWords(i, keyWords);
}
} else {
rCtrl.SetLexer(wxSTC_LEX_NULL);
}
DoApplySettings(lexPtr);
}
void ContextRust::AutoIndent(const wxChar& nChar)
{
clEditor& rCtrl = GetCtrl();
CommentConfigData data;
EditorConfigST::Get()->ReadObject("CommentConfigData", &data);
int curpos = rCtrl.GetCurrentPos();
int prev_pos = rCtrl.PositionBeforePos(curpos);
if (rCtrl.GetDisableSmartIndent()) {
return;
}
if (nChar == '\n' && data.GetContinueCppComment()) {
// Single line comment?
wxString prev_line = rCtrl.GetLine(rCtrl.LineFromPosition(prev_pos));
prev_line.Trim().Trim(false);
wxString to_insert;
if (prev_line.StartsWith("///")) {
to_insert = "/// ";
} else if (prev_line.StartsWith("//")) {
to_insert = "// ";
}
if (!to_insert.empty()) {
int line = rCtrl.LineFromPosition(curpos);
rCtrl.SetLineIndentation(line, rCtrl.GetLineIndentation(line - 1));
int insertPos = rCtrl.GetLineIndentPosition(line);
rCtrl.InsertText(insertPos, to_insert);
rCtrl.SetCaretAt(insertPos + to_insert.Length());
rCtrl.ChooseCaretX(); // set new column as "current" column
return;
}
}
// Default behavior
ContextGeneric::AutoIndent(nChar);
}
wxString ContextRust::CallTipContent() { return wxEmptyString; }
int ContextRust::DoGetCalltipParamterIndex() { return ContextBase::DoGetCalltipParamterIndex(); }
wxString ContextRust::GetCurrentScopeName() { return wxT(""); }
wxMenu* ContextRust::GetMenu() { return ContextBase::GetMenu(); }
TagEntryPtr ContextRust::GetTagAtCaret(bool scoped, bool impl) { return NULL; }
bool ContextRust::IsCommentOrString(long pos)
{
static std::unordered_set<int> string_styles = { wxSTC_RUST_BYTECHARACTER, wxSTC_RUST_BYTESTRING,
wxSTC_RUST_BYTESTRINGR, wxSTC_RUST_STRING,
wxSTC_RUST_STRINGR, wxSTC_RUST_CHARACTER };
int style = GetCtrl().GetStyleAt(pos);
return IsComment(pos) || string_styles.count(style);
}
bool ContextRust::IsDefaultContext() const { return false; }
std::shared_ptr<ContextBase> ContextRust::NewInstance(clEditor* container)
{
return std::make_shared<ContextRust>(container);
}
void ContextRust::OnCallTipClick(wxStyledTextEvent& event) { wxUnusedVar(event); }
void ContextRust::OnCalltipCancel() {}
void ContextRust::OnDbgDwellEnd(wxStyledTextEvent& event) { wxUnusedVar(event); }
void ContextRust::OnDbgDwellStart(wxStyledTextEvent& event) { wxUnusedVar(event); }
void ContextRust::OnDwellEnd(wxStyledTextEvent& event) { wxUnusedVar(event); }
void ContextRust::OnEnterHit() {}
void ContextRust::OnFileSaved() {}
void ContextRust::OnKeyDown(wxKeyEvent& event) { ContextBase::OnKeyDown(event); }
void ContextRust::OnSciUpdateUI(wxStyledTextEvent& event) { wxUnusedVar(event); }
void ContextRust::RemoveMenuDynamicContent(wxMenu* menu) {}
void ContextRust::RetagFile() {}
void ContextRust::SemicolonShift()
{
int foundPos(wxNOT_FOUND);
int semiColonPos(wxNOT_FOUND);
clEditor& ctrl = GetCtrl();
if (ctrl.NextChar(ctrl.GetCurrentPos(), semiColonPos) == wxT(')')) {
// test to see if we are inside a 'for' statement
long openBracePos(wxNOT_FOUND);
int posWordBeforeOpenBrace(wxNOT_FOUND);
if (ctrl.MatchBraceBack(wxT(')'), semiColonPos, openBracePos)) {
ctrl.PreviousChar(openBracePos, posWordBeforeOpenBrace);
if (posWordBeforeOpenBrace != wxNOT_FOUND) {
wxString word = ctrl.PreviousWord(posWordBeforeOpenBrace, foundPos);
// At the current pos, we got a ';'
// at semiColonPos we got ;
// switch
ctrl.DeleteBack();
ctrl.SetCurrentPos(semiColonPos);
ctrl.InsertText(semiColonPos, wxT(";"));
ctrl.SetCaretAt(semiColonPos + 1);
ctrl.GetFunctionTip()->Deactivate();
}
}
}
}
void ContextRust::SetActive() {}
bool ContextRust::IsComment(long pos) const
{
static std::unordered_set<int> comment_styles = { wxSTC_RUST_COMMENTBLOCK, wxSTC_RUST_COMMENTLINE,
wxSTC_RUST_COMMENTBLOCKDOC, wxSTC_RUST_COMMENTLINEDOC };
int style = GetCtrl().GetStyleAt(pos);
return comment_styles.count(style);
}
#define IS_BETWEEN(style, x, y) (style >= x && style <= y)
int ContextRust::GetActiveKeywordSet() const { return 0; }
bool ContextRust::IsAtBlockComment() const
{
int pos = PositionBeforeCurrent();
int cur_style = GetCtrl().GetStyleAt(pos);
return cur_style == wxSTC_RUST_COMMENTBLOCK || cur_style == wxSTC_RUST_COMMENTBLOCKDOC;
}
bool ContextRust::IsAtLineComment() const
{
int pos = PositionBeforeCurrent();
int cur_style = GetCtrl().GetStyleAt(pos);
return cur_style == wxSTC_RUST_COMMENTLINE || cur_style == wxSTC_RUST_COMMENTLINEDOC;
}
bool ContextRust::IsStringTriggerCodeComplete(const wxString& str) const
{
return (m_completionTriggerStrings.count(str) > 0);
}
void ContextRust::ProcessIdleActions()
{
clEditor& ctrl = GetCtrl();
if (ctrl.GetFunctionTip()->IsActive()) {
ctrl.GetFunctionTip()->Highlight(DoGetCalltipParamterIndex());
}
}
void ContextRust::OnCommentSelection(wxCommandEvent& event)
{
wxUnusedVar(event);
GetCtrl().CommentBlockSelection("/*", "*/");
}
void ContextRust::OnCommentLine(wxCommandEvent& event)
{
wxUnusedVar(event);
GetCtrl().ToggleLineComment("//", wxSTC_RUST_COMMENTLINE);
}