-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathshellCommand.lua
138 lines (123 loc) · 3.58 KB
/
shellCommand.lua
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
require "suproxy.utils.stringUtils"
require "suproxy.utils.pureluapack"
local _M = {}
function _M.new(self)
local o={}
o.cursor=0
o.chars={}
return setmetatable(o, {__index=self})
end
local function rshiftArray(tab,cursor,count)
for i=#tab,cursor,-1 do
tab[i+count]=tab[i]
end
return tab
end
function _M.append(self,str)
local i=1
while i<=#str do
local c=string.byte(str,i)
self.chars=rshiftArray(self.chars,self.cursor,1)
if c>0xF0 then
self.chars[self.cursor+1]=str:sub(i,i+3)
i=i+4
elseif c>0xE0 then
--unicode
self.chars[self.cursor+1]=str:sub(i,i+2)
i=i+3
elseif c>0xC0 then
self.chars[self.cursor+1]=str:sub(i,i+1)
i=i+2
else
self.chars[self.cursor+1]=str:sub(i,i)
i=i+1
end
self.cursor=self.cursor+1
end
end
function _M.removeBefore(self,count,all)
if all then count=self.cursor end
if not count then count=1 end
if self.cursor<1 then return end
if self.cursor-count<0 then count= self.cursor end
for i=1, count, -1 do
table.remove(self.chars,self.cursor)
end
self.cursor=self.cursor-count
end
function _M.clear(self)
self.cursor=0
self.chars={}
end
function _M.removeAfter(self,count,all)
if all then count= #(self.chars)-self.cursor end
if not count then count=1 end
if self.cursor==#(self.chars) then return end
if self.cursor+count>#(self.chars) then count= #(self.chars)-self.cursor end
for i=1,count,1 do
table.remove(self.chars,self.cursor)
end
end
function _M.home(self)
self.cursor=0
end
function _M.toEnd(self)
self.cursor=#(self.chars)
end
function _M.moveCursor(self,step)
if self.cursor+step>#(self.chars) then
self.cursor=#(self.chars) return
elseif self.cursor+step<0 then
self.cursor=0 return
end
self.cursor=self.cursor+step
end
function _M.getLength(self)
return #(self.chars)
end
function _M.get(self,pos)
if pos>#(self.chars) or pos<1 then return nil end
return self.chars[pos]
end
function _M.toString(self)
-- local result=""
-- for k, v in pairs(self.chars) do
-- result=result..v
-- end
-- return result
return table.concat(self.chars)
end
function _M.test()
local str="中华A已经Bあまり哈哈哈1234567"
print(str:hex())
local shellCommand=_M
local command=shellCommand:new()
command:append(str)
assert(command:getLength()==19,command:getLength())
assert(command:get(1)=="中",command:get(1))
assert(command:get(19)=="7",command:get(19))
assert(command.cursor==19,command.cursor)
command:moveCursor(-100)
command:moveCursor(100)
command:moveCursor(-2)
assert(command.cursor==17,command.cursor)
command:removeAfter()
command:removeAfter()
command:removeAfter()
command:removeAfter()
command:removeAfter()
command:removeBefore()
assert(command.cursor==16,command.cursor)
assert(command:toString()=="中华A已经Bあまり哈哈哈1234",command:toString():hex())
command:clear()
command:append("34")
command:moveCursor(-2)
command:append("12")
assert(command:toString()=="1234",command:toString())
command:home()
assert(command.cursor==0,command.cursor)
command:toEnd()
assert(command.cursor==command:getLength(),command.cursor)
print(command:toString())
end
return _M