Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fzf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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 JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
fzf
Commits
8db3345c
Unverified
Commit
8db3345c
authored
7 years ago
by
Junegunn Choi
Browse files
Options
Downloads
Patches
Plain Diff
Optimize exact match by applying the same trick for fuzzy match
parent
69aa2fea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/algo/algo.go
+43
-19
43 additions, 19 deletions
src/algo/algo.go
with
43 additions
and
19 deletions
src/algo/algo.go
+
43
−
19
View file @
8db3345c
...
...
@@ -274,6 +274,41 @@ func trySkip(input *util.Chars, caseSensitive bool, b byte, from int) int {
return
from
+
idx
}
func
isAscii
(
runes
[]
rune
)
bool
{
for
_
,
r
:=
range
runes
{
if
r
>=
utf8
.
RuneSelf
{
return
false
}
}
return
true
}
func
asciiFuzzyIndex
(
input
*
util
.
Chars
,
pattern
[]
rune
,
caseSensitive
bool
)
int
{
// Can't determine
if
!
input
.
IsBytes
()
{
return
0
}
// Not possible
if
!
isAscii
(
pattern
)
{
return
-
1
}
firstIdx
,
idx
:=
0
,
0
for
pidx
:=
0
;
pidx
<
len
(
pattern
);
pidx
++
{
idx
=
trySkip
(
input
,
caseSensitive
,
byte
(
pattern
[
pidx
]),
idx
)
if
idx
<
0
{
return
-
1
}
if
pidx
==
0
&&
idx
>
0
{
// Step back to find the right bonus point
firstIdx
=
idx
-
1
}
idx
++
}
return
firstIdx
}
func
FuzzyMatchV2
(
caseSensitive
bool
,
normalize
bool
,
forward
bool
,
input
util
.
Chars
,
pattern
[]
rune
,
withPos
bool
,
slab
*
util
.
Slab
)
(
Result
,
*
[]
int
)
{
// Assume that pattern is given in lowercase if case-insensitive.
// First check if there's a match and calculate bonus for each position.
...
...
@@ -302,30 +337,15 @@ func FuzzyMatchV2(caseSensitive bool, normalize bool, forward bool, input util.C
offset32
,
T
:=
alloc32
(
offset32
,
slab
,
N
,
false
)
// Phase 1. Optimized search for ASCII string
firstIdx
:=
0
if
input
.
IsBytes
()
{
idx
:=
0
for
pidx
:=
0
;
pidx
<
M
;
pidx
++
{
// Not possible
if
pattern
[
pidx
]
>=
utf8
.
RuneSelf
{
return
Result
{
-
1
,
-
1
,
0
},
nil
}
idx
=
trySkip
(
&
input
,
caseSensitive
,
byte
(
pattern
[
pidx
]),
idx
)
if
idx
<
0
{
return
Result
{
-
1
,
-
1
,
0
},
nil
}
if
pidx
==
0
&&
idx
>
0
{
// Step back to find the right bonus point
firstIdx
=
idx
-
1
}
idx
++
}
idx
:=
asciiFuzzyIndex
(
&
input
,
pattern
,
caseSensitive
)
if
idx
<
0
{
return
Result
{
-
1
,
-
1
,
0
},
nil
}
// Phase 2. Calculate bonus for each point
pidx
,
lastIdx
,
prevClass
:=
0
,
0
,
charNonWord
input
.
CopyRunes
(
T
)
for
idx
:=
firstIdx
;
idx
<
N
;
idx
++
{
for
;
idx
<
N
;
idx
++
{
char
:=
T
[
idx
]
var
class
charClass
if
char
<=
unicode
.
MaxASCII
{
...
...
@@ -657,6 +677,10 @@ func ExactMatchNaive(caseSensitive bool, normalize bool, forward bool, text util
return
Result
{
-
1
,
-
1
,
0
},
nil
}
if
asciiFuzzyIndex
(
&
text
,
pattern
,
caseSensitive
)
<
0
{
return
Result
{
-
1
,
-
1
,
0
},
nil
}
// For simplicity, only look at the bonus at the first character position
pidx
:=
0
bestPos
,
bonus
,
bestBonus
:=
-
1
,
int16
(
0
),
int16
(
-
1
)
...
...
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