Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Commits
fed959a2
Commit
fed959a2
authored
5 years ago
by
Jan Travnicek
Browse files
Options
Downloads
Patches
Plain Diff
tune ReadlinePromptCompletion to comply with clang-tidy
parent
a1942d8f
No related branches found
No related tags found
1 merge request
!95
Many clang-tidy fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aql2/src/prompt/ReadlinePromptCompletion.cpp
+13
-9
13 additions, 9 deletions
aql2/src/prompt/ReadlinePromptCompletion.cpp
aql2/src/prompt/ReadlinePromptCompletion.h
+5
-4
5 additions, 4 deletions
aql2/src/prompt/ReadlinePromptCompletion.h
with
18 additions
and
13 deletions
aql2/src/prompt/ReadlinePromptCompletion.cpp
+
13
−
9
View file @
fed959a2
...
@@ -53,35 +53,39 @@ std::set < std::string > ReadlinePromptCompletion::filter_completions ( const st
...
@@ -53,35 +53,39 @@ std::set < std::string > ReadlinePromptCompletion::filter_completions ( const st
/* ========================================================================= */
/* ========================================================================= */
bool
ReadlinePromptCompletion
::
masterCommandCompletionTest
(
const
ext
::
string
&
line
,
const
int
start
,
const
std
::
string
&
expectation
)
{
return
line
.
starts_with
(
expectation
)
&&
(
unsigned
)
start
==
expectation
.
length
(
)
+
1
;
}
ReadlinePromptCompletion
::
CompletionContext
ReadlinePromptCompletion
::
context
(
const
char
*
text
,
const
int
start
,
const
int
end
)
{
ReadlinePromptCompletion
::
CompletionContext
ReadlinePromptCompletion
::
context
(
const
char
*
text
,
const
int
start
,
const
int
end
)
{
ext
::
string
line
(
rl_line_buffer
);
ext
::
string
line
(
rl_line_buffer
);
if
(
start
==
0
)
if
(
start
==
0
)
return
CompletionContext
::
COMMAND
;
return
CompletionContext
::
COMMAND
;
if
(
line
.
starts_with
(
"introspect"
)
&&
start
==
11
)
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect"
)
)
return
CompletionContext
::
COMMAND_INTROSPECT
;
return
CompletionContext
::
COMMAND_INTROSPECT
;
else
if
(
line
.
starts_with
(
"set"
)
&&
start
==
4
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"set"
)
)
return
CompletionContext
::
SET
;
return
CompletionContext
::
SET
;
else
if
(
line
.
starts_with
(
"introspect overloads"
)
&&
start
==
21
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect overloads"
)
)
return
CompletionContext
::
ALGORITHM
;
return
CompletionContext
::
ALGORITHM
;
else
if
(
line
.
starts_with
(
"introspect variables"
)
&&
start
==
21
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect variables"
)
)
return
CompletionContext
::
VARIABLE
;
return
CompletionContext
::
VARIABLE
;
else
if
(
line
.
starts_with
(
"introspect bindings"
)
&&
start
==
20
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect bindings"
)
)
return
CompletionContext
::
BINDING
;
return
CompletionContext
::
BINDING
;
else
if
(
line
.
starts_with
(
"introspect algorithms"
)
&&
start
==
22
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect algorithms"
)
)
return
CompletionContext
::
ALGORITHM_GROUP
;
return
CompletionContext
::
ALGORITHM_GROUP
;
else
if
(
line
.
starts_with
(
"introspect datatypes"
)
&&
start
==
21
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect datatypes"
)
)
return
CompletionContext
::
DATATYPE_GROUP
;
return
CompletionContext
::
DATATYPE_GROUP
;
/*
TODO
/*
TODO
else
if
(
line
.
starts_with
(
"introspect casts"
)
&&
start
==
17
)
else
if
(
masterCommandCompletionTest
(
line
,
start
,
"introspect casts"
)
)
*/
*/
if
(
end
-
start
>
0
&&
text
[
0
]
==
'$'
)
if
(
end
-
start
>
0
&&
text
[
0
]
==
'$'
)
...
@@ -98,7 +102,7 @@ ReadlinePromptCompletion::CompletionContext ReadlinePromptCompletion::context (
...
@@ -98,7 +102,7 @@ ReadlinePromptCompletion::CompletionContext ReadlinePromptCompletion::context (
if
(
p
>=
rl_line_buffer
&&
(
*
p
==
'|'
||
*
p
==
'('
)
)
if
(
p
>=
rl_line_buffer
&&
(
*
p
==
'|'
||
*
p
==
'('
)
)
return
CompletionContext
::
ALGORITHM
;
return
CompletionContext
::
ALGORITHM
;
if
(
line
.
starts_with
(
"execute"
)
&&
start
==
8
)
if
(
masterCommandCompletionTest
(
line
,
start
,
"execute"
)
)
return
CompletionContext
::
ALGORITHM
;
return
CompletionContext
::
ALGORITHM
;
/* undecided, fallback to filepath */
/* undecided, fallback to filepath */
...
...
This diff is collapsed.
Click to expand it.
aql2/src/prompt/ReadlinePromptCompletion.h
+
5
−
4
View file @
fed959a2
...
@@ -25,7 +25,7 @@ class ReadlinePromptCompletion {
...
@@ -25,7 +25,7 @@ class ReadlinePromptCompletion {
static std::set < std::string > fetchAlgorithmsFullyQualifiedName ( const char *text ) {
static std::set < std::string > fetchAlgorithmsFullyQualifiedName ( const char *text ) {
std::set < std::string > fullyQualifiedNames;
std::set < std::string > fullyQualifiedNames;
for ( const
std
::pair < std::string,
std
::vector < std::string > > & algo : abstraction::Registry::listAlgorithms ( ) ) {
for ( const
ext
::pair < std::string,
ext
::vector < std::string > > & algo : abstraction::Registry::listAlgorithms ( ) ) {
fullyQualifiedNames.insert ( algo.first );
fullyQualifiedNames.insert ( algo.first );
}
}
...
@@ -35,7 +35,7 @@ class ReadlinePromptCompletion {
...
@@ -35,7 +35,7 @@ class ReadlinePromptCompletion {
static std::set < std::string > fetchAlgorithmsLastSegmentName ( const char *text ) {
static std::set < std::string > fetchAlgorithmsLastSegmentName ( const char *text ) {
std::map < std::string, unsigned > collisions;
std::map < std::string, unsigned > collisions;
for ( const
std
::pair < std::string,
std
::vector < std::string > > & algo : abstraction::Registry::listAlgorithms ( ) ) {
for ( const
ext
::pair < std::string,
ext
::vector < std::string > > & algo : abstraction::Registry::listAlgorithms ( ) ) {
size_t pos = algo.first.find_last_of ( ':' );
size_t pos = algo.first.find_last_of ( ':' );
if ( pos != std::string::npos )
if ( pos != std::string::npos )
collisions [ algo.first.substr ( pos + 1 ) ] += 1;
collisions [ algo.first.substr ( pos + 1 ) ] += 1;
...
@@ -52,7 +52,7 @@ class ReadlinePromptCompletion {
...
@@ -52,7 +52,7 @@ class ReadlinePromptCompletion {
static std::set < std::string > fetchAlgorithmGroups ( const char *text ) {
static std::set < std::string > fetchAlgorithmGroups ( const char *text ) {
std::set < std::string > res;
std::set < std::string > res;
for ( const
std
::pair < std::string,
std
::vector < std::string > > & algo : abstraction::Registry::listAlgorithms ( ) ) {
for ( const
ext
::pair < std::string,
ext
::vector < std::string > > & algo : abstraction::Registry::listAlgorithms ( ) ) {
std::set < std::string > groups = getGroups ( algo.first );
std::set < std::string > groups = getGroups ( algo.first );
res.insert ( groups.begin ( ), groups.end ( ) );
res.insert ( groups.begin ( ), groups.end ( ) );
}
}
...
@@ -123,9 +123,10 @@ public:
...
@@ -123,9 +123,10 @@ public:
};
};
static char** readline_completion ( const char *text, int start, int end );
static char** readline_completion ( const char *text, int start, int end );
static CompletionContext context ( const char *text,
const
int start,
const
int end );
static CompletionContext context ( const char *text, int start, int end );
private:
private:
static bool masterCommandCompletionTest ( const ext::string & line, int start, const std::string & expectation );
static std::set < std::string > addPrefix ( const std::set < std::string > & collection, const std::string & prefix );
static std::set < std::string > addPrefix ( const std::set < std::string > & collection, const std::string & prefix );
static std::set < std::string > getGroups ( const std::string & qualified_name );
static std::set < std::string > getGroups ( const std::string & qualified_name );
static std::set < std::string > filter_completions ( const std::set < std::string > & choices, const char *text );
static std::set < std::string > filter_completions ( const std::set < std::string > & choices, const char *text );
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment