remove some dead code
This commit is contained in:
@@ -1,83 +1,5 @@
|
|||||||
structure BuildSearchList =
|
structure BuildSearchList =
|
||||||
struct
|
struct
|
||||||
fun helpNextMatch (idx, hd, tl, absIdx, searchString, matchedChrs) =
|
|
||||||
if idx = String.size hd then
|
|
||||||
case tl of
|
|
||||||
tlhd :: tltl =>
|
|
||||||
helpNextMatch (0, tlhd, tltl, absIdx, searchString, matchedChrs)
|
|
||||||
| [] => NONE
|
|
||||||
else
|
|
||||||
let
|
|
||||||
val hdChr = String.sub (hd, idx)
|
|
||||||
val searchChr = String.sub (searchString, matchedChrs)
|
|
||||||
in
|
|
||||||
if hdChr = searchChr then
|
|
||||||
if matchedChrs + 1 = String.size searchString then
|
|
||||||
let val matchedIdx = absIdx - String.size searchString + 1
|
|
||||||
in SOME matchedIdx
|
|
||||||
end
|
|
||||||
else
|
|
||||||
helpNextMatch
|
|
||||||
(idx + 1, hd, tl, absIdx + 1, searchString, matchedChrs + 1)
|
|
||||||
else
|
|
||||||
helpNextMatch (idx + 1, hd, tl, absIdx + 1, searchString, 0)
|
|
||||||
end
|
|
||||||
|
|
||||||
fun nextMatch (bufferIdx, absIdx, rightStrings, searchString) =
|
|
||||||
case rightStrings of
|
|
||||||
hd :: tl =>
|
|
||||||
let
|
|
||||||
val strIdx = Int.max (0, absIdx - bufferIdx)
|
|
||||||
in
|
|
||||||
if strIdx < String.size hd then
|
|
||||||
helpNextMatch (strIdx, hd, tl, absIdx, searchString, 0)
|
|
||||||
else
|
|
||||||
(case tl of
|
|
||||||
tlhd :: tltl =>
|
|
||||||
let val strIdx = strIdx - String.size hd
|
|
||||||
in helpNextMatch (strIdx, tlhd, tltl, absIdx, searchString, 0)
|
|
||||||
end
|
|
||||||
| [] => NONE)
|
|
||||||
end
|
|
||||||
| [] => NONE
|
|
||||||
|
|
||||||
fun helpFromStart (app, origIdx, absIdx, buffer, searchString, searchList) =
|
|
||||||
let
|
|
||||||
val buffer = LineGap.goToIdx (absIdx, buffer)
|
|
||||||
val {idx = bufferIdx, rightStrings, ...} = buffer
|
|
||||||
in
|
|
||||||
case nextMatch (bufferIdx, absIdx, rightStrings, searchString) of
|
|
||||||
SOME matchedIdx =>
|
|
||||||
(* Edge case: we may be searching for a string like "a"
|
|
||||||
* when the buffer represents "aaa aaa aaa".
|
|
||||||
* In this case, there will be continual matches that are consecutive
|
|
||||||
* and we need to check every char in the buffer which is absIdx + 1.
|
|
||||||
* However, we can skip to matchedIdx + 1 if matchedIdx already exists
|
|
||||||
* in the searchList because we know the string between
|
|
||||||
* [absIdx ... matchedIdx - 1] contains no matches.
|
|
||||||
* This check is important to preserve the set-like semaantics
|
|
||||||
* of the searchList too: SearchList.append does not check for this.
|
|
||||||
* *)
|
|
||||||
if SearchList.exists (matchedIdx, searchList) then
|
|
||||||
helpFromStart
|
|
||||||
(app, origIdx, matchedIdx + 1, buffer, searchString, searchList)
|
|
||||||
else
|
|
||||||
let
|
|
||||||
val searchList = SearchList.append (matchedIdx, searchList)
|
|
||||||
in
|
|
||||||
helpFromStart
|
|
||||||
(app, origIdx, absIdx + 1, buffer, searchString, searchList)
|
|
||||||
end
|
|
||||||
| NONE =>
|
|
||||||
let
|
|
||||||
val buffer = LineGap.goToIdx (origIdx, buffer)
|
|
||||||
val searchList = SearchList.goToNum (origIdx, searchList)
|
|
||||||
in
|
|
||||||
(* todo: probably change return type to (buffer * searchList) *)
|
|
||||||
AppWith.searchList (app, searchList, buffer, searchString)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
fun fromStart (app, cursorIdx, buffer, searchString) =
|
fun fromStart (app, cursorIdx, buffer, searchString) =
|
||||||
if String.size searchString > 0 then
|
if String.size searchString > 0 then
|
||||||
let
|
let
|
||||||
@@ -90,46 +12,6 @@ struct
|
|||||||
else
|
else
|
||||||
app
|
app
|
||||||
|
|
||||||
(* searches for matchedIdx within a range from the buffer instead of from start *)
|
|
||||||
fun helpFromRange
|
|
||||||
(origIdx, curIdx, finishIdx, buffer, searchString, searchList) =
|
|
||||||
let
|
|
||||||
val buffer = LineGap.goToIdx (curIdx, buffer)
|
|
||||||
val {idx = bufferIdx, rightStrings, ...} = buffer
|
|
||||||
in
|
|
||||||
case nextMatch (bufferIdx, curIdx, rightStrings, searchString) of
|
|
||||||
SOME matchedIdx =>
|
|
||||||
if matchedIdx > finishIdx then
|
|
||||||
let
|
|
||||||
val buffer = LineGap.goToIdx (origIdx, buffer)
|
|
||||||
val searchList = SearchList.goToNum (origIdx, searchList)
|
|
||||||
in
|
|
||||||
(buffer, searchList)
|
|
||||||
end
|
|
||||||
else
|
|
||||||
let
|
|
||||||
val searchList =
|
|
||||||
if SearchList.exists (matchedIdx, searchList) then searchList
|
|
||||||
else SearchList.insert (matchedIdx, searchList)
|
|
||||||
in
|
|
||||||
helpFromRange
|
|
||||||
( origIdx
|
|
||||||
, curIdx + 1
|
|
||||||
, finishIdx
|
|
||||||
, buffer
|
|
||||||
, searchString
|
|
||||||
, searchList
|
|
||||||
)
|
|
||||||
end
|
|
||||||
| NONE =>
|
|
||||||
let
|
|
||||||
val buffer = LineGap.goToIdx (origIdx, buffer)
|
|
||||||
val searchList = SearchList.goToNum (origIdx, searchList)
|
|
||||||
in
|
|
||||||
(buffer, searchList)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
fun fromRange (startIdx, length, buffer, searchString, searchList) =
|
fun fromRange (startIdx, length, buffer, searchString, searchList) =
|
||||||
let
|
let
|
||||||
val buffer = LineGap.goToEnd buffer
|
val buffer = LineGap.goToEnd buffer
|
||||||
|
|||||||
@@ -6,10 +6,8 @@ struct
|
|||||||
in
|
in
|
||||||
case acc of
|
case acc of
|
||||||
hd :: tl =>
|
hd :: tl =>
|
||||||
if Vector.length hd < 32 then
|
if Vector.length hd < 32 then (Vector.concat [num, hd]) :: tl
|
||||||
(Vector.concat [num, hd]) :: tl
|
else num :: acc
|
||||||
else
|
|
||||||
num :: acc
|
|
||||||
| [] => num :: acc
|
| [] => num :: acc
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -19,7 +17,8 @@ struct
|
|||||||
else if pos < 0 then
|
else if pos < 0 then
|
||||||
case tl of
|
case tl of
|
||||||
hd :: tl =>
|
hd :: tl =>
|
||||||
searchStep (String.size hd - 1, hd, absIdx, tl, acc, searchPos, searchString)
|
searchStep
|
||||||
|
(String.size hd - 1, hd, absIdx, tl, acc, searchPos, searchString)
|
||||||
| [] => acc
|
| [] => acc
|
||||||
else
|
else
|
||||||
let
|
let
|
||||||
@@ -27,7 +26,8 @@ struct
|
|||||||
val searchChr = String.sub (searchString, searchPos)
|
val searchChr = String.sub (searchString, searchPos)
|
||||||
in
|
in
|
||||||
if bufferChr = searchChr then
|
if bufferChr = searchChr then
|
||||||
searchStep (pos - 1, hd, absIdx - 1, tl, acc, searchPos - 1, searchString)
|
searchStep
|
||||||
|
(pos - 1, hd, absIdx - 1, tl, acc, searchPos - 1, searchString)
|
||||||
else
|
else
|
||||||
acc
|
acc
|
||||||
end
|
end
|
||||||
@@ -40,7 +40,7 @@ struct
|
|||||||
| [] => acc
|
| [] => acc
|
||||||
else
|
else
|
||||||
let
|
let
|
||||||
val acc = searchStep
|
val acc = searchStep
|
||||||
(pos, hd, absIdx, tl, acc, String.size searchString - 1, searchString)
|
(pos, hd, absIdx, tl, acc, String.size searchString - 1, searchString)
|
||||||
in
|
in
|
||||||
loopSearch (pos - 1, hd, absIdx - 1, tl, acc, searchString)
|
loopSearch (pos - 1, hd, absIdx - 1, tl, acc, searchString)
|
||||||
@@ -58,10 +58,34 @@ struct
|
|||||||
in
|
in
|
||||||
case leftStrings of
|
case leftStrings of
|
||||||
hd :: tl =>
|
hd :: tl =>
|
||||||
loopSearch (String.size hd - 1, hd, absIdx - 1, tl, [], searchString)
|
loopSearch
|
||||||
|
(String.size hd - 1, hd, absIdx - 1, tl, [], searchString)
|
||||||
| [] => []
|
| [] => []
|
||||||
end
|
end
|
||||||
in
|
in
|
||||||
{left = [], right = acc}
|
{left = [], right = acc}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
fun build (buffer, searchString) =
|
||||||
|
if String.size searchString > 0 then
|
||||||
|
let
|
||||||
|
val buffer = LineGap.goToEnd buffer
|
||||||
|
val searchList = search (buffer, searchString)
|
||||||
|
in
|
||||||
|
(buffer, searchList)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
(buffer, SearchList.empty)
|
||||||
|
|
||||||
|
fun buildIntoApp (app, buffer, searchString) =
|
||||||
|
if String.size searchString > 0 then
|
||||||
|
let
|
||||||
|
val buffer = LineGap.goToEnd buffer
|
||||||
|
val searchList = search (buffer, searchString)
|
||||||
|
val buffer = LineGap.goToStart buffer
|
||||||
|
in
|
||||||
|
AppWith.searchList (app, searchList, buffer, searchString)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
app
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user