blob: 1c9f146c923de2a8eb1227795b63ebaa87172e75 (
plain) (
blame)
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
|
#include "format.h"
#include "grammar.h"
#include <yql/essentials/sql/v1/complete/antlr4/vocabulary.h>
#include <util/generic/hash_set.h>
namespace NSQLComplete {
TString FormatKeywords(const TVector<TString>& seq) {
static const THashSet<std::string> Keywords = [] {
const auto& grammar = GetSqlGrammar();
const auto& vocabulary = grammar.GetVocabulary();
THashSet<std::string> keywords;
for (auto& token : grammar.GetKeywordTokens()) {
keywords.emplace(Display(vocabulary, token));
}
return keywords;
}();
if (seq.empty()) {
return "";
}
TString text = seq[0];
for (size_t i = 1; i < seq.size(); ++i) {
const auto& token = seq[i];
if (Keywords.contains(token)) {
text += " ";
}
text += token;
}
return text;
}
} // namespace NSQLComplete
|